🐸 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

  1. PDF is extracted to Markdown (cached in cache/ if dev mode is on).
  2. GitHub data is fetched and cached.
  3. 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

Delete cache/ to force a fresh run.