[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-74895":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":25,"hasPages":23,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":30,"readmeContent":31,"aiSummary":32,"trendingCount":16,"starSnapshotCount":16,"syncStatus":33,"lastSyncTime":34,"discoverSource":35},74895,"agent-skills","supabase\u002Fagent-skills","supabase","Agent Skills to help developers using AI agents with Supabase","https:\u002F\u002Fsupabase.com\u002Fdocs\u002Fguides\u002Fgetting-started\u002Fai-skills",null,"TypeScript",2224,155,12,13,0,22,46,151,66,28.58,"MIT License",false,"main",true,[27,28,29,7],"ai","ai-agents","skills","2026-06-12 02:03:29","![Supabase Agent Skills](assets\u002Fog.png)\n\n# Supabase Agent Skills\n\nAgent Skills to help developers using AI agents with Supabase. Agent Skills are\nfolders of instructions, scripts, and resources that agents can discover and use\nto do things more accurately and efficiently. Compatible with 18+ AI agents\nincluding Claude Code, GitHub Copilot, Cursor, Cline, and many others.\n\nThe skills in this repo follow the [Agent Skills](https:\u002F\u002Fagentskills.io\u002F)\nformat.\n\n## Installation\n\nSee the [Supabase AI Skills documentation](https:\u002F\u002Fsupabase.com\u002Fdocs\u002Fguides\u002Fgetting-started\u002Fai-skills)\nfor detailed installation instructions.\n\n### Install all skills\n\n```bash\nnpx skills add supabase\u002Fagent-skills\n```\n\n### Install a specific skill\n\n```bash\nnpx skills add supabase\u002Fagent-skills --skill supabase\nnpx skills add supabase\u002Fagent-skills --skill supabase-postgres-best-practices\n```\n\n### Claude Code Plugin\n\nYou can also install the skills as Claude Code plugins:\n\n```bash\n# 1. Install supabase\u002Fagent-skill marketplace\nclaude plugin marketplace add supabase\u002Fagent-skills\n\n# 2. Install the plugin that you want \nclaude plugin install supabase@supabase-agent-skills\nclaude plugin install postgres-best-practices@supabase-agent-skills\n```\n\n## Available Skills\n\n\u003Cdetails>\n\u003Csummary>\u003Cstrong>supabase\u003C\u002Fstrong>\u003C\u002Fsummary>\n\nComprehensive Supabase development skill covering all Supabase products and\nintegrations.\n\n**Use when:**\n\n- Working with any Supabase product (Database, Auth, Edge Functions, Realtime,\n  Storage, Vectors, Cron, Queues)\n- Using client libraries and SSR integrations (supabase-js, @supabase\u002Fssr) in\n  Next.js, React, SvelteKit, Astro, Remix\n- Troubleshooting auth issues (login, logout, sessions, JWT, cookies, getSession,\n  getUser, getClaims, RLS)\n- Using the Supabase CLI or MCP server\n- Working with schema changes, migrations, security audits, or Postgres extensions\n  (pg_graphql, pg_cron, pg_vector)\n\n\u003C\u002Fdetails>\n\n\u003Cdetails>\n\u003Csummary>\u003Cstrong>supabase-postgres-best-practices\u003C\u002Fstrong>\u003C\u002Fsummary>\n\nPostgres performance optimization guidelines from Supabase. Contains references\nacross 8 categories, prioritized by impact.\n\n**Use when:**\n\n- Writing SQL queries or designing schemas\n- Implementing indexes or query optimization\n- Reviewing database performance issues\n- Configuring connection pooling or scaling\n- Working with Row-Level Security (RLS)\n\n**Categories covered:**\n\n- Query Performance (Critical)\n- Connection Management (Critical)\n- Schema Design (High)\n- Concurrency & Locking (Medium-High)\n- Security & RLS (Critical)\n- Data Access Patterns (Medium)\n- Monitoring & Diagnostics (Low-Medium)\n- Advanced Features (Low)\n\n\u003C\u002Fdetails>\n\n## Usage\n\nSkills are automatically available once installed. The agent will use them when\nrelevant tasks are detected.\n\n**Examples:**\n\n```\nOptimize this Postgres query\n```\n\n```\nReview my schema for performance issues\n```\n\n```\nHelp me set up Supabase Auth with Next.js\n```\n\n```\nHelp me add proper indexes to this table\n```\n\n## Skill Structure\n\nEach skill follows the [Agent Skills Open Standard](https:\u002F\u002Fagentskills.io\u002F):\n\n- `SKILL.md` - Required skill manifest with frontmatter (name, description, metadata)\n- `references\u002F` - (Optional) Reference files for detailed documentation\n\n## `.well-known` discovery\n\nEach release uploads a `dist\u002Findex.json` alongside the skill tarballs. This index conforms to the [agent-skills `.well-known` URI spec](https:\u002F\u002Fgithub.com\u002Fagentskills\u002Fagentskills\u002Fpull\u002F254) (schema v0.2.0) and is consumed by `supabase.com` to serve skills at `https:\u002F\u002Fsupabase.com\u002F.well-known\u002Fagent-skills\u002F`.\n\nThe release artifacts are built by `scripts\u002Fbuild-release.ts` and triggered by [Release Please](https:\u002F\u002Fgithub.com\u002Fgoogleapis\u002Frelease-please) on every semver release.\n\n### Migrating to the official GitHub Action\n\n[`jonathanhefner\u002Fagentskills-build-for-well-known`](https:\u002F\u002Fgithub.com\u002Fjonathanhefner\u002Fagentskills-build-for-well-known) is intended to be transferred to the `agentskills` org and published to the GitHub Marketplace. When that happens, `scripts\u002Fbuild-release.ts` and the `pnpm build:release` step in `release-please.yml` can be replaced with the Action directly:\n\n```yaml\n- name: Build release artifacts\n  uses: agentskills\u002Fbuild-for-well-known@v1   # replaces pnpm build:release\n  with:\n    skills-dir: skills\n    output-dir: dist\n```\n\nEverything else — the Release Please trigger, the upload step, the supabase-plugin dispatch — stays exactly the same. The script and the Action produce identical output, so it is a drop-in swap.\n","Supabase Agent Skills 是一个旨在帮助开发者通过AI代理更高效准确地使用Supabase的工具集。该项目提供了多个技能包，每个包含一系列指令、脚本和资源，支持超过18种AI代理如Claude Code、GitHub Copilot等。这些技能覆盖了从数据库操作到性能优化等多个方面，特别适用于需要与Supabase产品（如数据库、认证服务）及其集成进行交互或优化Postgres查询性能的场景。项目采用TypeScript编写，并遵循Agent Skills格式标准，易于安装且文档详尽，适合于希望提升开发效率及质量的个人或团队使用。",2,"2026-06-11 03:51:18","high_star"]