Help us improve
Share bugs, ideas, or general feedback.
From devteam
Displays documentation for DevTeam multi-agent slash commands: plan projects/sprints, implement autonomously, fix bugs/GitHub issues, review code, run tests, check status, manage git worktrees.
npx claudepluginhub michael-harris/devteam --plugin devteamHow this command is triggered — by the user, by Claude, or both
Slash command
/devteam:READMEThe summary Claude sees in its command listing — used to decide when to auto-load this command
# DevTeam Commands Slash commands for the DevTeam multi-agent development system. ## Command Overview | Command | Description | |---------|-------------| | `/devteam:plan` | Interactive planning - creates PRD, tasks, and sprints | | `/devteam:implement` | Autonomous execution until project/feature complete | | `/devteam:bug` | Fix a bug with structured diagnostic workflow and Bug Council if needed | | `/devteam:issue <#>` | Fix a GitHub issue by number | | `/devteam:issue-new "<desc>"` | Create a new GitHub issue | | `/devteam:list` | List all plans and their status | | `/devteam:select`...
/startGenerates and executes agent team orchestration from any task prompt. Supports --dry-run, --auto-run, --team-size, --models, approval, and output flags.
/agency-runOrchestrates a coordinated engineering team from .claude/agents/ to complete a task end-to-end. Supports FULL, QUICK, and HOTFIX sprint modes.
/feature-planningGuides feature planning workflow: gathers description/reqs interactively, generates PRD/SDD, creates planning dir, outputs TASKS.json/MD.
/READMEDisplays documentation for all available commands, including format, validation, and discovery scripts. Also supports listing commands by keyword.
/READMEDisplays list of SuperClaude slash commands: agent (AI agents), index-repo (repo indexing), recommend, research (web research), and sc (show all), with install notes.
/READMEDisplays the full catalog of 31 slash commands organized by SDD workflow, data engineering, visualization, and developer productivity categories.
Share bugs, ideas, or general feedback.
Slash commands for the DevTeam multi-agent development system.
| Command | Description |
|---|---|
/devteam:plan | Interactive planning - creates PRD, tasks, and sprints |
/devteam:implement | Autonomous execution until project/feature complete |
/devteam:bug | Fix a bug with structured diagnostic workflow and Bug Council if needed |
/devteam:issue <#> | Fix a GitHub issue by number |
/devteam:issue-new "<desc>" | Create a new GitHub issue |
/devteam:list | List all plans and their status |
/devteam:select | Select a plan to work on |
/devteam:status | Display system health, progress, costs, and execution history |
/devteam:reset | Reset state, clear stuck sessions, and recover from errors |
/devteam:merge-tracks | Manually merge parallel tracks (auto-merge is default) |
/devteam:config | View and modify DevTeam configuration settings |
/devteam:help | Get help on commands, concepts, and troubleshooting |
/devteam:logs | View execution logs, events, and history |
/devteam:worktree-status | Show worktree status for troubleshooting |
/devteam:worktree-list | List all git worktrees for troubleshooting |
/devteam:worktree-cleanup | Manually clean up worktrees if auto-cleanup failed |
/devteam:design | Generate or update design system tokens and guidelines |
/devteam:design-drift | Detect design drift between implementation and design system |
/devteam:review | Run code review on current changes |
/devteam:test | Run test suite with appropriate test writers |
# 1. Plan your project (interactive)
/devteam:plan "Build a task manager"
# 2. Execute autonomously
/devteam:implement
# 1. Create feature plan
/devteam:plan --feature "Add dark mode support"
# 2. Execute the feature
/devteam:implement
# Plan several features
/devteam:plan --feature "Add notifications"
/devteam:plan --feature "Add dark mode"
# List all plans
/devteam:list
# Select which one to work on
/devteam:select notifications
# Execute selected plan
/devteam:implement
# Plan from existing specification
/devteam:plan --from project-spec.md
/devteam:plan --from specs/ # Folder of specs
# Fix GitHub issue #123
/devteam:issue 123
# Create and track a new issue
/devteam:issue-new "Login button broken on mobile"
Combines PRD generation and sprint planning:
docs/planning/PROJECT_PRD.json)docs/planning/tasks/)docs/sprints/).devteam/devteam.db)Autonomous execution mode:
EXIT_SIGNAL: true when completeFix GitHub issues:
Create GitHub issues:
View all development plans:
--type feature)--all)Select a plan to work on:
/devteam:select 2/devteam:select dark-modeDevTeam supports multiple concurrent plans:
.devteam/plans/
├── index.json # Master plan index
├── project-taskmanager/ # Original project
├── feature-notifications/ # Feature 1
└── feature-dark-mode/ # Feature 2
| Type | Description | Use Case |
|---|---|---|
project | Full new project | Starting from scratch |
feature | Addition to existing | New functionality |
enhancement | Improvement | Optimization/refactor |
planned → in_progress → complete → (archive)
↘ failed → (retry/abandon)
Each plan has its state tracked in SQLite:
.devteam/devteam.db (sessions, tasks, plans tables)State tracks:
| Old Command | New Command |
|---|---|
/devteam:prd | /devteam:plan |
/devteam:planning | /devteam:plan |
/devteam:sprint all | /devteam:implement |
/devteam:sprint <id> | /devteam:implement --sprint |
/devteam:issue | /devteam:issue |
/devteam:feature | /devteam:plan (then auto) |
The following commands are deprecated and removed - use the indicated replacement commands instead:
prd.md → Use /devteam:planplanning.md → Use /devteam:plansprint-all.md → Use /devteam:implementfeature.md → Use /devteam:plan