DevTeam Implement Command
Description
**Command:** `/devteam:implement [task] [options]` Execute implementation work - plans, sprints, tasks, or ad-hoc work.
Installation
claude install-skill https://github.com/michael-harris/devteam README
DevTeam Implement Command
**Command:** `/devteam:implement [task] [options]`
Execute implementation work - plans, sprints, tasks, or ad-hoc work.
Usage
# Execute selected/current plan
/devteam:implement
# Execute specific sprint
/devteam:implement --sprint 1
/devteam:implement --sprint SPRINT-001
# Execute all sprints
/devteam:implement --all
# Execute specific task
/devteam:implement --task TASK-001
# Ad-hoc task (will trigger interview if ambiguous)
/devteam:implement "Add pagination to user list"
# Cost-optimized execution
/devteam:implement --eco
/devteam:implement --sprint 1 --eco
# Skip interview for ad-hoc tasks
/devteam:implement "Fix typo in header" --skip-interview
# Specify task type for better agent selection
/devteam:implement "Audit auth flow" --type security
/devteam:implement "Restructure utils" --type refactor
Options
| Option | Description |
|---|---|
--sprint |
Execute specific sprint |
--all |
Execute all sprints sequentially |
--task |
Execute specific task |
--eco |
Cost-optimized execution (slower escalation, summarized context) |
--skip-interview |
Skip ambiguity check for ad-hoc tasks |
--type |
Specify task type: feature, bug, security, refactor, docs |
--model |
Force starting model: haiku, sonnet, opus |
--max-iterations |
Override max iterations (default: 10) |
--show-worktrees |
Debug: Show worktree operations (normally hidden) |
Your Process
Phase 0: Initialize Session
# Source state management
source scripts/state.sh
source scripts/events.sh
# Start session
SESSION_ID=$(start_session "/devteam:implement $*" "implement")
log_session_started "/devteam:implement $*" "implement"
# Determine execution mode
if [[ "$*" == *"--eco"* ]]; then
set_state "execution_mode" "eco"
fi
Create/update session in database:
INSERT INTO sessions (
id, command, command_type, execution_mode, status, current_phase
) VALUES (
'session-xxx', '/devteam:implement --sprint 1', 'implement', 'normal', 'running', 'initializing'
);
Phase 1: Determine Execution Target
**Priority order:**
- undefined
function determineTarget(args) {
if (args.task) return { type: 'task', id: args.task }
if (args.sprint) return { type: 'sprint', id: args.sprint }
if (args.all) return { type: 'all_sprints' }
if (args._.length > 0) return { type: 'adhoc', description: args._.join(' ') }
return { type: 'plan', id: getSelectedPlan() }
}
Phase 2: Interview (for ad-hoc tasks)
**Skip if:**
- undefined
**Trigger interview if:**
- undefined
Related Agents
Project Coordinator
Coordinates multi-agent workflows for this project
Project Management community Status
| Display the current status of the Conductor project, including overall progress, active tracks, and... | - | [wshobson/agents](https://github.com/wshobson/agents) |
Project Management community Setup
| Initialize or resume Conductor project setup. This command creates foundational project documentatio... | - | [wshobson/agents](https://github.com/wshobson/agents) |
Project Management community Manage
| Manage the complete track lifecycle including archiving, restoring, deleting, renaming, and cleaning... | - | [wshobson/agents](https://github.com/wshobson/agents) |
Project Management community conductor-validator
| You are an expert validator for Conductor project artifacts. Your role is to verify that Conductor's... | opus | [wshobson/agents](https://github.com/wshobson/agents) |
Project Management community Tracks
| This file maintains the registry of all development tracks for the project. Each track represents a... | - | [wshobson/agents](https://github.com/wshobson/agents) |
Project Management community