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-proteus

v0.1.0

Published

Auto-generate CLAUDE.md by analyzing your project. Shape-shifting project intelligence for Claude Code.

Readme

🔱 Proteus

Shape-shifting project intelligence for Claude Code

Proteus analyzes your project and generates project-specific agents — specialized AI assistants that understand your codebase's language, framework, conventions, and rules.

Why Proteus?

Claude Code works best with context. But generic agents don't know your project's:

  • Coding conventions and style
  • Directory structure
  • Testing patterns
  • Project-specific rules

Proteus transforms into your project, creating personalized agents that already understand everything.

Installation

# Run directly with npx
npx agent-proteus

# Or install globally
npm install -g agent-proteus

Quick Start

# In your project directory
proteus

# Preview without saving
proteus --dry-run

# Specify output language
proteus --lang ja

Proteus will:

  1. Analyze your project structure
  2. Read existing CLAUDE.md (if present) for rules
  3. Suggest project-specific agents using Claude Code
  4. Generate selected agents to .claude/agents/
  5. Optionally generate /proteus skill for easy routing

Generated Structure

.claude/
├── agents/                    # Project-specific agents
│   ├── rails-graphql-type-generator.md
│   ├── rspec-request-spec-writer.md
│   └── ...
└── skills/
    └── proteus/
        └── SKILL.md           # Router skill for agents

Commands

# Default: Analyze and generate agents
proteus

# Generate CLAUDE.md only
proteus init

# Update agent list in CLAUDE.md or agents.md
proteus registry

# Just analyze (no generation)
proteus analyze

Options

| Option | Description | |--------|-------------| | -o, --output <dir> | Output directory (default: .claude/agents) | | -l, --lang <code> | Output language (en, ja, zh, ko, es, fr, de) | | -d, --dry-run | Preview without saving | | -f, --force | Skip confirmations | | --include-claude-md | Also generate CLAUDE.md if not exists |

How It Works

┌─────────────────────────────────────┐
│  1. Analyze Project                 │
│  - Language, framework, tools       │
│  - Directory structure              │
│  - Naming conventions               │
└─────────────────────────────────────┘
                ↓
┌─────────────────────────────────────┐
│  2. Read Existing Documents         │
│  - CLAUDE.md (rules, conventions)   │
│  - README.md (description)          │
│  - Existing agents (avoids dupes)   │
└─────────────────────────────────────┘
                ↓
┌─────────────────────────────────────┐
│  3. Suggest Agents (via Claude)     │
│  - Dynamic based on your stack      │
│  - Considers existing coverage      │
│  - Project-specific naming          │
└─────────────────────────────────────┘
                ↓
┌─────────────────────────────────────┐
│  4. Generate & Save                 │
│  - Personalized agent definitions   │
│  - /proteus skill for routing       │
│  - Registry in CLAUDE.md            │
└─────────────────────────────────────┘

Smart Agent Suggestions

Proteus adjusts suggestions based on existing coverage:

| Existing Agents | Max Suggestions | |-----------------|-----------------| | 0 | 5 agents | | 1-2 | 3 agents | | 3-4 | 2 agents | | 5+ | 0-1 agents (if gaps exist) |

Supported Languages & Frameworks

| Language | Frameworks | |----------|------------| | TypeScript/JavaScript | Next.js, React, Vue, Angular, Svelte, Express, Fastify, NestJS | | Go | Gin, Echo, Fiber | | Python | Django, Flask, FastAPI | | Ruby | Rails | | Rust | Actix, Axum | | Java | Spring | | PHP | Laravel |

Example: Rails Project

$ proteus

🔱 PROTEUS - Shape-shifting project intelligence

✓ Claude Code detected - using AI-powered generation
✔ Output language: 日本語

Tech Stack:
  Language:    ruby
  Framework:   rails
  Testing:     rspec

Recommended agents:
  1. rails-graphql-type-generator
  2. serializable-pattern-enforcer
  3. rspec-request-spec-writer
  ...

✅ Created .claude/agents/rails-graphql-type-generator.md
✅ Created .claude/skills/proteus/SKILL.md

Using Generated Agents

# Use specific agent
@rails-graphql-type-generator このResolverをレビューして

# Use /proteus to auto-route
/proteus テストを書いて  # → automatically uses rspec-request-spec-writer

Contributing

Contributions welcome! Please read our Contributing Guide.

License

MIT