Build
The safe, verified process for adding any new feature to your product.
Add any feature
You have an idea for a feature that isn't in your kit. Maybe your users need an admin dashboard, or you want to add a team invitation flow, or you need a public API.
Inside Claude Code, type /spec and describe what you want in plain English. The system runs the same verified process that built every other feature in your product: spec, plan, build, test, quality check.
What happens
The orchestrator reads your description and writes a specification. It asks clarifying questions if your description is vague — what should happen on mobile, what are the edge cases, who can access this feature.
Then it creates an execution plan and sends the right agents to work. Database agent sets up tables and security policies. Backend agent builds procedures. Connector agent wires server and client. Designer agent builds the UI. Tester agent verifies the flows. Quality gate checks types, lint, and build.
Every feature goes through the same pipeline. No shortcuts, no skipped tests, no "I'll fix the types later."
What you get back
- Database migrations with RLS policies
- Type-safe API procedures
- Server components with proper caching
- Client components with loading states
- Quality report confirming everything passes
Example
Inside Claude Code, you'd type something like:
/spec I need a team invitation system. The account owner can invite
people by email. Invitees get an email with a link. When they click it,
they accept or decline. Accepted members appear in a team members list.
The owner can remove members. Free plan allows 3 members, Pro allows 20.
That's it. The system asks follow-up questions if it needs more detail, then builds the whole thing.