— No reviews yet
0 installs
13 views
0.0% view→install
Install
$ agentstack add skill-rahmanef63-si-coder-agent-sc-supabase ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Sc Supabase? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
/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 - Project creation returns a DB password ONCE — capture and write to
~/.bashrcimmediately asSUPABASE_DB_PASSWORD_. - For migrations, the
supabaseCLI may be required as a sub-process — wrap it inlib/supabase.js(TODO).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: rahmanef63
- Source: rahmanef63/si-coder-agent
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.