npx meowkit commands
Runtime tools for managing your MeowKit project. Run from your project root.
doctor
Diagnose environment issues with auto-fix for permissions.
npx meowkit doctor [--report]Checks: Node.js 20+, Python 3.9+, Git, .claude/ structure, hooks executable, scripts present, memory writable, MCP config, Python venv, config validity.
Auto-fixes: Hook file permissions (chmod +x).
| Flag | Description |
|---|---|
--report | Print shareable diagnostic report |
setup
Guided post-scaffold configuration. Each step is idempotent.
npx meowkit setup [--only=<step>]| Step | What it does |
|---|---|
venv | Creates Python venv for skill scripts at .claude/skills/.venv |
mcp | Copies mcp.json.example → .mcp.json |
env | Copies env.example → .env |
gitignore | Appends MeowKit entries to .gitignore |
npx meowkit setup # Run all steps
npx meowkit setup --only=venv # Run single steptask
Create and manage structured task files. See Task Commands for details.
npx meowkit task new --type feature "Add user auth"
npx meowkit task list [--all] [--status done]validate
Verify .claude/ structure integrity.
npx meowkit validateChecks: Agents (10+), skills (30+), commands dir, modes (5+), rules (10+), hooks executable, scripts present, settings.json, CLAUDE.md, config file.
budget
View token usage and cost tracking.
npx meowkit budget [--monthly]| Flag | Description |
|---|---|
--monthly | Aggregate by month instead of showing last 10 entries |
memory
View or manage cross-session memory.
npx meowkit memory # Summary (line counts, pattern count)
npx meowkit memory --show # Display full lessons.md
npx meowkit memory --stats # Sessions captured, patterns learned
npx meowkit memory --clear # Clear all memory (with confirmation)upgrade
Update create-meowkit to the latest version.
npx meowkit upgrade [--check] [--beta] [--list]| Flag | Description |
|---|---|
--check | Show available update (shows both stable and beta) |
--beta | Install beta channel |
--list | List all available versions with channel info |
Examples:
npx meowkit upgrade # Upgrade to latest stable
npx meowkit upgrade --beta # Upgrade to latest beta
npx meowkit upgrade --check # Check without installing
npx meowkit upgrade --list # Show all versionsOutput of --list:
Channels:
stable: 1.2.0
beta: 1.3.0-beta.2
Recent versions:
1.2.0 (installed)
1.1.1
1.1.0
1.0.0status
Print version, channel, and current config.
npx meowkit statusShows: MeowKit version with channel indicator (stable/beta), project config from .claude/meowkit.config.json.