What problem does it solve? Turning a vague bug report into a working fix is slow and error-prone: symptoms get misdiagnosed, patches ship without proof, and reviewers cannot tell whether a change actually does anything. This Skill takes a reported symptom all the way to a pull request inside a sandboxed environment, with evidence at every step. ## Core Features & Use Cases - Reproduction-first workflow: Clones the repository, reproduces the symptom, and converts it into a failing acceptance check before any code is changed. - Minimal, verified fixes: Finds the root cause, fixes only what the symptom requires, then proves the acceptance check flips from failing to passing. - Repository gate execution: Runs the repo's own lint, typecheck, and test commands via gate.sh, distinguishing real failures from sandbox egress limits or missing toolchains. - Size-gated PR creation: Stages only intended changes, enforces a roughly 500-line review limit, and opens a pull request against the repository's default branch. - Use Case: A user reports "the export button does nothing." The Skill clones the repo, writes a failing test for the export path, fixes the underlying null handling, watches the test pass, runs the repo's test suite, and opens a PR documenting the symptom, cause, and verification. ## Quick Start Ask the agent to auto-fix the symptom you are seeing, for example: "/auto-fix the sidebar flickers on reload in this repository."