-
Notifications
You must be signed in to change notification settings - Fork 4
Full Stack Feature Development
Alessio Rocchi edited this page Jan 27, 2026
·
1 revision
End-to-end pattern for building complete features.
1. Architect designs system
2. Coder (Frontend) builds UI
3. Coder (Backend) builds API
4. Tester creates tests
5. Documentation writes docs
6. Reviewer validates everything
const session = await memory.createSession({
feature: 'user-profile',
sprint: 'sprint-42'
});
// Phase 1: Design
const architect = spawnAgent('architect', { sessionId: session.id });
// Design the feature architecture
// Phase 2: Parallel Implementation
const frontend = spawnAgent('coder', {
name: 'frontend-coder',
sessionId: session.id
});
const backend = spawnAgent('coder', {
name: 'backend-coder',
sessionId: session.id
});
const docAgent = spawnAgent('documentation', { sessionId: session.id });
// Phase 3: Testing
const tester = spawnAgent('tester', { sessionId: session.id });
// Phase 4: Review
const reviewer = spawnAgent('reviewer', { sessionId: session.id });Let coordinator handle:
"Build a complete user profile feature with frontend, backend, tests, and documentation"
Related:
Getting Started
Core Concepts
Agent Guides
- Overview
- Coder
- Researcher
- Tester
- Reviewer
- Adversarial
- Architect
- Coordinator
- Analyst
- DevOps
- Documentation
- Security Auditor
MCP Tools
- Overview
- Agent Tools
- Memory Tools
- Task Tools
- Session Tools
- System Tools
- GitHub Tools
- Review Loop Tools
- Identity Tools
Recipes
- Index
- Code Review
- Doc Sync
- Multi-Agent
- Adversarial Testing
- Full-Stack Feature
- Memory Patterns
- GitHub Integration
Advanced
- Plugin Development
- Custom Agent Types
- Workflow Engine
- Vector Search Setup
- Web Dashboard
- Programmatic API
- Resource Monitoring
Reference