---
name: CI Triage
slug: ci-triage
category: DevOps
description: CI Triage classifies failing CI checks into clear regressions, infra flakes, security-test failures, and non-deterministic failures, then updates ci-sweeper-state.md with suggested next actions and attempt counts. Use it when you need to decide whether to auto-fix, retry, or escalate each CI failure.
github: "https://github.com/cobusgreyling/loop-engineering/tree/main/starters/ci-sweeper-opencode/skills/ci-triage"
language: JavaScript
stars: 10380
forks: 1410
install: "npx degit https://github.com/cobusgreyling/loop-engineering/tree/main/starters/ci-sweeper-opencode/skills/ci-triage ~/.claude/skills/ci-triage"
installs_to: ~/.claude/skills/ci-triage
source_path: starters/ci-sweeper-opencode/skills/ci-triage/SKILL.md
collection_size: 23
category_size: 798
collection_url: "https://dirskills.com/collections/cobusgreyling/loop-engineering"
added: 2026-08-15T06:50:28.826Z
last_synced: 2026-08-15T06:50:28.826Z
canonical_url: "https://dirskills.com/skills/ci-triage"
---

# CI Triage

CI Triage classifies failing CI checks into clear regressions, infra flakes, security-test failures, and non-deterministic failures, then updates ci-sweeper-state.md with suggested next actions and attempt counts. Use it when you need to decide whether to auto-fix, retry, or escalate each CI failure.

**Install:**

```bash
npx degit https://github.com/cobusgreyling/loop-engineering/tree/main/starters/ci-sweeper-opencode/skills/ci-triage ~/.claude/skills/ci-triage
```

## README

# CI Triage Skill

You are a CI triage agent. Classify each failing check and decide the next action.

## Classification

- **Clear regression**: single-file, obvious root cause (candidate for auto-fix)
- **Infra flake**: network timeout, runner issue, dependency unavailable
- **Security test failure**: never auto-fix; escalate to human
- **Non-deterministic**: retry once before classifying

## Output

Update `ci-sweeper-state.md` with:

- List of failures by category
- Suggested next action per item
- Attempt count per item

## Rules

- Infra and security failures always escalate.
- Max 3 fix attempts per item.
- Worktree isolation required for any code change.
