715 B
yaml
| 1 | schema: 1 |
| 2 | name: log-triage |
| 3 | owner: openagents |
| 4 | version: 1.0.0 |
| 5 | kind: skill |
| 6 | title: Log Triage |
| 7 | summary: "Turn a wall of logs into a ranked set of hypotheses, each with the evidence for it and the cheapest way to test it" |
| 8 | license: MIT |
| 9 | tags: [debugging, logs, incident, observability, skill] |
| 10 | runtimes: [claude-code, cursor, codex, openai-agents, langgraph, generic] |
| 11 | pricing: |
| 12 | model: free |
| 13 | amount_cents: 0 |
| 14 | currency: usd |
| 15 | entry: SKILL.md |
| 16 | files: |
| 17 | - SKILL.md |
| 18 | - templates/triage.md |
| 19 | inputs: |
| 20 | - name: logs |
| 21 | type: string |
| 22 | required: true |
| 23 | description: "Log file, paste, or query results" |
| 24 | - name: symptom |
| 25 | type: string |
| 26 | required: false |
| 27 | description: "What was observed to be wrong, if known" |
| 28 | requires: [] |
| 29 |