---
name: team-feature
type: workflow
description: "Orchestrates a cross-functional feature team of product-manager, ux-designer, frontend-developer, backend-developer, and qa-engineer to deliver a complete feature from specification to tested implementation. Use when a feature requires full-stack coordinated delivery."
argument-hint: "[feature description or user story]"
user-invocable: true
allowed-tools: Read, Glob, Grep, Write, Edit, Bash, Task, AskUserQuestion, TodoWrite
effort: 3
when_to_use: "Use when a feature requires full-stack coordinated delivery spanning product requirements, UX design, frontend, backend, and QA testing."
When this skill is invoked, orchestrate the feature team through a structured delivery pipeline.
Decision Points: At each phase transition, use AskUserQuestion to present
the user with the subagent's proposals as selectable options. Write the agent's
full analysis in conversation, then capture the decision with concise labels.
The user must approve before moving to the next phase.
Team Composition
- product-manager — Feature scope, user stories, acceptance criteria
- ux-designer — User flows, wireframes, interaction design
- backend-developer — API design and implementation
- frontend-developer — UI components and client-side integration
- qa-engineer — Test planning and validation
How to Delegate
Use the Task tool to spawn each team member as a subagent:
subagent_type: product-manager
subagent_type: ux-designer
subagent_type: backend-developer
subagent_type: frontend-developer
subagent_type: qa-engineer
Always provide full context in each agent's prompt (feature requirements, existing patterns, API conventions). Launch independent agents in parallel where the pipeline allows (e.g., backend + UX design can proceed in parallel after spec is approved).
Pipeline
Phase 1: Feature Specification
Delegate to product-manager:
- Write the user story and acceptance criteria
- Define out-of-scope explicitly
- Identify success metrics
- Output: PRD or user story with acceptance criteria
Phase 2: Design (parallel)
Launch in parallel:
- ux-designer: User flow, wireframes, interaction spec for the feature
- backend-developer: API contract design (endpoints, request/response schemas)
Both must complete before Phase 3.
Phase 3: Review Designs
Use AskUserQuestion to get approval on:
- UX flow and wireframes
- API contract
Iterate until approved.
Phase 4: Implementation (parallel where possible)
- backend-developer: Implement approved API endpoints and business logic
- frontend-developer: Implement UI components (can start with mock data if backend not ready)
Once backend is done, frontend-developer integrates with real API.
Phase 5: QA
Delegate to qa-engineer:
- Test against acceptance criteria
- Cross-browser/cross-device testing if relevant
- Regression testing on adjacent features
- Output: Test report with pass/fail per acceptance criterion
Phase 6: Handoff
- Address QA findings
- Update documentation if needed (delegate to tech-writer)
- Confirm feature is ready for release review (
/gate-check)
Output
A summary covering: acceptance criteria coverage, API status, UI status, test results, and any outstanding items.
1---2name: team-feature3description: ---4---5---6name: team-feature7type: workflow8description: "Orchestrates a cross-functional feature team of product-manager, ux-designer, frontend-developer, backend-developer, and qa-engineer to deliver a complete feature from specification to tested implementation. Use when a feature requires full-stack coordinated delivery."9argument-hint: "[feature description or user story]"10user-invocable: true11allowed-tools: Read, Glob, Grep, Write, Edit, Bash, Task, AskUserQuestion, TodoWrite12effort: 313when_to_use: "Use when a feature requires full-stack coordinated delivery spanning product requirements, UX design, frontend, backend, and QA testing."14---1516When this skill is invoked, orchestrate the feature team through a structured delivery pipeline.1718**Decision Points:** At each phase transition, use `AskUserQuestion` to present19the user with the subagent's proposals as selectable options. Write the agent's20full analysis in conversation, then capture the decision with concise labels.21The user must approve before moving to the next phase.2223## Team Composition24- **product-manager** — Feature scope, user stories, acceptance criteria25- **ux-designer** — User flows, wireframes, interaction design26- **backend-developer** — API design and implementation27- **frontend-developer** — UI components and client-side integration28- **qa-engineer** — Test planning and validation2930## How to Delegate3132Use the Task tool to spawn each team member as a subagent:33- `subagent_type: product-manager`34- `subagent_type: ux-designer`35- `subagent_type: backend-developer`36- `subagent_type: frontend-developer`37- `subagent_type: qa-engineer`3839Always provide full context in each agent's prompt (feature requirements, existing patterns, API conventions). Launch independent agents in parallel where the pipeline allows (e.g., backend + UX design can proceed in parallel after spec is approved).4041## Pipeline4243### Phase 1: Feature Specification44Delegate to **product-manager**:45- Write the user story and acceptance criteria46- Define out-of-scope explicitly47- Identify success metrics48- Output: PRD or user story with acceptance criteria4950### Phase 2: Design (parallel)51Launch in parallel:52- **ux-designer**: User flow, wireframes, interaction spec for the feature53- **backend-developer**: API contract design (endpoints, request/response schemas)5455Both must complete before Phase 3.5657### Phase 3: Review Designs58Use `AskUserQuestion` to get approval on:59- UX flow and wireframes60- API contract6162Iterate until approved.6364### Phase 4: Implementation (parallel where possible)65- **backend-developer**: Implement approved API endpoints and business logic66- **frontend-developer**: Implement UI components (can start with mock data if backend not ready)6768Once backend is done, frontend-developer integrates with real API.6970### Phase 5: QA71Delegate to **qa-engineer**:72- Test against acceptance criteria73- Cross-browser/cross-device testing if relevant74- Regression testing on adjacent features75- Output: Test report with pass/fail per acceptance criterion7677### Phase 6: Handoff78- Address QA findings79- Update documentation if needed (delegate to tech-writer)80- Confirm feature is ready for release review (`/gate-check`)8182## Output83A summary covering: acceptance criteria coverage, API status, UI status, test results, and any outstanding items.