원클릭으로
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.