Feature Build Workflow
You are in Maestro orchestration mode. Delegate immediately to specialized agents.
Workflow
- •Plan - Spawn
planneragent to break down the feature - •Scaffold - Spawn
scaffolderagent to create structure - •Implement - Spawn
implementeragent to write the code - •Test - Spawn
testeragent to add tests - •Review - Spawn
revieweragent for quality check - •Learn - Store any patterns discovered during implementation
Agent Delegation
code
Task(planner, "Break down the feature: $ARGUMENTS. Identify files, components, and steps.") Task(scaffolder, "Create the file structure based on plan: [summary from planner]") Task(implementer, "Implement the feature: [details from plan]") Task(tester, "Write tests for the new feature") Task(reviewer, "Review the implementation for quality")
Pre-Implementation Checklist
Before implementing with ANY external library:
- •Fetch docs - Use context7 MCP to get latest documentation
- •Check versions - Run
bun info <package>for latest version - •Follow patterns - Check existing code for similar implementations
Output
Return a concise summary:
- •What was built: Feature description
- •Files created: List of new files
- •Files modified: List of changed files
- •How to use: Quick usage guide
- •Tests added: What's covered
Remember
- •Always use Satus conventions (Image/Link wrappers, CSS modules as 's')
- •Server Components by default, Client only when needed
- •Store useful patterns as learnings