mirror of
https://github.com/supabase/agent-skills.git
synced 2026-01-26 19:09:51 +08:00
* refactor: generic skills build system with auto-discovery - Rename postgres-best-practices-build → skills-build - Add auto-discovery: scans skills/ for subdirectories with metadata.json - Build/validate all skills or specific skill with -- argument - Update root AGENTS.md and CONTRIBUTING.md with new structure - No configuration needed to add new skills Usage: npm run build # Build all skills npm run build -- skill-name # Build specific skill npm run validate # Validate all skills Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix ci * more generic impact levels --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
550 B
JSON
21 lines
550 B
JSON
{
|
|
"name": "supabase-agent-skills",
|
|
"version": "1.0.0",
|
|
"author": "Supabase",
|
|
"license": "MIT",
|
|
"description": "Official Supabase agent skills",
|
|
"scripts": {
|
|
"build": "npm --prefix packages/skills-build run build",
|
|
"validate": "npm --prefix packages/skills-build run validate",
|
|
"format": "biome format --write .",
|
|
"format:check": "biome format .",
|
|
"lint": "biome lint --write .",
|
|
"lint:check": "biome lint .",
|
|
"check": "biome check --write .",
|
|
"ci:check": "biome ci ."
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.3.11"
|
|
}
|
|
}
|