Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/applypilot/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,15 +360,15 @@ def doctor() -> None:
if RESUME_PATH.exists():
results.append(("resume.txt", ok_mark, str(RESUME_PATH)))
elif RESUME_PDF_PATH.exists():
results.append(("resume.txt", warn_mark, "Only PDF found plain-text needed for AI stages"))
results.append(("resume.txt", warn_mark, "Only PDF found - plain-text needed for AI stages"))
else:
results.append(("resume.txt", fail_mark, "Run 'applypilot init' to add your resume"))

# Search config
if SEARCH_CONFIG_PATH.exists():
results.append(("searches.yaml", ok_mark, str(SEARCH_CONFIG_PATH)))
else:
results.append(("searches.yaml", warn_mark, "Will use example config run 'applypilot init'"))
results.append(("searches.yaml", warn_mark, "Will use example config - run 'applypilot init'"))

# jobspy (discovery dep installed separately)
try:
Expand Down Expand Up @@ -442,13 +442,13 @@ def doctor() -> None:
# Tier summary
from applypilot.config import get_tier, TIER_LABELS
tier = get_tier()
console.print(f"[bold]Current tier: Tier {tier} {TIER_LABELS[tier]}[/bold]")
console.print(f"[bold]Current tier: Tier {tier} - {TIER_LABELS[tier]}[/bold]")

if tier == 1:
console.print("[dim] Tier 2 unlocks: scoring, tailoring, cover letters (needs LLM API key)[/dim]")
console.print("[dim] Tier 3 unlocks: auto-apply (needs Claude Code CLI + Chrome + Node.js)[/dim]")
console.print("[dim] -> Tier 2 unlocks: scoring, tailoring, cover letters (needs LLM API key)[/dim]")
console.print("[dim] -> Tier 3 unlocks: auto-apply (needs Claude Code CLI + Chrome + Node.js)[/dim]")
elif tier == 2:
console.print("[dim] Tier 3 unlocks: auto-apply (needs Claude Code CLI + Chrome + Node.js)[/dim]")
console.print("[dim] -> Tier 3 unlocks: auto-apply (needs Claude Code CLI + Chrome + Node.js)[/dim]")

console.print()

Expand Down