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 andregusman-raiz/a-gusman-claude --skill ag-referencia-supabasegit clone --depth 1 https://github.com/andregusman-raiz/a-gusman-claudeWrote 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/andregusman-raiz/a-gusman-claude/ag-referencia-supabase)<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/ag-referencia-supabase"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-referencia-supabase/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/andregusman-raiz/a-gusman-claude/ag-referencia-supabase"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-referencia-supabase.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00024 | $0.00867 |
| Opus 5 | $0.00012 | $0.00434 |
| Sonnet 5 | $0.00005 | $0.00173 |
| Haiku 4.5 | $0.00002 | $0.00087 |
Grade A, and why
ag-referencia-supabase 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 12d 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 — 131 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: Supabase Patterns
Referencia de patterns para Supabase, PostgreSQL, RLS, e integracao com TypeScript.
Quando Ativar
- Trabalhando com banco de dados Supabase
- Criando migrations
- Configurando RLS
- Definindo schemas com Zod
Zod Schema Pattern
import { z } from 'zod';
export const userSchema = z.object({
id: z.string().uuid(),
email: z.string().email(),
name: z.string().min(1).max(255),
role: z.enum(['superadmin', 'core_team', 'external_agent', 'client']),
created_at: z.string().datetime(),
updated_at: z.string().datetime(),
});
export type User = z.infer<typeof userSchema>;
export const createUserSchema = userSchema.omit({
id: true, created_at: true, updated_at: true,
});
export type CreateUser = z.infer<typeof createUserSchema>;
export const updateUserSchema = createUserSchema.partial();
export type UpdateUser = z.infer<typeof updateUserSchema>;
Repository Pattern
export const userRepository = {
async findById(id: string): Promise<User | null> {
const { data, error } = await supabase
.from('users').select('*').eq('id', id).single();
if (error) throw error;
return data ? userSchema.parse(data) : null;
},
async create(input: CreateUser): Promise<User> {
const { data, error } = await supabase
.from('users').insert(input).select().single();
if (error) throw error;
return userSchema.parse(data);
},
};
RLS (Row Level Security)
Patterns Comuns
-- Usuario ve apenas seus dados
CREATE POLICY "users_own_data" ON public.users
FOR ALL USING (auth.uid() = id);
-- Todos leem, apenas dono edita
CREATE POLICY "posts_read_all" ON public.posts
FOR SELECT USING (true);
CREATE POLICY "posts_write_own" ON public.posts
FOR INSERT WITH CHECK (auth.uid() = author_id);
-- Baseado em role
CREATE POLICY "admin_full_access" ON public.users
FOR ALL USING (
EXISTS (SELECT 1 FROM public.users WHERE id = auth.uid() AND role = 'superadmin')
);
-- Baseado em organizacao
CREATE POLICY "org_members_only" ON public.projects
FOR SELECT USING (
org_id IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid())
);
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.
- 12d ago First seen · 131 lines · 24 tokens per session scan A 93009f002df2
ag-referencia-supabase is a skill published in the GitHub repository andregusman-raiz/a-gusman-claude (19 stars, last pushed 3d ago), licensed MIT. It adds 24 tokens to every session and 867 once invoked, about $0.0001 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-08-30.
Other skills, from other repositories
supabase-node
Express/Hono with Supabase and Drizzle ORM.
ring:mapping-service-resources
Mapping a Go service's Service -> Module -> Resource hierarchy for dispatch-layer registration: detects modules and per-module PostgreSQL/MongoDB/RabbitMQ resources, database names, and shared databases, generates MongoDB index migration pairs (.up.json/.down.json), detects existing Postgres migrations, emits an HTML…
supabase
Use this skill when developing applications with Supabase, running the Supabase CLI, designing migrations and RLS policies, testing database behavior, generating client types, deploying the official self-hosted Docker stack, or administering its Postgres, Auth, Storage, Realtime, Functions, API gateway, backups…
idempotency-patterns
Use when making retried HTTP commands or message processing safe against duplicate effects, including database-backed request keys, payload conflicts and concurrent retries. Do not apply caching as a substitute for business idempotency.
supabase
Supabase provides Postgres database access, authentication, edge functions, and storage. This skill covers the @supabase/supabase-js client and Row Level Security (RLS).
sap-cap-capire
SAP Cloud Application Programming Model (CAP) development skill using Capire documentation. Use when: building CAP applications, defining CDS models, implementing services, working with SAP HANA/SQLite/PostgreSQL databases, deploying to SAP BTP Cloud Foundry or Kyma, implementing Fiori UIs, handling authorization…