为 Claude Code 会话提供系统化校验流程,帮助检查结果正确性与质量。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "verification-loop" 技能: 1. 下载 https://raw.githubusercontent.com/affaan-m/ECC/main/skills/verification-loop/SKILL.md 2. 保存为 ~/.claude/skills/verification-loop/SKILL.md 3. 装好后重载技能,告诉我可以用了
请对这次 Claude Code 会话运行 verification-loop,系统检查我刚才的代码修改是否满足需求、是否引入明显错误,并给出验证结论与风险清单。
一份结构化校验报告,包含需求匹配度、发现的问题、风险说明和后续建议。
在提交代码前,请使用 verification-loop 复核本次会话的实现,重点验证边界情况、测试覆盖和潜在回归问题,输出通过项与未通过项。
一份提交前检查结果,明确列出已验证项、缺失测试、潜在回归点和修复建议。
请对 Claude Code 刚生成的解决方案执行 verification-loop,从逻辑正确性、实现完整性和可执行性三个方面进行全面验证,并总结可信度。
一份对 AI 生成方案的验证摘要,说明其可靠程度、主要缺陷和是否建议采用。
A comprehensive verification system for Claude Code sessions.
Invoke this skill:
# Check if project builds
npm run build 2>&1 | tail -20
# OR
pnpm build 2>&1 | tail -20
If build fails, STOP and fix before continuing.
# TypeScript projects
npx tsc --noEmit 2>&1 | head -30
# Python projects
pyright . 2>&1 | head -30
Report all type errors. Fix critical ones before continuing.
# 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
Report:
# 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
Review each changed file for:
After running all phases, produce a verification report:
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. ...
For long sessions, run verification every 15 minutes or after major changes:
Set a mental checkpoint:
- After completing each function
- After finishing a component
- Before moving to next task
Run: /verify
This skill complements PostToolUse hooks but provides deeper verification. Hooks catch issues immediately; this skill provides comprehensive review.
追踪Claude Code令牌用量、支出与预算并生成成本报表
帮助你掌握地道 Rust 模式、所有权与并发实践,编写安全高性能应用。
帮助开发者为代码代理配置性能优化、安全防护与研究优先工作流。
通过双评审智能体对结果进行对抗式校验,提升输出发布前的可靠性
帮助开发者使用 Bun 进行运行、打包、测试与依赖管理,并评估替代 Node 的时机。
基于 C++ Core Guidelines 编写、审查并重构更安全现代的 C++ 代码。
为 Claude Code 会话提供自动化校验流程,帮助检查代码、输出与执行结果。
为 Claude Code 会话提供全面校验流程,提升代码与结果可靠性。
通过生成—核验—修正循环,提高回答、代码或方案的准确性与可靠性。
为 Claude Code 会话建立基于 EDD 的正式评测框架与质量验证流程
为 Claude Code 会话提供正式评估框架,支持评估驱动开发与质量验证。
实时监控 Claude Code 运行状态与任务进展,帮助快速排查问题并提升开发效率。