ワンクリックで
lint
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Run all tests and iterate to fix failures
Address 10 GitHub issues sequentially, creating and merging PRs one by one with CI/CD verification
Fix 5 GitHub issues in a single combined PR, iterating until CI/CD passes
Review recent assessments and sync GitHub issues - create missing issues and close resolved ones
Run all tests and iterate to fix failures
| name | lint |
| description | Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements |
Run comprehensive linting and code quality checks on the codebase.
Run ruff with auto-fix:
ruff check . --fix
Run black formatter:
black .
Run mypy type checking:
mypy . --ignore-missing-imports
Find and fix placeholder statements:
pass statements that should have implementationsTRACKED_TASK, TRACKED_DEFECT, XXX, HACK commentsNotImplementedError that should be implemented... (ellipsis) placeholders in function bodiesgrep -rn "TRACKED_TASK\|TRACKED_DEFECT\|XXX\|HACK\|NotImplementedError\|pass$" --include="*.py" .
Fix any issues found:
Verify all checks pass:
ruff check .
black --check .
mypy . --ignore-missing-imports
Report all issues found and fixes applied. If any issues cannot be automatically fixed, list them with recommendations.