Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
yoanbernabeu avatar

Supabase Help

  • 346 installs
  • 60 repo stars
  • Updated January 31, 2026
  • yoanbernabeu/supabase-pentest-skills

supabase-help is a Claude Code security skill that indexes all 24 Supabase pentest audit skills, maps commands like /supabase-pentest and /supabase-detect, and provides usage examples for Supabase application security te

About

supabase-help is the entry-point skill in yoanbernabeu/supabase-pentest-skills, a collection of 24 Supabase security audit skills. It gives developers a quick reference to every audit skill, command overview, and usage examples when planning or running Supabase penetration tests. Quick-start commands include /supabase-pentest for a full guided audit, /supabase-detect to verify whether an app uses Supabase, and /supabase-report to generate findings from a prior run. Developers reach for supabase-help when they need to pick the right audit skill from the suite or learn command syntax before testing a Supabase-backed SaaS or API. The skill orchestrates the broader pentest workflow rather than executing a single deep check itself.

  • Quick reference for all 24 Supabase security audit skills
  • Identifies the right skill for any specific audit task
  • Shows usage examples for common audit scenarios
  • /supabase-pentest [URL] launches a full guided audit
  • /supabase-detect [URL] identifies Supabase implementation in a target

Supabase Help by the numbers

  • 346 all-time installs (skills.sh)
  • +13 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #586 of 2,203 Security skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/yoanbernabeu/supabase-pentest-skills --skill supabase-help

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs346
repo stars60
Last updatedJanuary 31, 2026
Repositoryyoanbernabeu/supabase-pentest-skills

How do you run a Supabase security audit?

Get a quick reference for all 24 Supabase security audit skills, identify the right skill for a specific audit task, and access usage examples for Supabase penetration testing.

Who is it for?

Developers starting Supabase penetration testing who need a command index and skill picker across the 24-audit skill collection.

Skip if: Developers not using Supabase or who already know the exact audit skill and command without needing the suite overview.

When should I use this skill?

A user asks which Supabase pentest skill to use, wants an overview of audit commands, or needs examples for /supabase-pentest or /supabase-detect.

What you get

Selected audit skill references, command cheat sheets, and guided /supabase-pentest or /supabase-report outputs from the 24-skill suite.

  • Audit skill index
  • Command usage examples
  • Pentest workflow guidance

By the numbers

  • References 24 Supabase security audit skills in the pentest collection

Files

SKILL.mdMarkdownGitHub ↗

Supabase Pentest Skills Help

Quick reference for all 24 security audit skills.

When to Use This Skill

  • Need a quick overview of available skills
  • Looking for the right skill for a specific task
  • Want usage examples for a particular skill

Quick Start

# Full guided audit
/supabase-pentest https://myapp.example.com

# Check if app uses Supabase
/supabase-detect https://myapp.example.com

# Generate report from previous audit
/supabase-report

All Skills Reference

Orchestration

SkillCommandPurpose
supabase-pentest/supabase-pentest <url>Full guided security audit
supabase-evidence/supabase-evidenceInitialize evidence collection
supabase-help/supabase-helpThis help reference

Detection

SkillCommandPurpose
supabase-detect/supabase-detect <url>Detect Supabase usage

Extraction

SkillCommandPurpose
supabase-extract-url/supabase-extract-url <url>Find Supabase project URL
supabase-extract-anon-key/supabase-extract-anon-keyExtract anon API key
supabase-extract-service-key/supabase-extract-service-keyFind leaked service key
supabase-extract-jwt/supabase-extract-jwtExtract JWTs from code
supabase-extract-db-string/supabase-extract-db-stringFind DB connection strings

API Audit

SkillCommandPurpose
supabase-audit-tables-list/supabase-audit-tables-listList exposed tables
supabase-audit-tables-read/supabase-audit-tables-readRead table data
supabase-audit-rls/supabase-audit-rlsTest RLS policies
supabase-audit-rpc/supabase-audit-rpcTest RPC functions

Storage Audit

SkillCommandPurpose
supabase-audit-buckets-list/supabase-audit-buckets-listList storage buckets
supabase-audit-buckets-read/supabase-audit-buckets-readRead bucket files
supabase-audit-buckets-public/supabase-audit-buckets-publicFind public buckets

Auth Audit

SkillCommandPurpose
supabase-audit-auth-config/supabase-audit-auth-configCheck auth settings
supabase-audit-auth-signup/supabase-audit-auth-signupTest signup access
supabase-audit-auth-users/supabase-audit-auth-usersTest user enumeration
supabase-audit-authenticated/supabase-audit-authenticatedCreate test user to detect IDOR

Realtime & Functions

SkillCommandPurpose
supabase-audit-realtime/supabase-audit-realtimeTest Realtime channels
supabase-audit-functions/supabase-audit-functionsTest Edge Functions

Reporting

SkillCommandPurpose
supabase-report/supabase-reportGenerate Markdown report
supabase-report-compare/supabase-report-compare <old> <new>Compare two reports

Severity Levels

LevelColorDescription
P0🔴Critical: data exposure, user data, privilege escalation
P1🟠High: sensitive data, security misconfiguration
P2🟡Medium: minor exposure, best practice violations

Common Workflows

Quick Security Check

1. /supabase-detect https://myapp.com
2. /supabase-extract-anon-key
3. /supabase-audit-rls
4. /supabase-report

Full Audit

1. /supabase-pentest https://myapp.com
   (Follow guided prompts through all phases)

Storage-Only Audit

1. /supabase-detect https://myapp.com
2. /supabase-audit-buckets-list
3. /supabase-audit-buckets-public
4. /supabase-report

Compare After Fixes

1. Copy previous report to reports/audit-v1.md
2. Run new audit: /supabase-pentest https://myapp.com
3. /supabase-report-compare reports/audit-v1.md supabase-audit-report.md

Files and Directories Created

File/DirectoryDescription
.sb-pentest-context.jsonShared context between skills
.sb-pentest-audit.logAction log with timestamps
.sb-pentest-evidence/Evidence directory for professional audits
supabase-audit-report.mdFinal security report

Evidence Directory Structure

.sb-pentest-evidence/
├── README.md                 # Evidence index
├── curl-commands.sh          # Reproducible commands
├── timeline.md               # Chronological findings
├── 01-detection/             # Detection evidence
├── 02-extraction/            # Key extraction evidence
├── 03-api-audit/             # API audit evidence
├── 04-storage-audit/         # Storage audit evidence
├── 05-auth-audit/            # Auth audit evidence
├── 06-realtime-audit/        # Realtime audit evidence
├── 07-functions-audit/       # Functions audit evidence
└── screenshots/              # Optional screenshots

Tips

1. Always run detection first — Most skills auto-invoke it, but it's faster to run explicitly 2. Check the context file — If a skill behaves unexpectedly, the context may have stale data 3. Use the orchestrator for full audits — It handles dependencies automatically 4. Save reports with dates — Rename supabase-audit-report.md to include the date for history

Need More Help?

  • Each skill has detailed documentation — run /supabase-<skill-name> for specifics
  • Check the README at the repository root
  • Open an issue on GitHub for bugs or feature requests

Related skills

How it compares

Pick supabase-help to choose among the 24 audit skills; invoke a specific audit skill when the exact vulnerability class is already known.

FAQ

How many skills does supabase-help reference?

supabase-help references all 24 Supabase security audit skills in yoanbernabeu/supabase-pentest-skills. The skill provides command overviews, usage examples, and guidance for picking the right audit task.

What commands does supabase-help document?

supabase-help documents /supabase-pentest for a full guided audit, /supabase-detect to check if a URL uses Supabase, and /supabase-report to generate output from a completed audit run.

Securityauditappsec

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.