freehire-tailor-cv

freehire-tailor-cv is a skill for Claude Code from strelov1/freehire-cli. It costs 0 tokens per session (1,143 once invoked), scanned A, original, MIT.

A workflow for making a copy of a CV tailored to one vacancy in freehire, an application-tracking service. It uses the vacancy's fit analysis, lets you edit the copy, and can render it as an ATS PDF; ATS means software that screens CVs before a person reads them.

In plain words
What is it for?
Creating or reopening a tailored CV, reviewing the fit analysis, reading or editing the document, and rendering a PDF for inspection.
Why use it?
It keeps a vacancy-specific CV separate from the candidate's original while preserving an evidence rule for claims about past work. Reopening the same vacancy returns the existing tailored copy instead of creating another one.

Skill for Claude Code

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

Part of the freehire plugin — 6 skills, 5 commands shipped together

Good fit Creating or reopening a tailored CV, reviewing the fit analysis, reading or editing the document, and rendering a PDF for inspection.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/strelov1/freehire-cli/freehire-tailor-cv
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 strelov1/freehire-cli --skill freehire-tailor-cv
Clone the repo
git clone --depth 1 https://github.com/strelov1/freehire-cli

Made for: Claude Code.

Or install freehire, the plugin that ships this one along with the rest of its 6 skills, 5 commands.

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 freehire-tailor-cv

README.md
[![agentmods](https://agentmods.dev/badge/skills/strelov1/freehire-cli/freehire-tailor-cv/github.svg)](https://agentmods.dev/skills/strelov1/freehire-cli/freehire-tailor-cv)
Your own site
<a href="https://agentmods.dev/skills/strelov1/freehire-cli/freehire-tailor-cv"><img src="https://agentmods.dev/badge/skills/strelov1/freehire-cli/freehire-tailor-cv/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 freehire-tailor-cv

Your own site · 80×15
<a href="https://agentmods.dev/skills/strelov1/freehire-cli/freehire-tailor-cv"><img src="https://agentmods.dev/badge/skills/strelov1/freehire-cli/freehire-tailor-cv.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,143 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.00000 $0.01143
Opus 5 $0.00000 $0.00571
Sonnet 5 $0.00000 $0.00229
Haiku 4.5 $0.00000 $0.00114

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

Security

Grade A, and why

freehire-tailor-cv 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 11d 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.

skills/freehire-tailor-cv/SKILL.md · 80 lines

How it starts

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

Tailoring a CV to a vacancy (beta)

Needs a key: freehire auth login --token fhk_… (or FREEHIRE_TOKEN). These commands act as the user whose key you signed in with, the same as every other command.

A tailored CV is a copy of the candidate's base CV bound to one vacancy. Start one — or reopen the one that exists — with the vacancy's slug, and the whole cycle runs from here:

freehire cv tailor <job-slug>         # create/reopen the copy; prints the CV id
freehire cv list                      # the tailored CVs that already exist
freehire cv context <id>              # the fit analysis to reframe toward (JSON)
freehire cv get <id>                  # the current CV document (JSON)
freehire cv edit <id> --set 'path=value'  # one edit; --ops '<json>' or stdin for several
freehire cv render <id> --out cv.pdf  # download the ATS PDF to inspect

cv tailor is idempotent per vacancy: running it twice for the same slug returns the same copy, so it is safe to start with when you do not know whether one exists. It spends an AI credit the first time it creates the copy (402 when the balance will not cover it) and 409s when the candidate has no résumé on the site to seed a base CV from — tell them to upload one; you cannot do it for them.

The id is opaque: read it from cv tailor or cv list, do not construct or guess one. An id that is not the caller's own comes back as "not found" — the same answer as one that never existed. The workspace URL on the site (/tailor/<job>?cv=<id>) carries the same id if the candidate would rather paste it.

Editing by path

An edit is a kind (set, insert, remove, move) and a path into the document. Paths reach everything: summary, experience[2].bullets[1], experience[0].stack[0], skills[0].items[3], education[1].degree, certifications[0].issuer, style.font_size. Indices are 0-based, counted over what cv get returned.

freehire cv edit <id> --set 'summary=Senior backend engineer…'
freehire cv edit <id> --set 'experience[0].bullets[1]=Cut p99 latency 40%' --evidence <atom-id>
freehire cv edit <id> --insert 'experience[0].bullets[0]=Ran the migration' --evidence <atom-id>
freehire cv edit <id> --remove 'skills[2]'
freehire cv edit <id> --ops '[{"kind":"move","path":"experience[0].bullets[2]","to":0}]'

Read the full file on GitHub · 80 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. 11d ago First seen · 80 lines · 0 tokens per session scan A 42846d80fee8

Subscribe to this mod's changes

freehire-tailor-cv is a skill published in the GitHub repository strelov1/freehire-cli (5 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,143 tokens. 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 skills, from other repositories

critic-loop

Run the mandatory 3-round CV review loop with the Critico — autonomously, without going through the Capitano. For each round you spawn a FRESH CRITICO-S session (same N as your Scrittore session: SCRITTORE-2 → CRITICO-S2), send PDF + JD, wait for the structured verdict, kill the Critic, correct the CV, regenerate the…

leopu00/job-hunter-team · 146 tokens

parse-cv

Pre-process a CV/profile file (PDF, DOCX, ODT, RTF) into plain text BEFORE feeding it to the LLM context. Reduces token cost by 5-10x on long CVs and yields more reliable extraction than reading binary PDFs directly via multimodal vision. The Assistente calls this skill on every uploaded document in…

leopu00/job-hunter-team · 136 tokens

resume

Generate a tailored resume AND cover letter for a job description via the native four-role Resume Team, score both against ATS and HR rubrics, create DOCX files, and update the tracker. Use when the user pastes a job description and wants a complete application package (resume plus cover letter) with dual scoring and…

jananthan30/Resume-Builder · 72 tokens

cover-letter

Create a compelling one-page, human-voice cover letter for a job description and generate the final DOCX. Use when the user wants a cover letter only (no resume), pastes a JD and asks for a letter, or needs a letter to accompany an already-tailored resume. Runs the mandatory humanvoiceaudit before producing the DOCX.

jananthan30/Resume-Builder · 73 tokens

tailor-resume

Tailor a resume to a job description via the native four-role Resume Team, evidence-match it against the job's requirements, create a DOCX, and update the tracker. Use when the user pastes a job description and wants a tailored resume only (no cover letter), targeting an evidence match that covers every must-have with…

jananthan30/Resume-Builder · 81 tokens

batch-resume

Process multiple job descriptions from the batchjds folder into tailored application packages, each produced by the native Resume Team, with independent candidate-fit gates and ordered DOCX and tracker writes. Use when the user has several JDs to run at once, drops files in batchjds, or asks for batch or bulk resume…

jananthan30/Resume-Builder · 72 tokens