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

create-000

v1.1.0

Published

Build your AI partner — get000.com

Readme

000

Build your AI partner. One command.

npx create-000

What It Does

Scaffolds a persistent AI partner for Claude Code — personality, memory, skills, and optionally a full MCP server with database and soul system.

You answer a few structural questions in the terminal, then Claude runs a personality interview and finishes the setup. The result is a Claude that remembers you across sessions, has opinions, and gets smarter over time.

Tiers

| Tier | What You Get | Time | |------|-------------|------| | Lite | CLAUDE.md + persistent memory file | 15 min | | Standard | Lite + 9 development skills | 20 min | | Full | Standard + MCP server, SQLite database, soul system, agent team | 1 session |

Lite

A personalized ~/.claude/CLAUDE.md that shapes Claude's behavior in every session, plus a MEMORY.md file for persistent context. No infrastructure needed.

Standard

Everything in Lite, plus 9 battle-tested skills:

  • brainstorming — collaborative design before implementation
  • systematic-debugging — root cause first, fixes second
  • verification-before-completion — evidence before claims
  • skill-creator — build your own skills
  • end — clean session shutdown
  • evolve — weekly self-improvement cycle
  • session-start — proactive session briefing
  • dream — memory consolidation
  • using-superpowers — skill routing

These skills are inspired by superpowers. For the full ecosystem with 30+ skills, check out their repo.

Full

Everything in Standard, plus:

  • MCP server — a Node.js server with 20 tools for persistent memory, session tracking, project management, knowledge capture, and strategy playbook
  • SQLite database — structured storage that survives between sessions
  • Soul system — personality config that makes your AI feel like a real collaborator
  • Agent team — specialized subagents for shipping, research, debugging, architecture, infrastructure, and code review (custom names or defaults)
  • Strategy playbook — tracks what approaches work over time so your AI stops guessing

How It Works

npx create-000
    │
    ├── CLI wizard (structural questions)
    │   ├── Pick a tier
    │   ├── Name your AI partner (or skip)
    │   └── Agent team setup (Full only)
    │
    ├── Scaffolder (writes files)
    │   ├── ~/.claude/CLAUDE.md
    │   ├── ~/.claude/projects/memory/MEMORY.md
    │   ├── ~/.claude/skills/ (Standard+)
    │   ├── ~/[name]-mcp/ (Full)
    │   └── ~/.mcp.json (Full)
    │
    └── BOOTSTRAP.md → paste into Claude Code
        └── Claude runs personality interview
        └── Personalizes everything

The CLI handles the mechanical setup. Claude handles the human parts — personality, projects, communication style, pain points. Clean handoff between the two.

On macOS, the bootstrap file is automatically copied to your clipboard.

Options

npx create-000              Interactive setup
npx create-000 --version    Print version
npx create-000 --help       Print help

Requirements

  • Node.js 18+
  • Claude Code installed (Anthropic's CLI agent)
  • For Full tier: npm (comes with Node.js)

After Setup

Open Claude Code and paste the contents of ~/.claude/BOOTSTRAP.md. Claude interviews you, personalizes everything, and you're live.

Then restart Claude Code and say "good morning." Your AI briefs you.

Upgrading Tiers

Already on Lite? Run npx create-000 again and pick Standard or Full. It backs up your existing files before writing new ones.

Uninstalling

To remove everything 000 created:

# Lite / Standard
rm ~/.claude/CLAUDE.md
rm ~/.claude/projects/memory/MEMORY.md
rm ~/.claude/BOOTSTRAP.md
rm -rf ~/.claude/skills/{brainstorming,systematic-debugging,verification-before-completion,skill-creator,end,evolve,session-start,dream,using-superpowers}

# Full (also remove MCP server)
rm -rf ~/[name]-mcp/          # or ~/000-mcp/ if no name was set
rm -rf ~/.claude/agents/
# Edit ~/.mcp.json and remove the "000" (or your name's slug) entry

Backup files (CLAUDE.md.backup, MEMORY.md.backup, .mcp.json.backup) can be restored if you want to revert.

Learn More

get000.com