batch-resume

batch-resume is a skill for Claude Code from jananthan30/Resume-Builder. It costs 72 tokens per session (5,143 once invoked), scanned B, original, MIT.

A batch workflow that turns several job-description text files into separate tailored application packages. Each job receives its own fit check before resume and cover-letter work begins.

In plain words
What is it for?
Use it for bulk resume work when job descriptions are stored as text files in the batch_jds folder.
Why use it?
It saves time when applying to many jobs while keeping each application tied to the correct job description and main resume. It also organizes document creation and tracker updates in order.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the Resume-Builder plugin — 9 skills, 9 commands, 4 agents, 1 hook, 1 MCP server shipped together

Good fit Use it for bulk resume work when job descriptions are stored as text files in the batch_jds folder.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jananthan30/resume-builder/batch-resume
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.

Any agent
npx skills add jananthan30/Resume-Builder --skill batch-resume
Clone the repo
git clone --depth 1 https://github.com/jananthan30/Resume-Builder

Made for: Claude Code.

Or install Resume-Builder, the plugin that ships this one along with the rest of its 9 skills, 9 commands, 4 agents, 1 hook, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for batch-resume

README.md
[![agentmods](https://agentmods.dev/badge/skills/jananthan30/resume-builder/batch-resume/github.svg)](https://agentmods.dev/skills/jananthan30/resume-builder/batch-resume)
Your own site
<a href="https://agentmods.dev/skills/jananthan30/resume-builder/batch-resume"><img src="https://agentmods.dev/badge/skills/jananthan30/resume-builder/batch-resume/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for batch-resume

Your own site · 80×15
<a href="https://agentmods.dev/skills/jananthan30/resume-builder/batch-resume"><img src="https://agentmods.dev/badge/skills/jananthan30/resume-builder/batch-resume.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,143 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 88
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium Agent Snooping · line 238
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium Data Exfiltration · line 276
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.1 $0.00072 $0.05143
Opus 5 $0.00036 $0.02572
Sonnet 5 $0.00014 $0.01029
Haiku 4.5 $0.00007 $0.00514

Measured 9d ago against content hash 31f9821298ad, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade B, and why

batch-resume scanned grade B 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 9d ago.

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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

curl -s -X POST http://localhost:8100/score/both -H "Content-Type: application/json" -d "{\"resume_path\": \"applications/{Company} - {Job Title}/resume.md\", \"jd_path\": \"applications/{Company} - {Job Title}/job_descr

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
skills/batch-resume/SKILL.md · 479 lines

How it starts

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

Batch Resume Builder — Native Resume Teams

Process multiple job descriptions with concurrent read/scoring work. Each resume is produced by the native four-role team; final DOCX and tracker mutations remain ordered and coordinator-owned.

Arguments

The user may pass options when invoking this skill; the job descriptions themselves are read from .txt files in the batch_jds/ folder.

Instructions

You are the team lead for a batch resume processing operation. Execute the following steps:


STEP 1: DISCOVER JDs (READ-ONLY)

Scan the batch_jds/ folder for .txt files:

Use file search (`rg --files batch_jds` or `find`) for `batch_jds/*.txt`

Each file should be named: {Company} - {Job Title}.txt

Parse the filename to extract:

  • Company: Everything before -
  • Job Title: Everything after - (without .txt)

If no files found, tell the user to add JD text files to batch_jds/ and explain the naming format.

Display a numbered list of all JDs found and confirm with the user before proceeding.


STEP 2: CANDIDATE-FIT PREFLIGHT (MANDATORY FIRST GATE PER JD)

Resolve and read master_resume_path from config.json once. It is the sole base and factual source for every job; never inspect, screen, or substitute an existing tailored application resume. For each exact JD, independently generate a safe run_id, safe case_id, and strict ISO as_of_date, then run the deterministic machine preflight before starting a scorer, role/native team, output directory, resume draft, DOCX, or tracker operation for that JD:

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

Require exit 0 and a valid candidate-fit-policy-v3 report bound to that JD, master, date, and IDs. Canonically hash it as candidate_fit_report_digest. A passing report has exact threshold 70.0, score at least 70, trustworthy extraction, zero hard knockouts, passed: true, and no codes. Exit 1, any score below 70 (including 60–69), or any hard knockout is REJECTED:CANDIDATE_FIT. Create nothing for that JD, record the rejection in the in-memory/private batch report, and continue screening the remaining JDs. Exit 2 or an unavailable, malformed, stale, non-canonical, or digest-mismatched report is FAILED:CANDIDATE_FIT_PREFLIGHT; fail that JD closed, create nothing, and continue the remaining independent JDs. There is no automatic or manual workflow bypass. ATS/HR scores are advisory and cannot override this gate.

Read the full file on GitHub · 479 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. 9d ago First seen · 479 lines · 72 tokens per session scan B 31f9821298ad

Subscribe to this mod's changes

batch-resume is a skill published in the GitHub repository jananthan30/Resume-Builder (83 stars, last pushed 24d ago), licensed MIT. It adds 72 tokens to every session and 5,143 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

freehire-tailor-cv

Use when reframing someone's CV toward a specific vacancy through freehire — reading the fit analysis for a tailored copy, fetching or editing the CV document by path, rendering the ATS PDF, or deciding what may and may not be written into a CV. Carries the evidence rule: anything stating what the candidate DID needs…

strelov1/freehire-cli · 0 tokens

extract-resume

Parse a resume's uploaded PDF into structured JSON (basics, experience, projects, skills, education) and save it to the editor.

suxrobGM/jobpilot · 32 tokens

review-resume

Review a freshly uploaded resume and save a stronger rewritten version as a suggestion the user accepts or discards in the dashboard.

suxrobGM/jobpilot · 28 tokens

freehire-job-search

Use when finding IT jobs for someone — searching or filtering the freehire catalogue by keyword, region, seniority, skills, salary or company; reading a posting or a company's open roles; discovering what values a filter accepts; reading the saved job-search profile before asking someone what they want; handing over a…

strelov1/freehire-cli · 110 tokens

freehire-mail-triage

Use when sorting a job seeker's application mail into the freehire tracker from their own mail client (himalaya, mbsync, notmuch, the Gmail API, any IMAP) — pushing a fetched batch, judging what each message is, linking it to an application, advancing a stage from a reply, or draining the two queues the matcher fills…

strelov1/freehire-cli · 96 tokens

freehire-track-applications

Use when recording or reviewing what someone applied to on freehire — marking a job applied, bookmarking one for later, moving an application through its stages (applied through offer, or rejected/withdrawn), attaching a note, or listing what they are tracking. Also covers reporting a posting that never answered them…

strelov1/freehire-cli · 81 tokens