원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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.
SOC 직업 분류 기준
| 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.