🐸 Amphib is built on Hiring Agent by HackerRank — and we're making it better.
CLI Usage
Score a resume
python score.py /path/to/resume.pdf
What happens
- PDF is extracted to Markdown (cached in
cache/if dev mode is on). - GitHub data is fetched and cached.
- An evaluation report is printed. Dev mode also appends to
resume_evaluations.csv.
Example output
open_source ████████░░ 8 / 10
self_projects ██████░░░░ 6 / 10
production ██████████ 10 / 10
technical_skills ███████░░░ 7 / 10
bonus +2
deductions -1
─────────────────────────────
total 32 / 40
Dev mode
In config.py:
DEVELOPMENT_MODE = True # enables cache + CSV
Leave it on during iteration. Results accumulate in resume_evaluations.csv.
Caching
cache/resumecache_<name>.json— parsed resumecache/githubcache_<name>.json— GitHub data
Delete cache/ to force a fresh run.