بنقرة واحدة
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.