Agent Skills
› composio-community/awesome-agent-clis
› Supabase CLI
Supabase CLI
GitHub管理Supabase项目的Postgres数据库、认证、边缘函数和存储,支持本地开发环境启动、数据库迁移生成与部署及类型生成。
Trigger Scenarios
需要管理Supabase数据库结构或运行迁移
需要部署边缘函数或配置本地Supabase开发环境
Install
npx skills add composio-community/awesome-agent-clis --skill Supabase CLI -g -y
SKILL.md
Frontmatter
{
"name": "Supabase CLI",
"description": "Manage Postgres databases, auth, edge functions, storage, and local dev environments. Use when an agent needs to manage Supabase projects, run database migrations, deploy edge functions, or start a local Supabase stack."
}
Supabase CLI
Manage Postgres databases, auth, edge functions, and storage.
Installation
npx supabase --help
Key Commands
npx supabase init
npx supabase start # local dev stack
npx supabase db push # apply migrations
npx supabase db diff --schema public # generate migration
npx supabase functions deploy my-func
npx supabase gen types typescript --local
npx supabase migration new my_change
npx supabase db reset
npx supabase link --project-ref <ref>
npx supabase secrets set KEY=value
Agent-Friendly Features
- Local development with
supabase start - Database diffing and migration generation
- TypeScript type generation from schema
- Edge function deployment
- Token auth via
SUPABASE_ACCESS_TOKEN
Version History
- 9f765d2 Current 2026-07-24 16:04


