fix

Automate fixing failing PR CI checks across multiple pull requests using git worktrees.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/krystophny/prompts --skill fix-krystophny
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix
Source: https://github.com/krystophny/prompts/tree/main/skills/fix
Command: npx skills add https://github.com/krystophny/prompts --skill fix-krystophny

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Coordinated automation to fix failing CI checks across multiple PRs by using parallel git worktrees and per-PR agents.

Core Features & Use Cases

  • Parallel PR fixes: create isolated worktrees per PR to fix issues concurrently.
  • Automated delegation: spawn dedicated agents to implement fixes and verify results.
  • PR workflow continuity: ensures changes are validated and pushed back to each PR.

Quick Start

Run /fix to fix the current PR, or /fix 123 to target a specific PR number.

Frequently Asked Questions about fix

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

FAQPage Schema
How do I automate fixing failing CI checks across multiple PRs?

To fix failing PR checks across multiple PRs, this Skill automates the workflow by creating isolated git worktrees for each PR and spawning dedicated agents to concurrently implement and validate fixes before pushing back.

How do I use git worktrees to fix CI failures on several pull requests at once?

Using git worktrees to fix CI failures involves creating an isolated worktree per PR, enabling parallel agent delegation to implement fixes concurrently without branch switching conflicts, then pushing the validated changes back.

Do I need the gh CLI to automate PR status checks and push operations?

Yes, you need the gh CLI to automate PR status checks and push operations, along with git worktree support and the ability to spawn per-PR agents for coordinating the parallel CI fix workflow.

Can I target a specific PR number when automating failing check repairs?

Yes, you can target a specific PR number when automating failing check repairs by passing the PR number as an argument, or simply run the fix command without arguments to target the current PR.

What is the best way to run parallel PR fixes without branch switching conflicts?

The best way to run parallel PR fixes without branch switching conflicts is creating isolated git worktrees for each PR, allowing concurrent agent delegation to implement and verify fixes simultaneously before pushing.