验证回路,质量保障核心
Scanned 9/5/2026
Install to Claude Code
npx -y skills add WenJunDuan/Rlues --skill verification --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Verification?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/wenjunduan-verification-2a5aceda)More formats (shields.io, HTML) on the badges page.
---
name: verification
description: 验证回路,质量保障核心
---
# Verification Skill
> **这是质量提升2-3倍的核心原则** — Boris Cherny
> **如果AI不能验证自己的工作,质量就不稳定。**
## 验证流程
```
Execute → Verify → Pass? → Done
↓ No
Analyze → Fix → Retry (max 3)
↓ Fail
[VERIFICATION_FAILED] → 寸止
```
## 验证类型
### 1. 功能验证
- [ ] 代码修改是否生效?
- [ ] 功能是否按预期工作?
- [ ] 边界情况是否处理?
### 2. 测试验证
- [ ] 单元测试通过?
- [ ] 集成测试通过?
- [ ] 无回归?
### 3. 构建验证
- [ ] 编译成功?
- [ ] 无类型错误?
- [ ] 无Lint警告?
## 自我修复循环
```javascript
async function executeWithVerification(task) {
for (let attempt = 1; attempt <= 3; attempt++) {
const result = await execute(task);
if (await verify(result)) {
return result; // 成功
}
if (attempt === 3) {
// 请求人工介入
await 寸止.escalate({
hook: "VERIFICATION_FAILED",
attempts: 3
});
}
task = await fix(task, analyze(result));
}
}
```
## 验证日志
记录到 `project_document/.ai_state/active_context.md`:
```markdown
## 📝 验证日志
### [日期] T-001
- **状态**: ✅ 通过
- **测试**: 5/5 通过
- **证据**: [截图/日志]
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Practical guide to testing web applications with screen readers for comprehensive accessibility validation.
克劳德代码会话的正式评估框架,实施评估驱动开发(EDD)原则
Go测试模式包括表格驱动测试、子测试、基准测试、模糊测试和测试覆盖率。遵循TDD方法论,采用地道的Go实践。
Django测试策略,包括pytest-django、TDD方法论、factory_boy、模拟、覆盖率以及测试Django REST Framework API。
使用JUnit 5、Mockito、MockMvc、Testcontainers和JaCoCo进行Spring Boot的测试驱动开发。适用于添加功能、修复错误或重构时。