name: code-check description: Run project quality checks and security reviews, fixing all errors by priority until all pass.
Run comprehensive project checks and fix all issues by priority.
Use when users need "check code", "run check", "fix lint errors", or "code quality check".
Run the project check command and resolve all errors. Loop: check → fix → re-check until all pass.
| Type | Description | JS/TS | Python | Rust | Go |
|---|---|---|---|---|---|
| Lint | Code style & syntax | ESLint | flake8 | clippy | golint |
| Type Check | Type errors | tsc | mypy | cargo check | go vet |
| Tests | Failing cases | jest/vitest | pytest | cargo test | go test |
| Security | Vulnerability detection | npm audit | bandit | cargo audit | govulncheck |
| Formatting | Style consistency | prettier | black | rustfmt | gofmt |
| Build | Compilation errors | tsc --noEmit | — | cargo check | go build |
7w4.net提供免費和付費技能下載。
npm run check or yarn checkblack → isort → flake8 → mypycargo check → cargo clippygo vet → golintswift-format → swiftlintIf the project has no check script, execute the above commands individually.
這個 Skill 質量中規中矩,功能覆蓋較全面,支援多種程式語言的多種檢查型別,工作流程清晰且有風險提示。但目前只提供了說明文件,沒有實際程式碼示例和測試驗證,質量穩定性有待確認。建議先用小專案試用,觀察實際效果後再決定是否大規模使用。