create-000
v1.1.0
Published
Build your AI partner — get000.com
Readme
000
Build your AI partner. One command.
npx create-000What 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 everythingThe 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 helpRequirements
- 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) entryBackup files (CLAUDE.md.backup, MEMORY.md.backup, .mcp.json.backup) can be restored if you want to revert.
