resume

A command that creates a job-tailored resume and cover letter, scores both, produces DOCX files, and updates a tracker.

In plain words
What is it for?
Use it when applying for a job and you need customized resume and cover-letter files, scoring, and tracker updates.
Why use it?
It turns a job description and the configured master resume into application documents while checking their fit before producing them.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/jananthan30/resume-builder/resume
Clone the repo
git clone --depth 1 https://github.com/jananthan30/Resume-Builder

Made for: Claude Code.

Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 10,148 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00025 $0.10148
Opus 5 $0.00013 $0.05074
Sonnet 5 $0.00005 $0.02030
Haiku 4.5 $0.00003 $0.01015

Measured yesterday against content hash 5b0938b53325, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

resume scanned grade A with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s http://localhost:8100/health

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

result = subprocess.run(
.claude/commands/resume.md · 842 lines

How it starts

The opening of the file, as written. The whole thing — 842 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Resume Builder — Native Four-Role Team + Triple Scoring

Generate a tailored resume AND cover letter using Codex parallel tool execution with scoring-aware optimization. Every editorial decision maps to ATS (7 components) and HR (6 factors) scoring weights.

Job Description

$ARGUMENTS

CANDIDATE-FIT PREFLIGHT (MANDATORY FIRST GATE)

Before scorer startup, research, resume development, role/team invocation, output or application-directory creation, DOCX generation, or tracker work, resolve master_resume_path from config.json and save this exact job description to a private temporary UTF-8 file. Screen only that configured master resume—never a previously tailored resume. Generate one safe run_id, one safe case_id, and one strict ISO as_of_date, then run:

python candidate_fit_preflight.py --resume <configured-master-resume> --job-description <private-exact-JD.txt> --run-id <run_id> --case-id <case_id> --as-of-date <YYYY-MM-DD> --json

Require exit 0 plus a valid candidate-fit-policy-v3 report bound to the same IDs, date, master SHA-256, and exact-JD SHA-256. Canonically hash it as candidate_fit_report_digest. Proceed only when threshold is exactly 70.0, score >= 70, extraction_trustworthy is true, hard_knockouts is empty, passed is true, and codes is empty. Exit 1, a score below 70 (including 60–69), or any hard knockout is REJECTED:CANDIDATE_FIT; stop with no team/role invocation and no application directory, draft, DOCX, or tracker mutation. Exit 2 or an unavailable, malformed, stale, non-canonical, or digest-mismatched report is FAILED:CANDIDATE_FIT_PREFLIGHT and fails closed. There is no automatic or manual workflow bypass. ATS/HR baselines remain advisory and cannot override candidate fit.

Instructions

You are the coordinator, not the resume author. The user has provided a job description above. You will:

  1. Pass the fixed candidate-fit gate against the configured master resume
  2. Internalize both advisory scoring engines before writing a single word
  3. Deconstruct the JD into a scoring blueprint
  4. Delegate drafting to the native resume-writer with least-authority context
  5. Diagnose gaps by component weight, not guesswork
  6. Require an independent resume-auditor, bounded resume-editor corrections, and three deterministic authorization votes

Read the full file on GitHub · 842 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 842 lines · 25 tokens per session scan A 5b0938b53325

Subscribe to this mod's changes

resume is a command published in the GitHub repository jananthan30/Resume-Builder (76 stars, last pushed 17d ago), licensed MIT. It adds 25 tokens to every session and 10,148 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other commands, from other repositories

apply

You are orchestrating a two-agent job application workflow. The job posting is provided below as $ARGUMENTS (either a URL or pasted text).

MadsLorentzen/ai-job-search · 0 tokens

setup

You are running the onboarding setup for the AI Job Search framework. Your goal is to collect the user's professional information and populate all profile files so the /apply workflow works out of the box.

MadsLorentzen/ai-job-search · 0 tokens

outcome

You are recording what happened to a job application: progress updates (interview invitations, stages completed, offers) and final resolutions (hired, rejected, no response). The data lands in two places the framework already reads but nothing systematically writes.

MadsLorentzen/ai-job-search · 0 tokens

add-portal

You are helping the user build a job-portal search skill for a job board in their market. The repo ships worked examples of the pattern (four Danish portals plus the country-agnostic linkedin-search and freehire-search), and the README invites users elsewhere to build equivalents — this command turns that invitation…

MadsLorentzen/ai-job-search · 0 tokens

add-template

You are helping the user register their own CV or cover letter template with the AI Job Search framework — LaTeX, Typst, or any other toolchain that compiles to PDF from the command line. The framework ships with moderncv (banking style) for CVs and a custom cover.cls for cover letters. This command lets the user swap…

MadsLorentzen/ai-job-search · 0 tokens

gmail-sync

You are scanning the user's Gmail for status signals on tracked job applications (interview invites, assessment links, offers, rejections) and, once approved, writing the detected changes into jobsearchtracker.csv and documents/applications/ /outcome.md - the same two places /outcome writes to, in the same schema.

MadsLorentzen/ai-job-search · 0 tokens