/database
Use this skill when the user needs to choose a database, design a schema, set up Supabase or another database, write queries, handle migrations, or fix data-related issues. Covers database selection, schema design, Row Level Security, migrations, and common patterns for SaaS
$ npx -y skills add whawkinsiv/claude-code-superpowers --skill database --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/database
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use this skill when the user needs to choose a database, design a schema, set up Supabase or another database, write queries, handle migrations, or fix data-related issues. Covers database selection, schema design, Row Level Security, migrations, and common patterns for SaaS
SKILL.md
database.SKILL.mdname: database
description: "Use this skill when the user needs to choose a database, design a schema, set up Supabase or another database, write queries, handle migrations, or fix data-related issues. Covers database selection, schema design, Row Level Security, migrations, and common patterns for SaaS apps built by non-technical founders."
Database & Data Modeling
Every SaaS app needs a database, and the schema decisions you make early are expensive to change later. This skill helps you choose the right database, design a clean schema, and set up security — explained without jargon.
Core Principles
- Choose the database that matches your hosting platform. Don't fight the defaults.
- Schema design is product design. Get the relationships right early — migrations are painful later.
- Every SaaS app is multi-tenant. Every table needs a way to isolate customer data.
- Start simple. You don't need Redis, Elasticsearch, or a data warehouse at $0-10k MRR.
- Row Level Security is not optional. One leaked customer seeing another's data kills trust.
Choosing a Database
For Most Solo Founders: Use What Your Platform Gives You
| Building With | Default Database | Use It? | |--------------|-----------------|---------| | Supabase | PostgreSQL (built-in) | Yes — best option for most SaaS | | Vercel + Prisma | Supabase, Neon, or PlanetScale | Yes — pick one, stick with it | | Lovable | Supabase (integrated) | Yes — don't fight the integration | | Replit | SQLite or Supabase | Supabase for production SaaS | | Railway | PostgreSQL | Yes | | Firebase | Firestore | Yes, if you're already in Google ecosystem |
**The short answer:** Use Supabase (PostgreSQL) unless you have a specific reason not to. It gives you database + auth + storage + realtime + Row Level Security in one service.
When You Might Need Something Else
| Need | Consider | |------|---------| | Full-text search | Supabase has built-in text search. Only add Algolia/Typesense if it's not enough | | Caching | Start without it. Add Upstash Redis only when you have measurable latency issues | | File storage | Supabase Storage, Cloudflare R2, or S3 | | Analytics/reporting | Supabase views or materialized views first. Data warehouse later (post-$10k MRR) |
---
Schema Design for SaaS
The Three Tables Every SaaS Needs
-- 1. Users (who uses the app)
create table users (
id uuid primary key default gen_random_uuid(),
email text unique not null,
full_name text,
avatar_url text,
created_at timestamptz default now(),
updated_at timestamptz default now()
);
-- 2. Organizations / Teams (multi-tenancy)
create table organizations (
id uuid primary key default gen_random_uuid(),
name text not null,
slug text unique not null,
plan text default 'free',
stripe_customer_id text,
created_at timestamptz default now(),
updated_at timestamptz default now()
);
-- 3. Memberships (who belongs to which org)
create table memberships (
id uuid primary key default gen_random_uuid(),
user_id uuid references users(id) on delete cascade,
org_id uuid references organizations(id) on delete cascade,
role text default 'member' check (role in ('owner', 'admin', 'member')),
created_at timestamptz default now(),
unique(user_id, org_id)
);Adding Your Core Business Object
Every SaaS has a "main thing" — projects, campaigns, invoices, etc. Connect it to the org:
create table [your_core_object] (
id uuid primary key default gen_random_uuid(),
org_id uuid references organizations(id) on delete cascade not null,
created_by uuid references users(id),
-- your fields here
name text not null,
status text default 'active',
created_at timestamptz default now(),
updated_at timestamptz default now()
);
-- Always index the org_id for multi-tenant queries
create index idx_[object]_org_id on [your_core_object](org_id);
**Tell AI:**
Design a database schema for [describe your SaaS product].
The main objects are: [list your core objects].
Users belong to organizations. Each org has its own data.
Use Supabase (PostgreSQL). Include:
- Table definitions with proper types and constraints
- Foreign key relationships
- Indexes for common queries
- Row Level Security policies
---
Row Level Security (RLS)
RLS ensures users can only see their own organization's data. This is critical for SaaS.
Basic Pattern
-- Enable RLS on every table with customer data
alter table [your_table] enable row level security;
-- Users can only see rows belonging to their org
create policy "Users see own org data"
on [your_table]
for select
using (
org_id in (
select org_id from memberships
where user_id = auth.uid()
)
);
-- Users can only insert into their own org
create policy "Users insert own org data"
on [your_table]
for insert
with check (
org_id in (
select org_id from memberships
where user_id = auth.uid()
)
);RLS Checklist
For every table that contains customer data:
- [ ] RLS is enabled
- [ ] SELECT policy restricts to user's org
- [ ] INSERT policy restricts to user's org
- [ ] UPDATE policy restricts to user's org
- [ ] DELETE policy restricts to user's org (or is blocked)
- [ ] Tested: User A cannot see User B's data
---
Migrations
What Migrations Are
Database migrations are version-controlled changes to your schema. Like git for your database structure.
Best Practices
- **Never edit production tables directly.** Always use a migration.
- **Each migration does one thing.** "Add status column to projects" not "Restructure everything."
- **Migrations are forward-only.** Don't delete old migrations. Add new ones.
- **Test on a branch database first.** Supabase has database branching for this.
**Tell AI:**
Write a Supabase migration to [describe the change].
Current table structure: [describe or paste current schema].
Include: the SQL migration and any RLS policy updates
Read more
name: database description: "Use this skill when the user needs to choose a database, design a schema, set up Supabase or another database, write queries, handle migrations, or fix data-related issues. Covers database selection, schema design, Row Level Security, migrations, and common patterns for SaaS apps built by non-technical founders."
Database & Data Modeling
Every SaaS app needs a database, and the schema decisions you make early are expensive to change later. This skill helps you choose the right database, design a clean schema, and set up security — explained without jargon.
Core Principles
- Choose the database that matches your hosting platform. Don't fight the defaults.
- Schema design is product design. Get the relationships right early — migrations are painful later.
- Every SaaS app is multi-tenant. Every table needs a way to isolate customer data.
- Start simple. You don't need Redis, Elasticsearch, or a data warehouse at $0-10k MRR.
- Row Level Security is not optional. One leaked customer seeing another's data kills trust.
Choosing a Database
For Most Solo Founders: Use What Your Platform Gives You
| Building With | Default Database | Use It? | |--------------|-----------------|---------| | Supabase | PostgreSQL (built-in) | Yes — best option for most SaaS | | Vercel + Prisma | Supabase, Neon, or PlanetScale | Yes — pick one, stick with it | | Lovable | Supabase (integrated) | Yes — don't fight the integration | | Replit | SQLite or Supabase | Supabase for production SaaS | | Railway | PostgreSQL | Yes | | Firebase | Firestore | Yes, if you're already in Google ecosystem |
**The short answer:** Use Supabase (PostgreSQL) unless you have a specific reason not to. It gives you database + auth + storage + realtime + Row Level Security in one service.
When You Might Need Something Else
| Need | Consider | |------|---------| | Full-text search | Supabase has built-in text search. Only add Algolia/Typesense if it's not enough | | Caching | Start without it. Add Upstash Redis only when you have measurable latency issues | | File storage | Supabase Storage, Cloudflare R2, or S3 | | Analytics/reporting | Supabase views or materialized views first. Data warehouse later (post-$10k MRR) |
---
Schema Design for SaaS
The Three Tables Every SaaS Needs
-- 1. Users (who uses the app)
create table users (
id uuid primary key default gen_random_uuid(),
email text unique not null,
full_name text,
avatar_url text,
created_at timestamptz default now(),
updated_at timestamptz default now()
);
-- 2. Organizations / Teams (multi-tenancy)
create table organizations (
id uuid primary key default gen_random_uuid(),
name text not null,
slug text unique not null,
plan text default 'free',
stripe_customer_id text,
created_at timestamptz default now(),
updated_at timestamptz default now()
);
-- 3. Memberships (who belongs to which org)
create table memberships (
id uuid primary key default gen_random_uuid(),
user_id uuid references users(id) on delete cascade,
org_id uuid references organizations(id) on delete cascade,
role text default 'member' check (role in ('owner', 'admin', 'member')),
created_at timestamptz default now(),
unique(user_id, org_id)
);Adding Your Core Business Object
Every SaaS has a "main thing" — projects, campaigns, invoices, etc. Connect it to the org:
create table [your_core_object] ( id uuid primary key default gen_random_uuid(), org_id uuid references organizations(id) on delete cascade not null, created_by uuid references users(id), -- your fields here name text not null, status text default 'active', created_at timestamptz default now(), updated_at timestamptz default now() ); -- Always index the org_id for multi-tenant queries create index idx_[object]_org_id on [your_core_object](org_id);
**Tell AI:**
Design a database schema for [describe your SaaS product]. The main objects are: [list your core objects]. Users belong to organizations. Each org has its own data. Use Supabase (PostgreSQL). Include: - Table definitions with proper types and constraints - Foreign key relationships - Indexes for common queries - Row Level Security policies
---
Row Level Security (RLS)
RLS ensures users can only see their own organization's data. This is critical for SaaS.
Basic Pattern
-- Enable RLS on every table with customer data
alter table [your_table] enable row level security;
-- Users can only see rows belonging to their org
create policy "Users see own org data"
on [your_table]
for select
using (
org_id in (
select org_id from memberships
where user_id = auth.uid()
)
);
-- Users can only insert into their own org
create policy "Users insert own org data"
on [your_table]
for insert
with check (
org_id in (
select org_id from memberships
where user_id = auth.uid()
)
);RLS Checklist
For every table that contains customer data: - [ ] RLS is enabled - [ ] SELECT policy restricts to user's org - [ ] INSERT policy restricts to user's org - [ ] UPDATE policy restricts to user's org - [ ] DELETE policy restricts to user's org (or is blocked) - [ ] Tested: User A cannot see User B's data
---
Migrations
What Migrations Are
Database migrations are version-controlled changes to your schema. Like git for your database structure.
Best Practices
- **Never edit production tables directly.** Always use a migration.
- **Each migration does one thing.** "Add status column to projects" not "Restructure everything."
- **Migrations are forward-only.** Don't delete old migrations. Add new ones.
- **Test on a branch database first.** Supabase has database branching for this.
**Tell AI:**
Write a Supabase migration to [describe the change]. Current table structure: [describe or paste current schema]. Include: the SQL migration and any RLS policy updates
43 expert skills for non-technical founders building SaaS with AI tools (Claude Code, Lovable, Replit, Cursor). Covers the full lifecycle of planning, building, launching, and growing a software business — actionable guides, checklists, and copy-paste prompts.
Other skills on solo-founder-superpowers.
- /about-me
Use this skill when the user wants to create a founder profile, establish their personal voice for content, or set up context so other skills produce personalized output instead of generic AI copy. Also use when the user says 'set up my voice,' 'create my profile,' 'who am I,'
Open skill - /accounting
Use this skill when the user needs to set up bookkeeping, track revenue and expenses, prepare for taxes, choose accounting software, understand SaaS revenue recognition, or manage the financial operations of their bootstrapped business. Covers bookkeeping setup, tax preparation,
Open skill - /ads
Use this skill when the user needs to run Google Ads, write ad copy, select keywords, optimize CAC/LTV, or manage a small paid acquisition budget. Covers Google Ads strategy, keyword selection, ad copywriting, and conversion tracking for bootstrapped SaaS.
Open skill - /ai-features
Use this skill when the user needs to add AI-powered features to their SaaS product, integrate LLM APIs, build AI assistants, implement RAG, or use AI to differentiate their product. Covers API selection, prompt engineering for product features, cost management, and building AI
Open skill - /analytics
Use this skill when the user needs to set up analytics, design event tracking, define key metrics, build funnels, or instrument their SaaS product for data-driven decisions. Covers event naming conventions, tracking strategy, funnel analytics, and data quality.
Open skill - /beautify
Use this skill when the user wants to make their app look better, says it looks like a template, asks how to achieve Stripe/Linear quality, or says something looks off. Covers visual hierarchy, whitespace, composition, color application, and typography in practice.
Open skill

