rewrite marketplace.json

This commit is contained in:
Pedro Rodrigues
2026-01-21 19:34:28 +00:00
parent 95dd3c3eb7
commit a28867c5ff
3 changed files with 5 additions and 43 deletions

View File

@@ -11,26 +11,12 @@
"plugins": [
{
"name": "postgres-best-practices",
"source": "./skills/postgres-best-practices",
"description": "Postgres performance optimization and best practices. Use when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations.",
"version": "1.0.0",
"author": {
"name": "Supabase"
},
"category": "database",
"keywords": [
"postgres",
"postgresql",
"database",
"sql",
"performance",
"optimization",
"supabase",
"rls",
"indexing"
],
"repository": "https://github.com/supabase/agent-skills",
"license": "MIT"
"source": "./",
"strict": false,
"skills": [
"./skills/postgres-best-practices"
]
}
]
}

View File

@@ -75,7 +75,6 @@ Help me add proper indexes to this table
Each skill contains:
- `.claude-plugin` - Exports the skills as a claude code plugin
- `SKILL.md` - Instructions for the agent
- `AGENTS.md` - Compiled rules document (generated)
- `rules/` - Individual rule files

View File

@@ -1,23 +0,0 @@
{
"name": "postgres-best-practices",
"description": "Postgres performance optimization and best practices from Supabase. Use when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations.",
"version": "1.0.0",
"author": {
"name": "Supabase",
"email": "support@supabase.com"
},
"category": "database",
"keywords": [
"postgres",
"postgresql",
"database",
"sql",
"performance",
"optimization",
"supabase",
"rls",
"indexing"
],
"repository": "https://github.com/supabase/agent-skills",
"license": "MIT"
}