Troubleshooting #
Common issues and fixes.
raven: command not found
#
# From repo root
./raven --help
# Or install globally
npm link
raven --help
If npm link resolves to the wrong path, use ./raven from the repo root.
raven draft — no input file
#
Discover auto-saves to data/jobs.json. Run discover first:
raven discover --q "engineer"
raven draft --max 25
Or pass explicit input:
raven draft --input data/jobs.json
Unrelated jobs (nurse, sales, etc.) #
Bare raven discover reads config/portals.yml. Fix filters:
title_filter:
positive:
- "software engineer"
- "developer"
negative:
- "nurse"
- "clinical"
Or override on CLI:
raven discover --q "software engineer" --not "nurse"
Zero tailored bullets #
- Check resume has
## Experiencewith-bullets - Run
raven draft --refresh-resume - See Resume parsing
sync-jobs HTTP 401
#
Add HuggingFace token to .env:
HF_TOKEN=hf_xxxxxxxx
Gmail send fails #
- Run
raven auth-gmailagain - Verify
GOOGLE_CLIENT_ID,GOOGLE_CLIENT_SECRET,GMAIL_REFRESH_TOKENin.env - Check OAuth app has Gmail send scope
Gemini draft errors #
- Verify
GEMINI_API_KEYin.env - Check API quota at Google AI Studio
- Try without
--geminito confirm base drafting works
Empty contact_email in CSV
#
Normal for board listings. Fill manually or use --guess-email (verify before send).
Slow discover #
# Fast: boards only
raven discover --sources boards --q "engineer"
# Narrow ATS platforms
raven discover --sources ats --ats greenhouse,lever --max 50
Logs for debugging #
raven discover --verbose
ls -lt data/logs/
tail -50 data/logs/discover-*.log
Still stuck? #
- Run
./raven <command> --help - Check
data/logs/for the failing command - Open an issue with command, flags, and log excerpt (redact personal info)