Skip to content

Installation

Prerequisites

Install

bash
# 1. Go to your project
cd /path/to/your-project

# 2. Run the wizard
npx specialist-agent init

The wizard asks:

  1. Framework — Vue 3, React (coming soon)
  2. Mode — Full (Sonnet/Opus) or Lite (Haiku)
  3. Starter agent — Install @starter for project creation?

What Gets Installed

The installer copies these files into your project:

text
your-project/
├── .claude/
│   ├── agents/              ← 5 AI subagents
│   │   ├── starter.md
│   │   ├── builder.md
│   │   ├── reviewer.md
│   │   ├── migrator.md
│   │   └── doctor.md
│   └── skills/              ← 12 skills
│       ├── dev-create-module/
│       ├── review-review/
│       ├── migration-migrate-module/
│       └── docs-onboard/
├── docs/
│   └── ARCHITECTURE.md      ← Source of truth for patterns
└── CLAUDE.md                 ← Project config for Claude

Non-destructive

The installer never overwrites existing ARCHITECTURE.md or CLAUDE.md files. If they already exist, they are skipped.

Lite Mode (Lower Cost)

For budget-conscious usage, install Lite agents that run on the Haiku model:

bash
npx specialist-agent init    # select "Lite" in wizard
AspectFullLite
ModelSonnet/OpusHaiku
Cost~5-25k tokens~2-10k tokens
Validationtsc + build + vitestSkipped
First actionReads ARCHITECTURE.mdRules inline

Same agent names, same capabilities — just cheaper per invocation.

Verify Installation

bash
# Open Claude Code
claude

# Check agents are loaded
/agents

# Try a quick skill
/review-check-architecture

You should see your installed agents listed (e.g., @starter, @builder, @reviewer, @migrator, @doctor, plus specialist agents if installed).

Optional: Context7 MCP

For up-to-date library documentation when asking Claude about APIs, you can add the Context7 MCP server. This benefits you as a developer — agents work fully without it:

json
// ~/.claude/mcp.json
{
  "mcpServers": {
    "context7": {
      "command": "npx",
      "args": ["-y", "@upstash/context7-mcp@latest"]
    }
  }
}

Next Steps

Released under the MIT License.