| name | buildable-web-builder |
| description | Use when generating or adapting local-first web app prototypes from Buildable app specs, archetypes, UI patterns, design playbooks, and golden templates. |
Buildable Web Builder Skill
Use this skill to generate or adapt local web prototypes.
Resolve all referenced paths from the Buildable plugin or repository root.
Activation
Use only when the user is building or adapting a web app/prototype. Do not activate for unrelated frontend debugging unless the user asks for Buildable guidance.
Reference Loading Contract
Mandatory order:
- Read the saved planner output first:
.buildable/phase-plan.json when present, otherwise buildable-app-spec.json. Use .buildable/phase-plan.toon when present as the compact agent-facing build contract.
- Load only
appSpec.references.
- Load current project files only as needed for the requested change.
- Do not load all templates.
- Load starter source only for the selected template and only when generating or editing it.
Default Stack
- Next.js
- TypeScript
- Tailwind CSS
- shadcn-style component patterns
- local/mock data
Workflow
- Read the saved plan/app spec from the planner handoff.
- Check
appSpec.planAudit.checks before editing; treat blocked/failed checks as gates, not suggestions.
- If
questionsNeeded is true, ask the user before generating.
- For fresh starts, prefer
buildable generate "<prompt>" when a runnable template exists. Add --out <dir> only when the user requested a specific folder.
- Apply
appSpec.designSystem for visual tone, density, palette intent, layout rules, component rules, accessibility, and anti-patterns.
- Apply
appSpec.blocks as reusable micro-template guidance. Selected block docs are references to adapt to the current entity/design system, not generic code to paste blindly.
- If
appSpec.auth.requested is true, implement the local/mock auth shape first and keep any named provider behind the auth seam.
- Load only the references listed in the app spec.
- If the template is
generic-app, use the selected archetype reference to shape screens and entities instead of loading unrelated templates.
- Inspect the local project if generating inside an existing app.
- Generate or adapt a complete first-screen prototype.
- Keep data local unless the spec explicitly requires otherwise.
- Run build/typecheck/lint checks when available.
Build Order
- Create typed entities and sample data.
- Build the primary screen and state operations.
- Add empty, filtered, and edited states.
- Apply responsive layout rules.
- Review against the selected quality rubric.
Guardrails
- Do not add auth, accounts, billing, cloud previews, managed databases, telemetry, or deployment.
- Do not create marketing landing pages for app requests.
- Do not leave generic placeholder UI.