749 B
yaml
| 1 | schema: 1 |
| 2 | name: flaky-test-triage |
| 3 | owner: openagents |
| 4 | version: 1.0.0 |
| 5 | kind: workflow |
| 6 | title: Flaky Test Triage |
| 7 | summary: "Find why a test is flaky rather than retrying it: classify the cause, prove it, fix it, and quarantine honestly" |
| 8 | license: MIT |
| 9 | tags: [testing, flaky, ci, debugging, reliability] |
| 10 | runtimes: [claude-code, cursor, codex, openai-agents, langgraph, generic] |
| 11 | pricing: |
| 12 | model: free |
| 13 | amount_cents: 0 |
| 14 | currency: usd |
| 15 | entry: WORKFLOW.md |
| 16 | files: |
| 17 | - WORKFLOW.md |
| 18 | - causes.md |
| 19 | inputs: |
| 20 | - name: test |
| 21 | type: string |
| 22 | required: true |
| 23 | description: "The flaky test: name, file, or CI failure link" |
| 24 | - name: runs |
| 25 | type: number |
| 26 | required: false |
| 27 | default: 50 |
| 28 | description: Repetitions used to establish a failure rate |
| 29 | requires: [] |
| 30 |