# CI Triage

> Diagnose and fix CI failures locally using the repository's Taskfile and tooling. Use when GitHub Actions fail or checks are red.

- Skill: `fosrl/ci-triage` (Agent Skill)
- Install (CLI): `npx skillmds@latest add fosrl/ci-triage`
- Raw SKILL.md: https://api.skillmd.com/api/skills/fosrl/ci-triage/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: fosrl (https://skillmd.com/u/fosrl)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/fosrl/ci-triage

---


# CI Triage Skill

## When to use

- GitHub Actions failures
- Lint/test failures
- Coverage issues

---

## Reproduce locally

```bash
task ci
```

---

## Individual steps

```bash
task fmt
task lint
task test
go vet ./...
```

---

## Additional tools

```bash
golangci-lint run --timeout=5m
markdownlint-cli2 "**/*.md"
yamllint -c .yamllint.yaml .
hadolint Dockerfile
```

---

## Debugging checklist

- Does failure reproduce locally?
- Tool versions match CI?
- Path or OS differences?
- Missing dependencies?

---

## Rules

- Do NOT disable checks
- Do NOT weaken lint rules
- Fix root cause only

---

## Output

- Root cause
- Minimal fix
- Commands run
- Files affected

