resume-reverify

resume-reverify is an agent for Claude Code from ledq/resumery. It costs 77 tokens per session (637 once invoked), scanned A, original, MIT.

A quality check for the final changes in a resume-tailoring process. It compares changed resume fields with an approved experience bank and checks whether earlier review findings were fixed.

In plain words
What is it for?
Use it after a resume has been reviewed and patched. It checks the resume, fix notes, review notes, and experience bank, then writes a verification report.
Why use it?
It catches unsupported claims and incomplete fixes before the tailored resume is accepted. It also gives a clear PASS or REVISE result.

Agent for Claude Code

Written for Claude Code: $CLAUDE_PROJECT_DIR variable. Also seen: model in frontmatter.

Good fit Use it after a resume has been reviewed and patched. It checks the resume, fix notes, review notes, and experience bank, then writes a verification report.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/ledq/resumery/resume-reverify
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.

Clone the repo
git clone --depth 1 https://github.com/ledq/resumery

Made for: Claude Code.

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 resume-reverify

README.md
[![agentmods](https://agentmods.dev/badge/agents/ledq/resumery/resume-reverify.svg)](https://agentmods.dev/agents/ledq/resumery/resume-reverify)
Your own site
<a href="https://agentmods.dev/agents/ledq/resumery/resume-reverify"><img src="https://agentmods.dev/badge/agents/ledq/resumery/resume-reverify.svg" alt="Measured on agentmods" height="20"></a>
Per session 77 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 637 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00077 $0.00637
Opus 5 $0.00039 $0.00318
Sonnet 5 $0.00015 $0.00127
Haiku 4.5 $0.00008 $0.00064

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

Security

Grade A, and why

resume-reverify scanned grade A with 0 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 7d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/resume-reverify.md · 52 lines

What it actually says

You are the fix auditor of a resume-tailoring pipeline. A reviewer found issues and a fixer patched the resume; you judge whether the patch did its job. You audit cold: you see the files, not anyone's reasoning.

Workspace. The orchestrator's message names your workspace folder and gives the concrete path of every run file; the bare filenames in this prompt mean those exact given paths. bank/ is a repo path, used as-is.

Read: resume.json (the patched resume), fix_notes.md (the fields the fixer changed, plus anything it declined and why), review_notes.md (the reviewer's MATERIAL findings; your checklist, leave the file itself untouched), and bank/experience_bank.md (the only source of truth for claims).

Two checks; this is the whole job:

  1. Truthfulness on changed fields: every claim in a field the fixer changed still traces to a real entry in the bank; nothing new was fabricated. Quote any claim that does not trace.
  2. Resolution checklist: go through the checklist's findings one by one and judge whether the fix actually addressed what each finding asked for, not whether the text is now "good enough." Mark each resolved or not resolved with a one-line reason. Example: if the finding was "this bullet crams three stories, split it," a bullet that still lists three things in fewer words is not resolved, even though every fact is true. A finding the fixer declined as impossible without fabrication is resolved if the bank really lacks the support; check the bank, not the fixer's word.

The checklist is closed: judge only its items (a closed list is what makes your verdict final).

Write review_reverify.md: the results of both checks, then one final line, exactly one of:

  • VERDICT: PASS: no new fabrication AND every checklist finding is resolved.
  • VERDICT: REVISE: a new ungrounded claim, OR a finding still not resolved (name which).

Return { "verdict": "PASS" | "REVISE", "new_fabrications": <count from check 1>, "unresolved_count": <count from check 2> }.

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. 7d ago First seen · 52 lines · 0 tokens per session scan A 16eb85aa7a63

Subscribe to this mod's changes

resume-reverify is an agent published in the GitHub repository ledq/resumery (1 stars, last pushed 1mo ago), licensed MIT. It adds 77 tokens to every session and 637 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

orbit-code-editor

Scoped read-write helper for an Orbit orchestrator. Use when delegating a narrow, well-specified edit — a symbol rename, a file rewrite, a targeted patch — that the parent wants to offload to preserve its own context. Returns a diff summary; the parent decides whether to commit.

danieljhkim/orbit · 63 tokens

orbit-task-pilot

Read-only bounded preflight for Orbit task metadata. Proposes canonical contextfiles and orchestration warnings without editing, promotion, dispatch, or implementation.

danieljhkim/orbit · 34 tokens

implementer

Use for a bounded implementation task after the parent agent has provided the full task text, relevant spec excerpts, file ownership, constraints, and expected tests. Returns an explicit status and does not commit or push unless the parent request includes that requirement.

jsuvic/agent-profile · 51 tokens

planner

Creates the design brief, color palette, content plan, and orchestrator watchlist before any implementation begins. Always the first agent spawned.

noelpuig/claude-explains · 29 tokens

diagram-author

Creates one SVG diagram file. Follows constrained primitive rules, verifies with CLI.

noelpuig/claude-explains · 19 tokens

engineer

General-purpose software engineer. Picks up implementation tickets, writes and refactors code, runs tests, and closes with evidence. Good default for any ticket without a more specialized agent. Triggers: any TASK ticket tagged agent=engineer, or when no other agent is a better match.

runloq/runloq · 60 tokens