npx claudepluginhub aaione/everything-claude-code-zhThis skill uses the workspace's default tool permissions.
Claude Code 会话的综合验证系统。
Runs multi-phase code verification: build, type checks (TypeScript/Python), linting, tests with 80% coverage goal, security scans for secrets/console.log, git diff review. Use after features, refactors, before PRs.
Runs phased verification: build, types, lint, tests with coverage, security scans for secrets/console.log, and git diff review before PRs or after changes.
Runs phased verification checks for build, types, lint, tests, security scans, and git diffs in JS/TS/Python projects. Invoke after changes or before PRs.
Share bugs, ideas, or general feedback.
Claude Code 会话的综合验证系统。
在以下情况调用此技能:
# Check if project builds
npm run build 2>&1 | tail -20
# OR
pnpm build 2>&1 | tail -20
如果构建失败,停止并在继续之前修复。
# TypeScript projects
npx tsc --noEmit 2>&1 | head -30
# Python projects
pyright . 2>&1 | head -30
报告所有类型错误。在继续之前修复关键错误。
# JavaScript/TypeScript
npm run lint 2>&1 | head -30
# Python
ruff check . 2>&1 | head -30
# Run tests with coverage
npm run test -- --coverage 2>&1 | tail -50
# Check coverage threshold
# Target: 80% minimum
报告:
# Check for secrets
grep -rn "sk-" --include="*.ts" --include="*.js" . 2>/dev/null | head -10
grep -rn "api_key" --include="*.ts" --include="*.js" . 2>/dev/null | head -10
# Check for console.log
grep -rn "console.log" --include="*.ts" --include="*.tsx" src/ 2>/dev/null | head -10
# Show what changed
git diff --stat
git diff HEAD~1 --name-only
审查每个更改的文件:
运行所有阶段后,生成验证报告:
VERIFICATION REPORT
==================
Build: [PASS/FAIL]
Types: [PASS/FAIL] (X errors)
Lint: [PASS/FAIL] (X warnings)
Tests: [PASS/FAIL] (X/Y passed, Z% coverage)
Security: [PASS/FAIL] (X issues)
Diff: [X files changed]
Overall: [READY/NOT READY] for PR
Issues to Fix:
1. ...
2. ...
对于长会话,每 15 分钟或重大更改后运行验证:
设置心理检查点:
- After completing each function
- After finishing a component
- Before moving to next task
Run: /verify
此技能补充 PostToolUse hooks,但提供更深入的验证。 Hooks 立即捕获问题;此技能提供全面审查。