cv-match

cv-match is a command for Claude Code from s4nec4ke/hr-agent-ru. It costs 59 tokens per session (1,901 once invoked), scanned A, original, MIT.

A command that matches existing local CVs, or résumés, to job vacancies marked as new in a CSV file. It records the selected résumé link in each vacancy's card and can save suggestions for improving the résumé.

In plain words
What is it for?
Use it to select the best existing résumé for each new vacancy, update its status, add the résumé link to card.md, and save tailored improvement notes when needed.
Why use it?
It removes the repetitive work of comparing every new vacancy with all available résumés and updating application records. It does not decide whether the vacancy suits the candidate.

Command for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to select the best existing résumé for each new vacancy, update its status, add the résumé link to card.md, and save tailored improvement notes when needed.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/s4nec4ke/hr-agent-ru/cv-match
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/s4nec4ke/hr-agent-ru

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 cv-match

README.md
[![agentmods](https://agentmods.dev/badge/commands/s4nec4ke/hr-agent-ru/cv-match/github.svg)](https://agentmods.dev/commands/s4nec4ke/hr-agent-ru/cv-match)
Your own site
<a href="https://agentmods.dev/commands/s4nec4ke/hr-agent-ru/cv-match"><img src="https://agentmods.dev/badge/commands/s4nec4ke/hr-agent-ru/cv-match/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 cv-match

Your own site · 80×15
<a href="https://agentmods.dev/commands/s4nec4ke/hr-agent-ru/cv-match"><img src="https://agentmods.dev/badge/commands/s4nec4ke/hr-agent-ru/cv-match.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,901 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.00059 $0.01901
Opus 5 $0.00030 $0.00950
Sonnet 5 $0.00012 $0.00380
Haiku 4.5 $0.00006 $0.00190

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

Security

Grade A, and why

cv-match 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 10d 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/commands/cv-match.md · 122 lines

How it starts

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

CV Match

Для каждой вакансии со статусом «новая»: подбери лучшее подходящее локальное резюме, обнови статус в CSV, впиши ссылку на резюме в card.md и (если нужно) сохрани заметки по доработке внутри папки вакансии.

НЕ переоценивай, подходит ли вакансия кандидату — это уже сделал /hr-collect. Сосредоточься только на подборе резюме.

Хранилище (напоминание)

  • vacancies/vacancies.csv — маленькая CSV. Безопасно читать целиком.
  • vacancies/items/{id} {short_role} {company}/ — папка вакансии. Тут лежат source.md и card.md. Лукап: glob vacancies/items/{id} * — будет ровно один матч.
  • Ссылка на резюме хранится в card.md поле **Резюме:**, НЕ в CSV.

Step 1: Чтение входных данных

Прочитай параллельно:

  • vacancies\vacancies.csv — отфильтруй строки со Статус = новая
  • profile\cv_links.md — маппинг filename → URL резюме
  • card.md каждой вакансии со статусом новая (лукап: glob vacancies/items/{id} *) — нужна шапка, прежде всего поле Комментарий

cv_links.md — источник списка доступных резюме кандидата. Прочитай из profile каждый CV-файл, перечисленный в нём, и сохрани: filename + полный текст. Набор и названия резюме у каждого пользователя свои — не предполагай конкретный список.

Поля для скоринга: Роль, Компания, язык берутся из CSV; Комментарий — из card.md. Комментарий — это сжатая оценка фита с явным указанием домена и релевантного опыта кандидата; именно он, а не Роль/Компания (часто «Product Manager / Unknown»), определяет выбор резюме-варианта.

НЕ читай source.md для всех вакансий разом — это самый объёмный per-vacancy файл, а Комментарий уже даёт нужную суть. source.md подтягивай точечно только в ветке доработки (Step 4b ниже), где важна конкретика требований.

Step 2: Диспетчеризация — последовательно или параллельно

Подсчитай вакансии со статусом «новая».

Если count ≤ 5: обработай все сам инлайном по правилам Step 3.

Если count > 5: разбей на батчи по ~10, спавни по одному general-purpose Agent на батч (все в одном сообщении, реальная параллель).

Read the full file on GitHub · 122 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. 10d ago First seen · 122 lines · 59 tokens per session scan A c858da3e78ab

Subscribe to this mod's changes

cv-match is a command published in the GitHub repository s4nec4ke/hr-agent-ru (2 stars, last pushed 3mo ago), licensed MIT. It adds 59 tokens to every session and 1,901 once invoked, about $0.0003 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.