agent-cv
v0.1.2
Published
Generate technical CVs from your local project directories using AI
Maintainers
Readme
agent-cv
Generate a technical CV from your local project directories using AI.
Your real project history lives on your filesystem, not on GitHub. Pet projects that never got pushed, corporate work behind VPNs, weekend experiments in obscure frameworks. agent-cv scans your directories, delegates analysis to AI, and generates a structured CV that captures work you'd otherwise forget.
Quick start
# Install
bun install -g agent-cv
# Scan your projects
agent-cv scan ~/Projects
# Generate a CV (interactive: pick emails, pick projects)
agent-cv generate ~/Projects --output cv.md
# Publish your portfolio to the web
agent-cv publish
# → Your portfolio is live at https://agent-cv.dev/yourusername
# See your tech evolution
agent-cv stats
# What changed since last scan
agent-cv diff ~/ProjectsHow it works
agent-cv generate ~/Projects
│
├── Scan: walks directories, detects projects by markers
│ (package.json, Cargo.toml, go.mod, pyproject.toml, ...)
│
├── Email picker: shows all git emails found, you confirm yours
│ (saved for next time, supports multiple identities)
│
├── Project selector: grouped by folder, searchable
│ ★ = your commits, 💎 = forgotten gem, gray = not yours
│
├── Analyze: each project sent to AI for description
│ (Claude Code, Codex, OpenRouter, or any OpenAI-compatible API)
│
└── Render: structured markdown CV grouped by yearFeatures
Discovery
- Detects 15+ project types (Node, Rust, Go, Python, Ruby, Java, Swift, Elixir, PHP, Docker...)
- Skips noise directories (node_modules, .git, dist, build, vendor, pycache)
- Nested project dedup (monorepo with sub-packages counted once)
- Parallel git operations (10 repos at a time)
Identity
- Multiple git email support (work, personal, old addresses)
- Auto-discovers emails from git config (global + per-repo)
- Interactive email picker with search on every run
--emailflag for generating someone else's CV
Project selection
- Grouped by directory with group-level toggle
- Instant search (just start typing)
- Pre-selects your projects, grays out forks/clones
- Detects uncommitted changes as sign of your work
- Forgotten gems: flags old projects with real work you probably forgot
Analysis
- Auto-detects available AI: Claude Code → Codex → API
- Claude Code gets full file access (richer analysis)
- API mode: OpenRouter, Anthropic, OpenAI, Ollama (any OpenAI-compatible endpoint)
- Privacy audit: .env files and hardcoded secrets excluded before AI sees anything
--dry-runto preview what would be sent
Output
- Markdown CV grouped by year
- Duplicate project names disambiguated with parent path
- Persistent JSON inventory at
~/.agent-cv/inventory.json - Cached analysis survives between runs
Commands
| Command | Description |
|---------|-------------|
| agent-cv scan <dir> | Discover projects, save to inventory |
| agent-cv analyze <path> | Analyze a single project with AI |
| agent-cv generate <dir> | Full flow: scan → pick emails → pick projects → analyze → CV |
| agent-cv diff <dir> | Show new/updated/removed projects since last scan |
| agent-cv stats | Tech evolution timeline, language breakdown, framework ranking |
| agent-cv publish | Publish your portfolio to agent-cv.dev |
| agent-cv unpublish | Remove your portfolio from agent-cv.dev |
Flags
generate:
--output <file> Write to file instead of stdout
--agent <name> Force agent: claude, codex, api, auto (default: auto)
--dry-run Preview what would be sent to AI, no actual calls
--no-cache Force fresh analysis, ignore cached results
--all Skip project picker, include everything
--email <emails> Override emails (comma-separated), for someone else's CV
scan:
--verbose Show scan progress details
--json Output raw JSON
--email <emails> Additional emails to recognize as yours
analyze:
--agent <name> Force agent: claude, codex, api, autoAI setup
agent-cv auto-detects what you have. In priority order:
| Agent | How to set up |
|-------|--------------|
| Claude Code | Install Claude Code. Best results (reads files directly). |
| Codex CLI | npm install -g @openai/codex |
| Cursor Agent | Install Cursor. Uses agent --trust -p headless mode. |
| OpenRouter | export OPENROUTER_API_KEY=... (one key, all models) |
| Anthropic | export ANTHROPIC_API_KEY=... |
| OpenAI | export OPENAI_API_KEY=... |
| Ollama | export AGENT_CV_BASE_URL=http://localhost:11434/v1 (no key needed) |
Tech stack
Built with Bun, Ink (React for terminal), Commander, Zod, and simple-git.
License
Proprietary. Source available for reference. Use is subject to the agent-cv Terms of Service.
