What problem does it solve? Failing CI-style checks (formatting, lint, type errors, broken tests) require tedious manual triage across many recipes. This Skill automates the loop of running the project's just suite, diagnosing each failure, and fixing the underlying code until everything passes. ## Core Features & Use Cases - Automated failure triage: Runs just, categorizes failures by recipe into formatting, lint, type/compile, and test failures, then applies the appropriate fix strategy for each. - Root-cause fixing: Fixes production code or tests based on where the real bug is, never deleting, skipping, or weakening tests and never suppressing errors with ignore comments. - Iteration limits and stuck detection: Stops after 10 iterations or when the same error repeats 3 times, then reports a structured stuck summary with attempted fixes and next steps. - Use Case: After a large refactor, invoke the Skill to run just, fix the two formatting issues and one type error it finds, and confirm all recipes pass in three iterations. ## Quick Start Ask the agent to run the project just suite and fix every failing check until all recipes pass.