New Skill - add ruff-recursive-fix skill#1183
Merged
aaronpowell merged 1 commit intogithub:stagedfrom Mar 27, 2026
Merged
Conversation
aaronpowell
approved these changes
Mar 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
Adds the
ruff-recursive-fixAgent Skill, a controlled iterative workflow for enforcing Python code quality using Ruff.The skill runs Ruff checks against a configurable scope, applies safe and then unsafe autofixes in sequence, reviews each diff, performs manual remediation for remaining findings, and loops until the codebase is clean or a user decision is required. It supports flexible runner resolution (
uv,ruff,python -m ruff,pipx run ruff), per-run rule overrides (--select,--ignore,--extend-select,--extend-ignore), and a strict suppression policy —# noqais added only when explicitly justified.Usage: invoke it via GitHub Copilot with prompts like:
"Run ruff-recursive-fix on the whole repo with default config.""Run ruff-recursive-fix on src/models, ignore DOC rules."Type of Contribution
Additional Notes
No external scripts or bundled assets are included — the skill is self-contained in
SKILL.md.By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.