Agent Skills
For coding agents (Claude Code and compatible tools), Rezmatch.ai ships an Agent Skills pack — drop-in instruction files that teach an agent the correct, safe API workflows instead of letting it improvise.
What’s in the pack
| Skill | Teaches |
|---|---|
rezmatch-api | Routing hub: auth, the response envelope, credit costs, and the hard rules |
resume-parsing | Parsing résumés from text, URLs, and PDF files; handling parse_failed |
jd-parsing | Parsing job postings, including job-board URLs |
candidate-matching | Scoring matches, reading bands and signals, cheap pre-filtering with /score/requirements |
The hub skill encodes the non-negotiables so every agent workflow inherits them: always score on the redacted view, present scores and explanations rather than hire/reject verdicts, and never persist résumé content.
Install
The pack lives in the repo’s skills/ directory. Copy it into your project:
cp -r skills/* .claude/skills/or into ~/.claude/skills/ to enable it across all projects.
Configure
Skills read your key from the environment:
export REZMATCH_API_KEY="rz_live_..."(There’s a .env.example in the pack — copy to .env, never commit it.)
Use
Nothing else to do — the agent discovers the skills automatically. Ask it to “parse this résumé and match it against this JD” and it follows the skill’s workflow: right endpoints, right input forms, credit-aware, with the fairness rules applied.