一键导入
supabase
Supabase client tools for the CodeAgent — database CRUD, auth, storage, and edge functions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Supabase client tools for the CodeAgent — database CRUD, auth, storage, and edge functions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Penetration testing tools for the CodeAgent — network scanning, service enumeration, and vulnerability checks
Obsidian Local REST API tools for the CodeAgent — manage vault notes, search, and metadata
Frida dynamic instrumentation tools for the CodeAgent — mobile app analysis and SSL unpinning
DuckDB in-process analytics tools for the CodeAgent — SQL on CSV/Parquet/JSON without a server
OSINT reconnaissance tools for the CodeAgent — domain, IP, email, and social media intelligence
Use BEFORE any creative work — creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements, and design before implementation.
| name | supabase |
| description | Supabase client tools for the CodeAgent — database CRUD, auth, storage, and edge functions |
This skill extends the CodeAgent with Supabase client functions. Interact with Supabase projects directly — query Postgres, manage auth users, upload files to storage, and invoke edge functions.
Set environment variables:
SUPABASE_URL — project URL (e.g. https://xxx.supabase.co)SUPABASE_KEY — anon or service_role keysupa_query(table, select="*", filters=None, limit=100) — query a tablesupa_insert(table, data) — insert row(s)supa_update(table, data, match) — update matching rowssupa_delete(table, match) — delete matching rowssupa_rpc(function_name, params=None) — call a Postgres functionsupa_sql(query) — run raw SQL (requires service_role key)supa_storage_list(bucket) — list files in a storage bucketsupa_storage_upload(bucket, path, file_path) — upload a filesupa_storage_download(bucket, path) — download a file# Query users table
users = supa_query("users", select="id,email,created_at", limit=10)
print(to_json(users))
# Insert a record
result = supa_insert("logs", {"action": "deploy", "status": "ok"})
print(result)
# Call an RPC function
result = supa_rpc("get_active_users", {"since": "2024-01-01"})
print(to_json(result))