SaaS Scaffolder
Generate complete, production-ready SaaS projects from a product brief.
$skillfish add ~skills/saas-scaffolder What This Skill Can Do
Concrete capabilities you get when you install this skill.
Scaffold production-ready SaaS projects with auth, billing, and multi-tenancy
Generate multi-tenant database schemas with row-level security policies
Integrate Stripe subscriptions, webhooks, and billing portal flows
Configure authentication with Supabase, Clerk, or Auth0
Set up CI/CD pipelines and deployment infrastructure (Vercel, Railway, AWS)
Create environment configuration, secrets management, and local dev setup
Real Conversations
See how the SaaS Scaffolder skill responds to actual requests. These are representative examples of what your AI agent will produce.
I want to build a project management SaaS for construction companies. Features: project tracking, subcontractor management, document uploads, invoicing. Stack preference: Next.js, Supabase, Stripe. Generate the full scaffold.
ConstructPM — SaaS Scaffold
Stack: Next.js 14 (App Router) + Supabase (Postgres + Auth + Storage) + Stripe + shadcn/ui
Directory structure:
constructpm/
├── app/
│ ├── (auth)/login, signup, callback
│ ├── (dashboard)/
│ │ ├── projects/[id]/
│ │ ├── subcontractors/
│ │ ├── documents/
│ │ └── invoices/
│ └── api/
│ ├── webhooks/stripe/
│ └── upload/
├── components/ui/ # shadcn components
├── lib/
│ ├── supabase/server.ts, client.ts
│ ├── stripe.ts
│ └── types.ts
└── supabase/migrations/
Core DB schema (Supabase migrations):
create table projects (
id uuid primary key default gen_random_uuid(),
org_id uuid references organizations(id),
name text not null,
status text default 'active',
created_at timestamptz default now()
);
create table subcontractors (
id uuid primary key default gen_random_uuid(),
org_id uuid references organizations(id),
name text, email text, trade text,
stripe_account_id text
);
create table documents (
id uuid primary key default gen_random_uuid(),
project_id uuid references projects(id),
file_path text,
uploaded_by uuid references auth.users(id)
);
Row-Level Security: Every table scoped to org_id via Supabase RLS policies.
Stripe setup: Subscription billing (monthly/annual) + Connect for subcontractor payouts.
Shall I generate the full Next.js auth flow, the Supabase RLS policies, and the Stripe webhook handler?
Get Started
How to install and use this skill in your preferred environment.
Skills are designed for AI coding agents (Claude Code, Cursor, Windsurf) and IDE-based workflows where the agent can read files, run scripts, and act on your codebase. Web-based AI can use the knowledge and frameworks, but won't have tool access.
Models & Context
Which AI models and context windows work best with this skill.
Recommended Models
Larger models produce more detailed, production-ready outputs.
Context Window
This skill's SKILL.md is typically 3–10 KB — fits in any modern context window.
All current frontier models (Claude, GPT, Gemini) support 100K+ context. Use the full window for complex multi-service work.
Pro tips for best results
Be specific
Include numbers — users, budget, RPS — so the skill can size the architecture.
Share constraints
Compliance needs, team size, and existing stack all improve the output.
Iterate
Start with a high-level design, then ask follow-ups for IaC, cost analysis, or security review.
Combine skills
Pair with companion skills below for end-to-end coverage.
Ready to try SaaS Scaffolder?
Install the skill and start getting expert-level guidance in your workflow — any agent, any IDE.
$skillfish add ~skills/saas-scaffolder