모든 crew 에이전트 dispatch의 중앙 규약 — provider별 호출법 캡슐화
contract.md를 입력으로 받아 Dev + CodeReviewer + QA 파이프라인으로 구현을 완료한다
간단한 작업을 기존 Dev 에이전트 direct mode로 즉시 위임한다
유저 요구사항을 인터뷰하여 개발 가능한 수준의 spec.md를 생성한다
TechLead + Planner + PlanEvaluator 계획 파이프라인 — contract.md를 생성한다
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A Claude Code multi-agent orchestration plugin for solo SaaS developers.
crew-interview → crew-plan → crew-dev
WHAT HOW DO
| Stage | Role | Output |
|---|---|---|
| crew-interview | What to build — requirements interview, product design | spec.md |
| crew-plan | How to build it — technical analysis, task decomposition | contract.md |
| crew-dev | Build it — implementation, code review, QA | working code + PR |
In Claude Code:
/plugin marketplace add jjlabsio/claude-crew
/plugin install claude-crew
Or install locally:
/plugin install /path/to/claude-crew
Run once after installation:
/crew-setup
.gitignore / .gitattributes migration (.crew/ git tracked)/crew
The orchestrator starts and briefs the current status.
/crew-do "clean up login error messages"
/crew-do # runs the active task if one exists
/crew-do invokes the Dev agent in direct mode for small fixes, bug patches, and clearly scoped tasks. If Dev's default provider is Codex, code exploration, editing, and verification happen inside the Codex runtime; Claude handles only result summarization and follow-up coordination.
/task remains dedicated to memory/queue management. To execute a saved task, mark it active with /task work {id} then run /crew-do.
/task add "description" # add a task (captures conversation context)
/task add "description" --next # urgent — insert at top of queue
/task work 3 # start working on task #3 (reads related files + briefs)
/task start # start working on the top-priority task
/task done # mark active task complete
/task bump 4 # raise priority by one
/task top 7 # move to top of queue
/task note 3 "note" # add a note to a task
/task drop 3 # delete a task
/tasks # project task board
/tasks stale # review tasks untouched for 30+ days
/tasks clean # clean up tasks completed 7+ days ago
Tasks are managed as individual files in .crew/tasks/. Each file carries state, priority, and context so work can resume across sessions without re-entering context.
| Agent | Role | Used in |
|---|---|---|
| Orchestrator | Talks with the user, decides delegation, drives the pipeline | all |
| Explorer | Codebase exploration (read-only) | interview, plan |
| Researcher | External research (WebSearch) | interview, plan |
| TechLead | Technical analysis, architecture direction | plan |
| Planner | Task decomposition, implementation planning | plan |
| PlanEvaluator | Plan validation (hard thresholds) | plan |
| Dev | Code implementation | dev |
| CodeReviewer | Code review | dev |
| QA | Execution verification | dev |
claude-crew is a plugin installed into other projects. It operates in two distinct modes.
General users who install this plugin into their own project for SaaS development.
/crew, /crew-setup, /crew-do, /task, /tasks, /crew-interview, /crew-plan, /crew-dev.node scripts/crew-agent-runner.mjs resolve --role <role> --json (shows combined provider/model/contract table).~/.claude/plugins/... etc.) — the plugin script auto-detects its own location.People developing claude-crew itself (working inside this repo).
node scripts/crew-agent-runner.mjs build: derives agents/{role}.md + plugin.json agents array from contracts/instructions.node scripts/crew-agent-runner.mjs validate: checks build output against source files + sandbox consistency.node scripts/crew-agent-runner.mjs install-hooks: installs pre-commit hook (prevents drift).These commands only work inside the plugin source repo. They are blocked when called from a user environment (detected via .claude-plugin/plugin.json + package.json.name === "@jjlabsio/claude-crew").
Configure per-agent provider/model via /crew-setup. Agents without explicit configuration fall back to agent_defaults in data/provider-catalog.json.
Default recommendations are grouped by the nature of each agent's role:
npx claudepluginhub jjlabsio/claude-crew --plugin claude-crewAI 개발 하네스 — 설치 한 번이면 AI가 PRD, 지식 축적, 실수 학습, 복기까지 자동으로. Karpathy LLM Knowledge Base + Claude Code 하네스 원칙.
AI team orchestration. Give Claude Code an AI team — CTO, Engineer, QA, Designer work together while you watch.
Lean agent skills for building, shipping, strategy, and growth — no context bloat.
Context-Driven Development plugin that transforms Claude Code into a project management tool with structured workflow: Context → Spec & Plan → Implement
Dynamic task-based agentic delegation with builder/validator pairs and meta-prompt team orchestration
Claude Code multi-agent team orchestration (Chinese version). Set up parallel AI agent teams with file-based planning and role-based collaboration.