What problem does it solve? Tests that pass green do not prove assertions actually catch faults. This Skill mutation-tests AL/Business Central production code to expose under-asserted tests, dead code, and real coverage gaps that a green build hides. ## Core Features & Use Cases - One-mutation-at-a-time execution: Applies a single operator per site, runs the script-backed build gate, classifies the result, and reverts with a verified clean tree before continuing. - Precise classification: Distinguishes killed mutants (a test went red), survivors (real coverage gaps), equivalent mutants (with documented reasons), stillborns (compile failures that prove nothing), and runner-contract failures. - Delegated worker model: Host plans and judges; a worker executes the mutate-build-revert cycle and writes a durable mutation report under .output/mutation-report/. - Use Case: After refactoring a posting routine in a Business Central app, run mutation testing to confirm the existing tests would actually catch a boundary flip or guard inversion before handing off to code review. ## Quick Start Run /al-mutate on the recently refactored production code to verify the test suite kills injected mutations.