在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用audit-qc
星标3
分支1
更新时间2026年5月30日 01:17
Does this meet standards?
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Does this meet standards?
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Application programming interface.
Does CI work?
Did it work?
Is everything okay?
Is it running?
Does it work well?
| name | audit-qc |
| description | Does this meet standards? |
| license | MIT |
| metadata | {"author":"vant","version":"1.0"} |
Does this meet standards?
# Check formatting
npm run lint
npm run format
# Check for console.log
grep -rn "console.log" . --include="*.js"
| Check | Issue | Severity |
|---|---|---|
| Lint errors | HIGH | Fail |
| console.log in prod | LOW | Warn |
| No tests | MEDIUM | Warn |
# Type errors
npm run type-check
npx tsc --noEmit
| Check | Issue | Severity |
|---|---|---|
| Type error | HIGH | Fail |
| Any type | LOW | Warn |
# Test coverage
npm test
npm run test:coverage
| Check | Issue | Severity |
|---|---|---|
| Tests fail | HIGH | Fail |
| <80% coverage | MEDIUM | Warn |
| No tests | LOW | Warn |
# Does it build?
npm run build
| Check | Issue | Severity |
|---|---|---|
| Build fails | HIGH | Fail |
| Build warning | LOW | Warn |
## QC Audit - [file]
### Lint
- [PASS/FAIL] Lint: [errors]
### Types
- [PASS/FAIL] Types: [errors]
### Tests
- [PASS/FAIL] Tests: [result]
- Coverage: [x]%
### Build
- [PASS/FAIL] Build: [result]
### Summary
| Check | Result |
|--------|---------|
| Lint | PASS |
| Types | PASS |
| Tests | PASS |
| Build | PASS |
| Level | Meaning |
|---|---|
| PASS | Ready to merge |
| WARN | Consider fixing |
| FAIL | Block merge |
Role: QC Auditor
Input: Code to check
Output: Standards met?