ワンクリックで
supabase-docs
Search and read Supabase documentation using a bash shell. Use when working on a Supabase feature or troubleshooting a problem.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search and read Supabase documentation using a bash shell. Use when working on a Supabase feature or troubleshooting a problem.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Inspect a user's deck state by fetching their events from Supabase and replaying them. Run with an email address (e.g. /inspect-user user@example.com). Use when the user wants to see a specific user's card state, goal progress, or next-cards-to-add.
Fix a Wiktionary morphology parsing issue for a specific verb or word. The user describes the problem (e.g. missing conjugation form), and this skill walks through the standard workflow to diagnose and fix it. Run with a description of the issue (e.g. /fix-wiktionary-morphology "boire missing second person singular").
Clean up quarantined movie subtitle files by fixing OCR errors, encoding issues, and merging split sentences. Run with a language code argument (e.g. /fix-quarantine fra). Use when the user wants to fix or clean quarantined subtitles.
| name | supabase-docs |
| description | Search and read Supabase documentation using a bash shell. Use when working on a Supabase feature or troubleshooting a problem. |
Search and read Supabase documentation over SSH.
# Search for a topic
ssh supabase.sh grep -rl 'auth' /supabase/docs/
# Read a specific guide
ssh supabase.sh cat /supabase/docs/guides/auth/passwords.md
# Find all guides in a section
ssh supabase.sh find /supabase/docs/guides/database -name '*.md'
# Search with context
ssh supabase.sh grep -r 'RLS' /supabase/docs/guides/auth --include='*.md' -l
All docs live under /supabase/docs/ as markdown files. You can use any standard Unix tools (grep, find, cat, etc.) to search and read them.