vibe-resume CLAUDE.md

vibe-resume CLAUDE.md is an instructions file for coding agents from easyvibecoding/vibe-resume. It costs 1,750 tokens per session, scanned A, original, MIT.

Repository instructions for vibe-resume, a pure-Python command-line tool that processes resumes through extraction, aggregation, enrichment, rendering, review, and trend stages.

In plain words
What is it for?
Running tests and linting, changing pipeline stages, handling locale selection, and maintaining resume processing or rendering.
Why use it?
They document the supported commands, optional dependencies, and pipeline contracts so work fits the existing tool.

Instructions file

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.

agentmods
npx agentmods add instructions/easyvibecoding/vibe-resume/claude-md
Clone the repo
git clone --depth 1 https://github.com/easyvibecoding/vibe-resume

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 vibe-resume CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/easyvibecoding/vibe-resume/claude-md.svg)](https://agentmods.dev/instructions/easyvibecoding/vibe-resume/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/easyvibecoding/vibe-resume/claude-md"><img src="https://agentmods.dev/badge/instructions/easyvibecoding/vibe-resume/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,750 This file is loaded in full into every session.
When invoked 1,750 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01750 $0.01750
Opus 5 $0.00875 $0.00875
Sonnet 5 $0.00350 $0.00350
Haiku 4.5 $0.00175 $0.00175

Measured 4d ago against content hash 4c2f37691f19, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

vibe-resume CLAUDE.md 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 4d 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.md · 143 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Development commands

uv venv && uv pip install -e ".[dev]"   # one-time setup (installs `vibe-resume` entry point)

uv run vibe-resume <subcommand>         # canonical invocation (post-install)
uv run python -m vibe_resume <subcommand>  # equivalent module invocation

uv run pytest tests/                    # full suite (currently 50 tests)
uv run pytest tests/test_review.py      # single file
uv run pytest tests/test_extractors.py::test_cursor_happy_path   # single test

uv run ruff check .                     # lint
uv run ruff check --fix .               # autofix import order, trivial issues

No separate build step — the project is a pure-Python CLI. pandoc is an optional system dep (PDF rendering only); claude -p is an optional binary (enricher LLM path; falls back to rule-based summaries when absent).

Pipeline architecture

The CLI orchestrates a six-stage pipeline. Each stage writes to data/cache/ or data/resume_history/ so later stages can re-run independently:

extract → aggregate → enrich → render → review → trend
  • extract (src/vibe_resume/core/runner.py::run_extractors) — drives all extractors via ThreadPoolExecutor(max_workers=4) with a rich.progress display. Each extractor returns list[Activity] (schema in src/vibe_resume/core/schema.py) which is serialized to data/cache/<name>.json. Failure of one extractor is isolated and does not abort the batch. git_repos has a 120s wall-clock deadline inside _find_repos to survive FUSE/broken-symlink stalls.

  • aggregate (src/vibe_resume/core/aggregator.py) — groups activities by project and writes data/cache/_project_groups.json + _window_stats.json. Project names are abstracted when config.privacy.abstract_tech: true.

  • enrich (src/vibe_resume/core/enricher.py) — feeds each group through a locale-shaped LLM prompt (XYZ verbs for en_*, noun-phrase for zh_*/ja_JP/ko_KR/ de_DE/fr_FR). --tailor <JD.txt> injects extracted keywords so achievements bias toward the JD when the raw activity supports it (never inventing matches). Output: per-group bullets, role_label, summary written back into _project_groups.json.

Read the full file on GitHub · 143 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. 4d ago First seen · 143 lines · 1,750 tokens per session scan A 4c2f37691f19

Subscribe to this mod's changes

vibe-resume CLAUDE.md is an instructions file published in the GitHub repository easyvibecoding/vibe-resume (4 stars, last pushed 3mo ago), licensed MIT. It adds 1,750 tokens to every session, about $0.0088 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.