Files
everything-claude-code-zh/skills/verification-loop/SKILL.md

121 lines
2.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 验证循环技能Verification Loop Skill
一个用于 Claude Code 会话的全面验证系统。
## 何时使用
在以下场景调用此技能Skill
- 完成功能开发或重大代码变更后
- 创建 PR 之前
- 当你想确保质量门禁Quality Gates通过时
- 代码重构之后
## 验证阶段Verification Phases
### 阶段 1构建验证Build Verification
```bash
# 检查项目是否可以构建
npm run build 2>&1 | tail -20
# 或者
pnpm build 2>&1 | tail -20
```
如果构建失败,请停止并修复后再继续。
### 阶段 2类型检查Type Check
```bash
# TypeScript 项目
npx tsc --noEmit 2>&1 | head -30
# Python 项目
pyright . 2>&1 | head -30
```
报告所有类型错误。在继续之前修复关键错误。
### 阶段 3Lint 检查Lint Check
```bash
# JavaScript/TypeScript
npm run lint 2>&1 | head -30
# Python
ruff check . 2>&1 | head -30
```
### 阶段 4测试套件Test Suite
```bash
# 运行带有覆盖率报告的测试
npm run test -- --coverage 2>&1 | tail -50
# 检查覆盖率阈值
# 目标:最低 80%
```
报告内容:
- 总测试数X
- 通过X
- 失败X
- 覆盖率X%
### 阶段 5安全扫描Security Scan
```bash
# 检查密钥
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
# 检查 console.log
grep -rn "console.log" --include="*.ts" --include="*.tsx" src/ 2>/dev/null | head -10
```
### 阶段 6差异审查Diff Review
```bash
# 显示变更内容
git diff --stat
git diff HEAD~1 --name-only
```
审查每个变更的文件,确认:
- 无意间的变更
- 缺失的错误处理
- 潜在的边缘情况
## 输出格式Output Format
运行完所有阶段后,生成一份验证报告:
```
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. ...
```
## 持续模式Continuous Mode
对于长时间的会话Session每 15 分钟或在重大变更后运行一次验证:
```markdown
设置心理检查点:
- 完成每个函数后
- 完成一个组件后
- 在开始下一个任务之前
运行:/verify
```
## 与钩子Hooks集成
此技能Skill是对 `PostToolUse` 钩子Hooks的补充但提供了更深层次的验证。
钩子可以立即发现问题;此技能则提供全面的审查。