From devteam
Selects a plan by number, name, or ID to set as active for implementation. Handles disambiguation, archived/failed plans, and updates the active plan pointer.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devteam:devteam-select <number|name|plan-id><number|name|plan-id>sonnetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Command:** `/devteam:select`
Command: /devteam:select
Select a plan to work on. The selected plan becomes the active plan for /devteam:implement.
/devteam:select 2 # Select by number (from /devteam:list)
/devteam:select notifications # Select by name (partial match)
/devteam:select feature-dark-mode # Select by full plan ID
By number:
/devteam:select 2
Look up plan #2 from index
By partial name:
/devteam:select dark
Search plans for "dark" in name/ID, confirm if multiple matches
By full ID:
/devteam:select feature-dark-mode
Direct lookup
Check plan status:
planned -> Ready to startin_progress -> Can resumecomplete -> Warn user (can re-run but likely not needed)archived -> Ask to unarchive firstfailed -> Ask to reset circuit breaker# Update index.json
active_plan: feature-dark-mode
# Update pointer file
echo "feature-dark-mode" > .devteam/active-plan.txt
Selected plan: Dark Mode Support (feature-dark-mode)
Type: feature
Parent: project-taskmanager
Status: planned
Sprints: 1 total, 0 completed
Tasks:
TASK-001: Define dark mode color tokens [pending]
TASK-002: Create theme context [pending]
TASK-003: Update components for theme [pending]
TASK-004: Add theme toggle UI [pending]
Next steps:
/devteam:implement Execute this plan
/devteam:plan Modify the plan
/devteam:list See all plans
If partial match finds multiple plans:
/devteam:select mode
Output:
Multiple plans match "mode":
1. feature-dark-mode (Dark Mode Support)
2. feature-offline-mode (Offline Mode)
Enter number to select, or use full ID:
>
Plan not found:
No plan found matching "xyz"
Available plans:
1. Task Manager App (project)
2. Push Notifications (feature)
3. Dark Mode Support (feature)
Use /devteam:list to see all plans.
Selecting archived plan:
Plan "old-dashboard" is archived.
Would you like to:
1. Unarchive and select it
2. Cancel
>
Selecting failed plan:
Plan "feature-auth" has a triggered circuit breaker.
Last failure: TASK-003 - Build error in AuthService
Consecutive failures: 5
Would you like to:
1. Reset circuit breaker and retry
2. Review failure logs first
3. Cancel
>
/devteam:list - List all plans/devteam:implement - Execute the active plan/devteam:plan - Create a new plannpx claudepluginhub michael-harris/devteam --plugin devteamLists DevTeam development plans with name, type, status, progress from .devteam/plans/index.json and devteam.db. Supports --all for archived, --type filtering, shows details.
Routes user requests to the correct Planr skill based on project state. Use when the user hasn't named a specific skill.
Manages task planning and Plans.md tracking with create, add, update, sync subcommands. Useful for structured plan creation and progress sync.