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 andresquirogadev/skillsense --skill supabasegit clone --depth 1 https://github.com/andresquirogadev/skillsenseWrote 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/andresquirogadev/skillsense/supabase)<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/supabase"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/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/andresquirogadev/skillsense/supabase"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/supabase.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.00000 | $0.00596 |
| Opus 5 | $0.00000 | $0.00298 |
| Sonnet 5 | $0.00000 | $0.00119 |
| Haiku 4.5 | $0.00000 | $0.00060 |
Grade A, and why
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 9d 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 — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Supabase Skill
You are working with Supabase. Apply these conventions.
Client Setup
- Use
@supabase/ssrfor Next.js / SvelteKit / Nuxt — it handles cookies for SSR auth automatically. - Create a server client in Server Components / Route Handlers.
Next.js 15+ / 16:
cookies()is async — alwaysawaitit:import { createServerClient } from '@supabase/ssr'; import { cookies } from 'next/headers'; export async function createClient() { const cookieStore = await cookies(); return createServerClient(process.env.NEXT_PUBLIC_SUPABASE_URL!, process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!, { cookies: { getAll: () => cookieStore.getAll(), setAll: (cs) => cs.forEach(({ name, value, options }) => cookieStore.set(name, value, options)), }, }); } - Never import the browser client in Server Components — always use the server client.
Authentication
- Use
supabase.auth.signInWithOAuth(),signInWithPassword(), orsignInWithOTP(). - Protect routes with middleware: check
supabase.auth.getUser()inmiddleware.ts. Never trust cookies alone. - Always call
supabase.auth.getUser()(notgetSession()) on the server —getUser()revalidates the JWT with the Auth server.
Row Level Security (RLS)
- Always enable RLS on tables:
ALTER TABLE posts ENABLE ROW LEVEL SECURITY; - Write explicit policies for each operation (SELECT, INSERT, UPDATE, DELETE).
- Use
auth.uid()inside policies to scope rows to the current user. - Test policies with the Supabase Dashboard SQL editor using
SET LOCAL role = authenticated; SET LOCAL request.jwt.claims.sub = 'uuid';.
Database Operations
- Use the Supabase client for simple CRUD from the client:
supabase.from('posts').select('*').eq('user_id', userId). - For complex queries, call Postgres functions via RPC:
supabase.rpc('my_function', { param: value }). - Use the generated TypeScript types:
supabase gen types typescript --project-id <id> > types/database.ts.
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.
- 9d ago First seen · 53 lines · 0 tokens per session scan A c1b6ab53eb77
supabase is a skill published in the GitHub repository andresquirogadev/skillsense (2 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 596 tokens. 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-31.
Other skills, from other repositories
solr-extending
To build Solr plugins: SearchComponent, QParser, URP, DocTransformer.
patterns
This skill should be used when the user asks to "create an API endpoint", "add CRUD operations", "implement event handlers", "set up logging", "add configuration", or builds features involving database operations, REST/GraphQL APIs, pub/sub patterns, or service configuration. Provides implementation patterns that…
bullmq-specialist
BullMQ expert for Redis-backed job queues, background processing, and reliable async execution in Node.js/TypeScript applications. Use when: bullmq, bull queue, redis queue, background job, job queue.
drizzle-orm-d1
Type-safe ORM for Cloudflare D1 using Drizzle. Use when building D1 schemas, writing type-safe queries, generating migrations with Drizzle Kit, defining relations, using db.batch, or hitting D1ERROR, BEGIN TRANSACTION failures, foreign key constraints, env.DB undefined, or schema inference issues.
printing-press-amend
Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…
rework-rate
Measure and interpret PR rework rate — the emerging 5th DORA metric.