在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用lint-fix
星标0
分支0
更新时间2026年4月7日 00:31
Run linting and type checking, fix violations
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run linting and type checking, fix violations
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | lint-fix |
| description | Run linting and type checking, fix violations |
| allowed-tools | Bash, Read, Edit, Grep, Glob |
| user-invocable | true |
Run all code quality checks and fix any violations.
Run ruff check:
ruff check src/ tests/
Auto-fix what ruff can handle:
ruff check --fix src/ tests/
Run type checking:
make typecheck-touched
Review remaining issues that couldn't be auto-fixed:
Verify everything passes:
ruff check src/ tests/
make typecheck-touched
Run tests to confirm fixes didn't break anything:
PYTHONPATH=src python -m pytest tests/ --cov=src --cov-fail-under=85 -q
Report a summary of what was fixed and any remaining issues that need manual review.