npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

agent-cv

v0.1.2

Published

Generate technical CVs from your local project directories using AI

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 ~/Projects

How 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 year

Features

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
  • --email flag 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-run to 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, auto

AI 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.