source-command-fix-ci

Run CI checks, categorize lint/type/test errors, and apply fixes.

Updated May 14, 2026
One-click install
npx skills add https://github.com/chroniicallydiistracted/LorcanaChamp --skill source-command-fix-ci-chroniicallydiistracted
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: source-command-fix-ci
Source: https://github.com/chroniicallydiistracted/LorcanaChamp/tree/main/references/lorcana-simulator/.agents/skills/source-command-fix-ci
Command: npx skills add https://github.com/chroniicallydiistracted/LorcanaChamp --skill source-command-fix-ci-chroniicallydiistracted

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

It helps you recover quickly when CI checks fail by automatically triaging lint, TypeScript, and test errors and driving an efficient fix-and-verify loop.

Core Features & Use Cases

  • CI error workflow orchestration: Runs the repository’s CI check, groups failures by file and error type, and sequences fixes to reduce repeat churn.
  • Intelligent delegation rules: Chooses between inline fixes and delegation to a dedicated ci-fixer sub-agent based on error counts and complexity.
  • Verification and reporting loop: Re-runs relevant checks after each fix batch and produces a clear final summary of fixed vs unfixable issues.

Quick Start

Invoke this skill with the prompt: "Run the migrated source command fix-ci to fix the CI errors in the monorepo."

Frequently Asked Questions about source-command-fix-ci

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

FAQPage Schema
How do I automatically fix CI failures in a monorepo?

To automatically fix CI failures in a monorepo, run the CI check from the repository root to parse lint, type, and test output. The skill groups errors by file, applies inline edits or delegates fixes, and re-runs checks in a verification loop to report fixed versus unfixable issues.

What is the best way to triage lint and TypeScript errors across multiple packages?

Triage lint and TypeScript errors across multiple packages by running a centralized CI check that categorizes failures deterministically by file. This process sequences fixes to reduce repeat churn and uses delegation rules for complex errors to streamline the correction workflow.

Does this CI error fixer work with my bun and turbo monorepo setup?

Yes, this CI error fixer works with your bun and turbo monorepo setup by targeting workflows where `bun run ci-check` executes turbo lint, type, and test tasks. It requires command execution directly from the repository root to function correctly.

How does automated CI error delegation handle complex test failures?

Automated CI error delegation handles complex test failures by evaluating error counts and complexity, then routing them to a dedicated `ci-fixer` sub-agent. Simpler errors receive inline edits, while the verification loop reruns relevant checks to confirm the fixes.

Why does my CI fix loop keep hitting repeat churn across different files?

Repeat churn across different files happens when fixes are unsequenced. The skill mitigates this by deterministically grouping failures by file and error type, sequencing the fixes in batches, and re-running checks to verify results before reporting unfixable issues.

Can I see which CI errors were fixed versus which remain unfixable?

Yes, you can see fixed versus unfixable CI errors because the verification loop re-runs relevant checks after each fix batch. It produces a clear final summary report detailing exactly which lint, type, and test failures were resolved and which require manual intervention.