Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める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?