在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用quality-check
星标2
分支0
更新时间2026年4月21日 13:32
运行完整的代码质量检测(lint + build + test),确保代码符合标准
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
运行完整的代码质量检测(lint + build + test),确保代码符合标准
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | quality-check |
| description | 运行完整的代码质量检测(lint + build + test),确保代码符合标准 |
| license | MIT |
| compatibility | Requires npm |
| metadata | {"author":"project","version":"1.0"} |
运行完整的代码质量检测。
触发时机:
/quality-checkSteps
运行 ESLint 检查
npm run lint
如果有错误:
运行 TypeScript 构建
npm run build
如果有错误:
运行测试
npm test
如果有失败:
输出质量报告
┌─────────────────────────────────────────┐
│ Quality Check Report │
├─────────────────────────────────────────┤
│ │
│ ESLint: ✓ Passed (0 errors) │
│ Build: ✓ Passed │
│ Tests: ✓ Passed (N/M tests) │
│ │
│ Overall: ✓ Code quality OK │
│ │
└─────────────────────────────────────────┘
Output On Failure
┌─────────────────────────────────────────┐
│ Quality Check Report │
├─────────────────────────────────────────┤
│ │
│ ESLint: ✓ Passed │
│ Build: ✗ Failed (5 errors) │
│ Tests: - Skipped (build failed) │
│ │
│ Build Errors: │
│ 1. src/foo.ts:10 - TS2322 │
│ 2. src/bar.ts:20 - TS2345 │
│ ... │
│ │
│ Action: Fix build errors before │
│ continuing │
│ │
└─────────────────────────────────────────┘
Guardrails
Integration with Feedback Memory
这个 skill 与 memory/feedback_quality-check.md 配合使用: