Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add chadixearth/graphyloop --skill supabase-setupgit clone --depth 1 https://github.com/chadixearth/graphyloopWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/chadixearth/graphyloop/supabase-setup)<a href="https://agentmods.dev/skills/chadixearth/graphyloop/supabase-setup"><img src="https://agentmods.dev/badge/skills/chadixearth/graphyloop/supabase-setup/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/chadixearth/graphyloop/supabase-setup"><img src="https://agentmods.dev/badge/skills/chadixearth/graphyloop/supabase-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00062 | $0.00957 |
| Opus 5 | $0.00031 | $0.00478 |
| Sonnet 5 | $0.00012 | $0.00191 |
| Haiku 4.5 | $0.00006 | $0.00096 |
Grade A, and why
supabase-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Supabase setup and schema changes
Two failures dominate Supabase work: a table shipped with row-level security off (every row readable by anyone holding the anon key), and a schema change made in the dashboard so it exists in production and nowhere in the repo. The order below prevents both.
When to activate
- Adding or changing tables, columns, constraints, indexes, policies.
- Wiring an app to Supabase for the first time.
- "the query returns nothing" / "permission denied for table" symptoms.
Order of operations
- Credentials first.
secrets_status→ store what is missing withsecrets_set→env_sync. Never paste a key into the chat (seesecrets-hygiene).SUPABASE_URL,SUPABASE_ANON_KEY— client-side, public.SUPABASE_SERVICE_ROLE_KEY— server-only, bypasses RLS.SUPABASE_PROJECT_REF/SUPABASE_ACCESS_TOKEN/SUPABASE_DB_URL— CLI + migrations.
preflight target=db. Clear every blocker before touching the database.- Schema as migration files, never dashboard edits.
supabase migration new <name>, orsupabase db diff --file <name>to capture drift that already happened. A dashboard-only change cannot be reviewed, replayed on a teammate's machine, or rolled back. - Table and its policies in the SAME migration. A table without a policy is either fully closed or fully open — never leave that to a follow-up.
- Dry-run, then apply.
supabase db push --dry-runand read the SQL. Apply to a hosted database only with explicit user approval and a rollback note. - Regenerate types.
supabase gen types typescript --linkedso the backend/frontend contract stays type-checked. - Seed realistic data. Idempotent seed script (upsert), a few rows per table, so tests and manual checks have something to read.
Schema rules
- Primary key on every table (
id uuid primary key default gen_random_uuid()is a fine default).created_at/updated_atastimestamptz. - Foreign keys with an explicit
on deletechoice — cascade / restrict / set null is a product decision, not a default. - Index every column you filter, join or sort on. The referencing side of a foreign key is NOT indexed automatically.
numericfor money, neverfloat.checkconstraints or a real enum type for fixed sets. Prefernot nullwith a default over a nullable column every reader must handle.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 78 lines · 62 tokens per session scan A 6ba35141c80f
supabase-setup is a skill published in the GitHub repository chadixearth/graphyloop (2 stars, last pushed 23d ago), licensed MIT. It adds 62 tokens to every session and 957 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
kirby-content-migration
Plans and applies safe Kirby content migrations using runtime content tools, update schemas, and explicit confirmation. Use when users need to rename/move/transform fields, clean up content, or bulk-update pages/files across languages.
ship-safe-scan
Quick scan for leaked secrets — API keys, passwords, tokens, database URLs. Use when the user wants to check for hardcoded secrets or exposed credentials.
backend-development
Backend API design, database architecture, microservices patterns, and test-driven development. Use for designing APIs, database schemas, or backend system architecture.
database-connections
Connect a Mendix app to an external database over JDBC with the External Database Connector, and define the queries microflows run against it. Use when the app must read or write Oracle, PostgreSQL, MySQL or SQL Server directly from a microflow.
connect-rapidminer-graph
Fetch data from a RapidMiner graph mart or any SPARQL 1.1 HTTP endpoint (AnzoGraph and friends) and surface it as Mendix entities. Use when a graph database with a SPARQL endpoint has to feed a Mendix app read-only.
mendix-odata-pushdown
Push OData query options into the SQL of a Mendix resource served by a read microflow, so $filter, $orderby, $top, $skip, $count and the key lookup reach the database instead of being silently dropped. Use when publishing an OData resource over data Mendix has no table for — a warehouse view, a legacy database, a…