Skip to main content
ClaudeWave
Skill323 repo starsupdated today

ci-triage

The ci-triage skill analyzes continuous integration test failures and categorizes them as flakes, regressions, environment issues, or configuration problems. Use this skill to automatically triage CI failures, determine whether they require code fixes or human intervention, and recommend appropriate actions like minimal fixes, monitoring, or escalation to prevent wasting engineering time on non-actionable failures.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/cobusgreyling/loop-engineering /tmp/ci-triage && cp -r /tmp/ci-triage/starters/ci-sweeper/.grok/skills/ci-triage ~/.claude/skills/ci-triage
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# CI Triage Skill

## Output per failure

```markdown
### Failure — branch @ sha
- Job / step:
- Error (1-3 lines):
- Classification: flake | regression | env | config
- Actionable: yes | no
- Suggested loop action: minimal-fix | watch | escalate-human
```

## Classification Rules

- **flake**: intermittent, passed on retry, no code change
- **regression**: new failure correlated with recent commit
- **env**: runner, registry, secrets, quota
- **config**: workflow, dependency install, cache

Env failures → escalate-human. Do not "fix" with code changes.