fix-ci

Diagnose CI failures by parsing logs and applying minimal fixes.

1|Updated Sep 18, 2015
One-click install
npx skills add https://github.com/martindzejky/dotfiles --skill fix-ci-martindzejky
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix-ci
Source: https://github.com/martindzejky/dotfiles/tree/main/ai/skills/fix-ci
Command: npx skills add https://github.com/martindzejky/dotfiles --skill fix-ci-martindzejky

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Find failing CI jobs, inspect logs, and apply focused fixes to restore green checks efficiently.

Core Features & Use Cases

  • Identify the latest run for the current branch and locate the root cause.
  • Inspect failed jobs and extract the first actionable error.
  • Apply the smallest safe fix and re-run CI until all checks pass.
  • Guardrails: fix one actionable failure at a time and prefer minimal, low-risk changes.

Quick Start

Identify the latest failing CI on your branch and apply the smallest safe fix, then re-run CI.

Frequently Asked Questions about fix-ci

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix failing CI pipelines on my pull request branch?

To fix failing CI pipelines, identify the latest run for your branch, parse logs to locate the first actionable error, apply the smallest safe fix, and re-run CI until all checks pass.

What's the best way to debug CI build failures from log analysis?

Debug CI build failures by extracting the first actionable error from failed job logs, applying a focused minimal change to resolve it, and repeating the process with guardrails until the pipeline succeeds.

Does this CI debugging workflow support branch-based automated checks?

Yes, this CI debugging workflow is applicable to branch-based CI pipelines in software projects, specifically targeting pull request validation and automated branch checks to restore green checks.

Can I apply multiple fixes at once when resolving CI failures?

No, the workflow includes guardrails to fix one actionable failure at a time, prioritizing minimal and low-risk changes to ensure safe and deterministic pipeline restoration.

Why should I extract only the first actionable error from failed CI logs?

Extracting the first actionable error from failed CI logs ensures you apply the smallest safe fix to the root cause, preventing cascading secondary failures from masking the primary issue.