Slash commands for the DevTeam multi-agent development system.
Provides a suite of slash commands for a multi-agent development system to plan, implement, fix bugs, manage issues, and monitor project state autonomously.
When to use
Use this when you need to manage a software development project using an automated multi-agent system for planning, execution, and maintenance.
How to invoke
manual via /devteam:* commands, auto-invoked when relevant
npx claudepluginhub michael-harris/devteamSlash 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