---
name: team-backend
type: workflow
description: "Orchestrates the backend team of technical-director, backend-developer, data-engineer, and security-engineer to design, implement, and review a backend system end-to-end. Use when a backend feature needs coordinated multi-specialist delivery."
argument-hint: "[backend feature or system description]"
user-invocable: true
allowed-tools: Read, Glob, Grep, Write, Edit, Bash, Task, AskUserQuestion, TodoWrite
effort: 3
when_to_use: "Use when a backend feature requires coordinated multi-specialist delivery across architecture, API, database schema, and security domains."
When this skill is invoked, orchestrate the backend team through a structured delivery pipeline.
Decision Points: At each phase, use AskUserQuestion to get user approval before proceeding.
Team Composition
- technical-director — Architecture review and approval
- backend-developer — API and service implementation
- data-engineer — Schema design and migrations
- security-engineer — Security review
Pipeline
Phase 1: Architecture Design
Delegate to technical-director:
- Review the system requirements
- Propose architecture: service boundaries, data flows, technology choices
- Identify risks and cross-cutting concerns
- Output: Architecture proposal for approval
Phase 2: Schema Design
Delegate to data-engineer:
- Design database schema based on approved architecture
- Write migration scripts (up and down)
- Define indexes and constraints
- Output: Schema design doc + migration files for review
Phase 3: API Contract Design
Delegate to backend-developer:
- Define REST/GraphQL endpoint contracts
- Specify request/response schemas and error codes
- Define authentication requirements per endpoint
- Output: API contract for frontend team to build against
Phase 4: Implementation
Delegate to backend-developer:
- Implement approved endpoints
- Apply approved schema migrations
- Write unit and integration tests
- Output: Implemented and tested backend
Phase 5: Security Review (parallel with implementation where possible)
Delegate to security-engineer:
- Review auth and authorization logic
- Check for injection vulnerabilities, insecure data exposure
- Validate input sanitization
- Output: Security review report
Phase 6: Integration
- Address security findings
- Confirm API is ready for frontend integration
- Run
/db-review and /api-design checks
Output
Summary covering: architecture decision, schema status, API contract, test coverage, and security review result.
1---2name: team-backend3description: ---4---5---6name: team-backend7type: workflow8description: "Orchestrates the backend team of technical-director, backend-developer, data-engineer, and security-engineer to design, implement, and review a backend system end-to-end. Use when a backend feature needs coordinated multi-specialist delivery."9argument-hint: "[backend feature or system description]"10user-invocable: true11allowed-tools: Read, Glob, Grep, Write, Edit, Bash, Task, AskUserQuestion, TodoWrite12effort: 313when_to_use: "Use when a backend feature requires coordinated multi-specialist delivery across architecture, API, database schema, and security domains."14---1516When this skill is invoked, orchestrate the backend team through a structured delivery pipeline.1718**Decision Points:** At each phase, use `AskUserQuestion` to get user approval before proceeding.1920## Team Composition21- **technical-director** — Architecture review and approval22- **backend-developer** — API and service implementation23- **data-engineer** — Schema design and migrations24- **security-engineer** — Security review2526## Pipeline2728### Phase 1: Architecture Design29Delegate to **technical-director**:30- Review the system requirements31- Propose architecture: service boundaries, data flows, technology choices32- Identify risks and cross-cutting concerns33- Output: Architecture proposal for approval3435### Phase 2: Schema Design36Delegate to **data-engineer**:37- Design database schema based on approved architecture38- Write migration scripts (up and down)39- Define indexes and constraints40- Output: Schema design doc + migration files for review4142### Phase 3: API Contract Design43Delegate to **backend-developer**:44- Define REST/GraphQL endpoint contracts45- Specify request/response schemas and error codes46- Define authentication requirements per endpoint47- Output: API contract for frontend team to build against4849### Phase 4: Implementation50Delegate to **backend-developer**:51- Implement approved endpoints52- Apply approved schema migrations53- Write unit and integration tests54- Output: Implemented and tested backend5556### Phase 5: Security Review (parallel with implementation where possible)57Delegate to **security-engineer**:58- Review auth and authorization logic59- Check for injection vulnerabilities, insecure data exposure60- Validate input sanitization61- Output: Security review report6263### Phase 6: Integration64- Address security findings65- Confirm API is ready for frontend integration66- Run `/db-review` and `/api-design` checks6768## Output69Summary covering: architecture decision, schema status, API contract, test coverage, and security review result.