agentsclimarketplace

Sc supabase

Skill rahmanef63/si-coder-agent/skills/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.

Install
npx -y skills add rahmanef63/si-coder-agent --skill sc-supabase

Assembled 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/*.sql in order.
  • Deploy Edge Functions from supabase/functions/.
  • Generate TypeScript types: supabase gen types typescript.
  • Write NEXT_PUBLIC_SUPABASE_URL + NEXT_PUBLIC_SUPABASE_ANON_KEY to project .env.

Env vars

VarPurpose
SUPABASE_ACCESS_TOKENPersonal token, https://supabase.com/dashboard/account/tokens
SUPABASE_ORG_IDOrg 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 ~/.bashrc immediately as SUPABASE_DB_PASSWORD_<projectref>.
  • For migrations, the supabase CLI may be required as a sub-process — wrap it in lib/supabase.js (TODO).

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.