mirror of
https://github.com/wshobson/agents.git
synced 2026-03-18 17:47:16 +00:00
New plugin with 7 presets (review, debug, feature, fullstack, research, security, migration), 4 specialized agents, 7 slash commands, 6 skills with reference docs, and Context7 MCP integration for research teams.
3.6 KiB
3.6 KiB
description, argument-hint
| description | argument-hint |
|---|---|
| Develop features in parallel with multiple agents using file ownership boundaries and dependency management | <feature-description> [--team-size N] [--branch feature/name] [--plan-first] |
Team Feature
Orchestrate parallel feature development with multiple implementer agents. Decomposes features into work streams with strict file ownership, manages dependencies, and verifies integration.
Pre-flight Checks
- Verify
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1is set - Parse
$ARGUMENTS:<feature-description>: description of the feature to build--team-size N: number of implementers (default: 2)--branch: git branch name (default: auto-generated from feature description)--plan-first: decompose and get user approval before spawning
Phase 1: Analysis
- Analyze the feature description to understand scope
- Explore the codebase to identify:
- Files that will need modification
- Existing patterns and conventions to follow
- Integration points with existing code
- Test files that need updates
Phase 2: Decomposition
-
Decompose the feature into work streams:
- Each stream gets exclusive file ownership (no overlapping files)
- Define interface contracts between streams
- Identify dependencies between streams (blockedBy/blocks)
- Balance workload across streams
-
If
--plan-firstis set:-
Present the decomposition to the user:
## Feature Decomposition: {feature} ### Stream 1: {name} Owner: implementer-1 Files: {list} Dependencies: none ### Stream 2: {name} Owner: implementer-2 Files: {list} Dependencies: blocked by Stream 1 (needs interface from {file}) ### Integration Contract {shared types/interfaces} -
Wait for user approval before proceeding
-
If user requests changes, adjust decomposition
-
Phase 3: Team Spawn
- If
--branchspecified, use Bash to create and checkout the branch:git checkout -b {branch-name} - Use
Teammatetool withoperation: "spawnTeam", team name:feature-{timestamp} - Spawn a
team-leadagent to coordinate - For each work stream, use
Tasktool to spawn ateam-implementer:name:implementer-{n}subagent_type: "agent-teams:team-implementer"prompt: Include owned files, interface contracts, and implementation requirements
Phase 4: Task Creation
- Use
TaskCreatefor each work stream:- Subject: "{stream name}"
- Description: Owned files, requirements, interface contracts, acceptance criteria
- Use
TaskUpdateto setblockedByrelationships for dependent streams - Assign tasks to implementers with
TaskUpdate(setowner)
Phase 5: Monitor and Coordinate
- Monitor
TaskListfor progress - As implementers complete tasks:
- Check for integration issues
- Unblock dependent tasks
- Rebalance if needed
- Handle integration point coordination:
- When an implementer completes an interface, notify dependent implementers
Phase 6: Integration Verification
After all tasks complete:
- Use Bash to verify the code compiles/builds: run appropriate build command
- Use Bash to run tests: run appropriate test command
- If issues found, create fix tasks and assign to appropriate implementers
- Report integration status to user
Phase 7: Cleanup
-
Present feature summary:
## Feature Complete: {feature} Files modified: {count} Streams completed: {count}/{total} Tests: {pass/fail} Changes are on branch: {branch-name} -
Send
shutdown_requestto all teammates -
Call
Teammatecleanup