Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
lint
// Run all linters (ruff, pyright) and fix issues in a loop until the codebase is clean.
$ git log --oneline --stat
stars:186
forks:28
updated:2026年3月30日 03:25
SKILL.md
// Run all linters (ruff, pyright) and fix issues in a loop until the codebase is clean.
| name | lint |
| description | Run all linters (ruff, pyright) and fix issues in a loop until the codebase is clean. |
| disable-model-invocation | true |
git branch --show-currentgit diff --name-onlyRun all project linters and resolve every issue. Loop until the codebase passes cleanly.
Run the linters in this order each iteration:
ruff check . --fix (safe, auto-fixable issues)ruff check . (remaining issues that need manual fixes)pyright (type-checking)while linters report errors:
1. Run ruff check . --fix (let ruff auto-fix what it can)
2. Run ruff check .
- If errors remain, read the offending files and fix them
3. Run pyright
- If errors remain, read the offending files and fix them
4. If no errors in steps 2 and 3, break
ruff check . --fix before manual fixes. Never manually fix what ruff can auto-fix.Any type that needs a real annotation), prefer the narrowest correct type.$ARGUMENTS contains a file path or glob, pass it to both linters to scope the run (e.g., ruff check $ARGUMENTS and pyright $ARGUMENTS).