Workflowcustom-appFeatured
Web App: From Spec to Deploy
End-to-end playbook for building a Next.js + Postgres web app from a problem statement to production.
1-2 days for a small app
Steps
- Open
Capture the problem and write a PRD
Start with a problem statement and generate a structured PRD.
TemplatePRD Generator - Open
Break the PRD into user stories
Generate INVEST-compliant user stories with Gherkin acceptance criteria.
TemplateUser Story Generator from PRD - Open
Create Jira tickets for the stories
Use the Jira skill to bulk-create tickets and link them to an epic.
SkillJira Ticket Manager Skill - Open
Make key architecture decisions
Document database choice, hosting, auth approach as ADRs.
TemplateArchitecture Decision Record (ADR) Generator - Open
Design the database schema
Generate the Postgres schema with migrations from the domain model.
TemplatePostgreSQL Schema Designer - Open
Scaffold the API
Generate REST endpoints for each resource with validation and OpenAPI docs.
TemplateREST API Scaffolder (Node.js) - Open
Build the frontend pages
Scaffold each page with proper RSC/client boundaries.
TemplateNext.js Page + Component Scaffolder - Open
Self-review your code
Run the code review prompt before opening PRs.
TemplateComprehensive Code Review - Open
Containerize and ship
Generate a production Dockerfile and deploy.
TemplateProduction Dockerfile Generator