Sc supabase
Zero-human full-stack deployment skill bundle for AI agents — GitHub + Dokploy + Convex (self-hosted & Cloud) + Vercel + Hostinger DNS, via modular /sc-* slash commands.
npx -y skills add rahmanef63/si-coder-agent --skill sc-supabaseAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
(STUB / NOT IMPLEMENTED YET) Supabase backend as an alternative to self-hosted Convex. Create project, apply migrations from supabase/migrations, deploy Edge Functions, generate types. For projects where Postgres + Row-Level-Security is a better fit than Convex's reactive query model.
SKILL.md
1.8 KB, as published. Nobody here has run it
/sc-supabase — Supabase (STUB)
Status: boilerplate only.
When to use
- Project needs Postgres (relational, complex joins, mature SQL tooling) more than Convex's reactive model.
- Project wants Supabase Auth's social providers without self-hosting JWKS.
- Project already has Supabase migrations.
Scope when implemented
- Provision a new Supabase project via the Management API.
- Apply
supabase/migrations/*.sqlin order. - Deploy Edge Functions from
supabase/functions/. - Generate TypeScript types:
supabase gen types typescript. - Write
NEXT_PUBLIC_SUPABASE_URL+NEXT_PUBLIC_SUPABASE_ANON_KEYto project.env.
Env vars
| Var | Purpose |
|---|---|
SUPABASE_ACCESS_TOKEN | Personal token, https://supabase.com/dashboard/account/tokens |
SUPABASE_ORG_ID | Org to create projects under |
Suggested file layout
sc-supabase/
├── SKILL.md
└── scripts/
├── project.js # create + capture project ref + db password
├── migrate.js # apply migrations
├── functions.js # deploy edge functions
└── types.js # generate TS types
Implementation notes
- API base:
https://api.supabase.com/v1 - Auth:
Authorization: Bearer <SUPABASE_ACCESS_TOKEN> - Project creation returns a DB password ONCE — capture and write to
~/.bashrcimmediately asSUPABASE_DB_PASSWORD_<projectref>. - For migrations, the
supabaseCLI may be required as a sub-process — wrap it inlib/supabase.js(TODO).