What problem does it solve?
This skill automates the repetitive and error-prone workflow of applying a small code fix for an open GitHub issue, running tests, and creating a pull request so maintainers can review and merge the change. It reduces manual branching, test baseline collection, and PR creation overhead for fixes that are confined to a single file.
Core Features & Use Cases
- Single-file automated fixes: Read an issue, create a worktree branch, apply a single-file patch, and open a PR with a clear template.
- Test-aware workflow: Detects and runs the repository test command when available, compares results to a baseline, and aborts on new failures.
- Governance and safety: Honors exclude-label flags to skip agent-authored issues, enforces no dependency/schema/infrastructure changes, and never executes commands embedded in issue bodies.
- Use Case: Automatically patch a small bug reported in an open issue, run the test suite, and surface a ready-for-review PR labeled for either auto-merge eligibility or human review.
Quick Start
Use the command /soleur:fix-issue 123 to attempt an automated single-file fix for issue 123 and open a PR for human review.