Skip to content

Quick Start

Install first:

/plugin install specialist-agent

Or via CLI: npx specialist-agent init

Then start using agents:

1. Analyze Your Project

bash
"Use @scout to analyze this project"

Get recommendations for which agents to use.

2. Build a Feature

bash
"Use @builder to create a products module with CRUD"

Creates: types, service, adapter, components, tests.

3. Review Before Merge

bash
"Use @reviewer to review the products module"

Checks: spec compliance, code quality, architecture.

4. Debug an Issue

bash
"Use @doctor to investigate the 500 error on login"

Traces through: Component → State → Adapter → Service → API

5. Plan a Complex Feature

bash
/plan add user authentication with JWT

Creates adaptive plan based on complexity.

6. Test-Driven Development

bash
/tdd implement calculateDiscount function

RED → GREEN → REFACTOR with proof.

7. Save Progress

bash
/checkpoint create before-refactor

Rollback if needed.

Common Workflows

New Project

bash
"Use @starter to create an app with Next.js + PostgreSQL"

API Design

bash
"Use @api to design the orders API with OpenAPI spec"

Performance

bash
"Use @perf to optimize the dashboard"

Security

bash
"Use @security to audit for vulnerabilities"

Database

bash
"Use @data to design the schema with Prisma"

Payments

bash
"Use @finance to integrate Stripe"

Migrations

bash
"Use @migrator to modernize src/legacy/"

8. Audit Before Release

bash
/audit src/modules/auth

Security + performance + architecture + dependency check in one pass.

9. Onboard to a Codebase

bash
/onboard

Maps architecture, detects conventions, generates developer guide.

Skills

SkillWhat it Does
/brainstormSocratic brainstorming
/planPlan a feature
/tddTest-driven development
/debugDebug an issue
/auditMulti-domain code audit
/onboardCodebase onboarding
/verifyVerification before completion
/checkpointSave/restore progress
/healthProject health score
/estimateEstimate token cost
/rememberSave a decision
/recallRecall decisions
/finishFinalize branch
/learnLearn while building
/worktreeGit worktree isolation
/write-skillCreate custom skills
/tutorialInteractive tutorial
/migrate-frameworkMigrate between frameworks

Native Hooks

Specialist Agent includes 4 native Claude Code hooks that run automatically:

HookWhat it Does
Security GuardBlocks dangerous commands before execution
Auto-DispatchSuggests the best agent for your prompt
Session ContextInjects project state on session start
Auto-FormatFormats files after Write/Edit

Installed during npx specialist-agent init. See Hooks Reference for details.

Next

Released under the MIT License.