724 B
yaml
| 1 | schema: 1 |
| 2 | name: db-migration-review |
| 3 | owner: openagents |
| 4 | version: 1.0.0 |
| 5 | kind: workflow |
| 6 | title: Migration Review |
| 7 | summary: "Review a schema migration before it runs: locks, blast radius, deploy compatibility, and a rehearsed rollback" |
| 8 | license: MIT |
| 9 | tags: [database, migrations, review, safety, deployment] |
| 10 | runtimes: [claude-code, cursor, codex, generic] |
| 11 | pricing: |
| 12 | model: free |
| 13 | amount_cents: 0 |
| 14 | currency: usd |
| 15 | entry: WORKFLOW.md |
| 16 | files: |
| 17 | - WORKFLOW.md |
| 18 | - patterns.md |
| 19 | inputs: |
| 20 | - name: migration |
| 21 | type: string |
| 22 | required: true |
| 23 | description: The migration file or SQL to review |
| 24 | - name: table_size |
| 25 | type: string |
| 26 | required: false |
| 27 | description: "Approximate row count of the affected tables, if known" |
| 28 | requires: [] |
| 29 |