Skip to Content
Agent Skills

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

SkillTeaches
rezmatch-apiRouting hub: auth, the response envelope, credit costs, and the hard rules
resume-parsingParsing résumés from text, URLs, and PDF files; handling parse_failed
jd-parsingParsing job postings, including job-board URLs
candidate-matchingScoring matches, reading bands and signals, cheap pre-filtering with /score/requirements

The hub skill encodes the non-negotiables so every agent workflow inherits them: present scores and explanations rather than hire/reject verdicts, rely on the API’s evidence-grounded matching (parity-tested for fairness), and never persist résumé content.

Install

Download the pack and drop it into your project’s skills directory:

curl -sL https://docs.rezmatch.ai/rezmatch-skills.zip -o rezmatch-skills.zip unzip rezmatch-skills.zip -d .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.

Last updated on