con un clic
lint
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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.