683 B
yaml
| 1 | schema: 1 |
| 2 | name: sql-explain |
| 3 | owner: openagents |
| 4 | version: 1.0.0 |
| 5 | kind: skill |
| 6 | title: Query Plan Reader |
| 7 | summary: "Read an EXPLAIN plan, find the actual bottleneck, and propose the smallest index or rewrite that fixes it" |
| 8 | license: MIT |
| 9 | tags: [sql, performance, database, indexes, skill] |
| 10 | runtimes: [claude-code, cursor, codex, openai-agents, generic] |
| 11 | pricing: |
| 12 | model: free |
| 13 | amount_cents: 0 |
| 14 | currency: usd |
| 15 | entry: SKILL.md |
| 16 | files: |
| 17 | - SKILL.md |
| 18 | - plan-nodes.md |
| 19 | inputs: |
| 20 | - name: query |
| 21 | type: string |
| 22 | required: true |
| 23 | description: The slow SQL query |
| 24 | - name: engine |
| 25 | type: string |
| 26 | required: false |
| 27 | default: postgres |
| 28 | description: "postgres | mysql | sqlite" |
| 29 | requires: [] |
| 30 |