parse-cv

parse-cv is a skill for Claude Code from leopu00/job-hunter-team. It costs 136 tokens per session (1,719 once invoked), scanned A, original, MIT.

A document pre-processing step that turns CV files such as PDF, DOCX, ODT, RTF, and TXT into plain text before analysis. A CV is a person's résumé, listing their experience, skills, and roles.

In plain words
What is it for?
Use it on newly uploaded CV files to extract a candidate's name, role, skills, and experience for a structured profile.
Why use it?
It gives the language model less data to read and can make extracting profile details more reliable, especially from long documents. It does not process image files directly.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument.

Good fit Use it on newly uploaded CV files to extract a candidate's name, role, skills, and experience for a structured profile.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/leopu00/job-hunter-team/parse-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 leopu00/job-hunter-team --skill parse-cv
Clone the repo
git clone --depth 1 https://github.com/leopu00/job-hunter-team

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/leopu00/job-hunter-team/parse-cv/github.svg)](https://agentmods.dev/skills/leopu00/job-hunter-team/parse-cv)
Your own site
<a href="https://agentmods.dev/skills/leopu00/job-hunter-team/parse-cv"><img src="https://agentmods.dev/badge/skills/leopu00/job-hunter-team/parse-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 parse-cv

Your own site · 80×15
<a href="https://agentmods.dev/skills/leopu00/job-hunter-team/parse-cv"><img src="https://agentmods.dev/badge/skills/leopu00/job-hunter-team/parse-cv.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 136 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,719 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00136 $0.01719
Opus 5 $0.00068 $0.00860
Sonnet 5 $0.00027 $0.00344
Haiku 4.5 $0.00014 $0.00172

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

Security

Grade A, and why

parse-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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (extract.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

agents/_skills/parse-cv/SKILL.md · 140 lines

How it starts

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

parse-cv — text extraction da file caricato dall'utente

L'utente carica il suo CV via Telegram (o web drop-zone). L'Assistente deve estrarre i dati strutturati (nome, ruolo, skill, esperienze) per popolare $JHT_HOME/profile/candidate_profile.yml.

Senza pre-process: il LLM riceve il PDF binario via Read tool e fa il parsing direttamente. Funziona ma:

  • Costa tanti token (un CV 2 pagine ≈ 3-5k token solo per il file)
  • Risultati variabili su PDF scansionati / formati non-standard
  • Errore silenzioso su .pages/.numbers (formati Apple non leggibili)

Con pre-process (questa skill): pdftotext/pandoc estraggono il testo plain in 50-200ms, il LLM riceve solo il testo (500-2000 token). Cinque-dieci volte meno token, parsing più affidabile.

Quando lanciarla

L'Assistente chiama parse-cv:

  1. Su ogni nuovo file in $JHT_HOME/profile/sources/ con estensione .pdf .docx .doc .odt .rtf .txt
  2. NON sulle immagini (.jpg .jpeg .png .heic .webp) — quelle le legge direttamente via vision multimodal del LLM
  3. NON su file >5 MB (probabilmente non sono CV — l'Assistente chiede chiarimento)

Strumenti disponibili nel container

Già installati (verifica con command -v):

  • pdftotext (via poppler-utils) — PDF → text
  • pandoc — docx/odt/rtf/html → text/markdown
  • file — detect MIME type
  • NON disponibile: tesseract (OCR), unrtf — per scansioni a bassa qualità il LLM cade su vision multimodal o chiede retry all'utente

Procedura

SRC="$1"   # path al file in profile/sources/
[ -f "$SRC" ] || { echo "ERROR: file non trovato: $SRC"; exit 2; }

# 1. Detect MIME
MIME="$(file -b --mime-type "$SRC")"

# 2. Size check (5 MB limit)
SIZE=$(stat -c%s "$SRC" 2>/dev/null || stat -f%z "$SRC")
if [ "$SIZE" -gt 5242880 ]; then
  echo "ERROR: file >5MB ($SIZE bytes), skip parse"
  exit 3
fi

# 3. Estrazione per formato
case "$MIME" in
  application/pdf)
    # PDF: prova pdftotext (preserve layout per CV tabellari)
    OUT="$(pdftotext -layout -nopgbrk "$SRC" - 2>/dev/null)"
    if [ -z "$OUT" ] || [ "${#OUT}" -lt 50 ]; then
      # Probabile PDF scansione (immagini, no text layer)
      echo "ERROR: PDF text layer vuoto (probabile scansione). Usa vision multimodal o chiedi retry all'utente."
      exit 4
    fi
    ;;
  application/vnd.openxmlformats-officedocument.wordprocessingml.document|\
  application/msword|\
  application/vnd.oasis.opendocument.text|\
  application/rtf|\
  text/rtf)
    # Word/ODT/RTF: pandoc → plain text
    OUT="$(pandoc -f auto -t plain --wrap=none "$SRC" 2>/dev/null)"
    if [ -z "$OUT" ]; then
      echo "ERROR: pandoc non riesce a estrarre testo da $SRC ($MIME)"
      exit 5
    fi
    ;;
  text/plain|text/markdown)
    OUT="$(cat "$SRC")"
    ;;
  *)
    echo "ERROR: MIME type non supportato: $MIME"
    echo "       Formati supportati: pdf, docx, doc, odt, rtf, txt, md"
    echo "       Per immagini usa vision multimodal direttamente."
    exit 6
    ;;
esac

# 4. Print estratto
echo "$OUT"

Read the full file on GitHub · 140 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 140 lines · 136 tokens per session scan A f36bb8d60819

Subscribe to this mod's changes

parse-cv is a skill published in the GitHub repository leopu00/job-hunter-team (49 stars, last pushed yesterday), licensed MIT. It adds 136 tokens to every session and 1,719 once invoked, about $0.0007 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-30.

Related

Other skills, from other repositories

recipe-bulk-download-folder

List and download all files from a Google Drive folder.

googleworkspace/cli · 17 tokens

markitdown

Convert files and office documents to Markdown. Supports PDF, DOCX, PPTX, XLSX, images (with OCR), audio (with transcription), HTML, CSV, JSON, XML, ZIP, YouTube URLs, EPubs and more.

synthetic-sciences/openscience · 53 tokens

cli-anything-wps

A command-line tool that controls WPS Office on Windows, including Writer, Calc, and Impress. It can also build presentations from structured JSON data and export them as PowerPoint and PDF files.

yb2460/harness-anything · 37 tokens

llm-document-extraction

Extract structured data from construction documents using LLMs. Process RFIs, submittals, contracts, specifications. Convert unstructured PDFs to structured JSON/Excel.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 39 tokens

docutranslate

Use when translating documents locally via LLM — PDF, Word, Excel, Markdown, SRT subtitles with format preservation. DocuTranslate: LLM-powered multi-format local file translation tool with MCP server support.

znlgis/opengis-skills · 47 tokens

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