بنقرة واحدة
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 المهني
| 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))
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.