s-hiraoku/codex-harnesses · Archived

fix-ci

Diagnose and repair failing CI checks on the current branch or pull request with focused, reproducible fixes.

First seen Jun 13, 2026

Installation

$ npx skills add s-hiraoku/codex-harnesses --skill fix-ci

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Also in this package

Other skills from s-hiraoku/codex-harnesses · top by installs.

npx skills add s-hiraoku/codex-harnesses

Browse all from s-hiraoku/codex-harnesses

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 2
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents codex

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,490 B
  • docs SUMMARY.md 123 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Fix CI

Use this workflow when CI is failing for a branch or pull request and the goal is to get checks green or identify a real blocker.

Workflow

  1. Identify the branch, pull request, and failing checks. Use local tools, GitHub tooling, or the available GitHub connector.
  2. Fetch the failing job output. For GitHub Actions, prefer gh pr checks, gh run list --branch <branch> --limit 5, and gh run view <run-id> --log-failed when available.
  3. Cluster failures by type:

- build or type errors - lint or format errors - test failures - dependency or lockfile drift - environment, runner, or network failures

  1. Reproduce locally when practical with the narrowest matching command.
  2. Apply the smallest fix for one cluster at a time. Do not bundle unrelated cleanup.
  3. Never disable, delete, or skip a test as the fix unless the user explicitly authorizes it.
  4. Re-run the local failing command, then broader verification when practical.
  5. Push focused updates if working on a PR and re-check CI. Stop when failures repeat without changing mode, or when the blocker is outside the repository.

Final Report

Include:

  • failing checks at start
  • failure clusters identified
  • fixes applied
  • local verification run
  • final CI status when checked
  • remaining failures classified as real, flaky, or environmental