text
| 1 | # Log Triage |
| 2 | |
| 3 | The failure mode of reading logs is anchoring on the first stack trace and explaining |
| 4 | everything else in its terms. This skill works the other way: establish the timeline |
| 5 | first, separate what changed from what is always noisy, and only then form hypotheses, |
| 6 | ranked by evidence and each with a cheap test attached. |
| 7 | |
| 8 | ## When to use |
| 9 | |
| 10 | - An incident where you have logs and no diagnosis. |
| 11 | - A failure that reproduces intermittently and you need to find the pattern. |
| 12 | - Any time you catch yourself already sure of the cause after reading one line. |
| 13 | |
| 14 | ## Install |
| 15 | |
| 16 | ```bash |
| 17 | npx openagents-cli add openagents/log-triage |
| 18 | ``` |
| 19 | |
| 20 | | Runtime | Installed to | |
| 21 | |---|---| |
| 22 | | `claude-code` | `.claude/skills/log-triage/` | |
| 23 | | `cursor` | `.cursor/rules/log-triage/` | |
| 24 | | `codex` | `.codex/skills/log-triage/` | |
| 25 | | `openai-agents` | `agents/log-triage/` | |
| 26 | | `langgraph` | `graphs/log-triage/` | |
| 27 | | `generic` | `.openagents/log-triage/` | |
| 28 | |
| 29 | ## What is in the package |
| 30 | |
| 31 | - `SKILL.md` - the triage procedure, and the mistakes it exists to prevent. |
| 32 | - `templates/triage.md` - the output format: timeline, hypotheses, tests. |
| 33 | |
| 34 | ## License |
| 35 | |
| 36 | MIT |
| 37 |