.agents/skills/verification-loop/SKILL.md
为 Claude Code 会话提供的全面验证系统。
npx skillsauth add xu-xiang/everything-claude-code-zh verification-loopInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
为 Claude Code 会话(Sessions)提供的全面验证系统。
在以下场景调用此技能(Skill):
# 检查项目是否能成功构建
npm run build 2>&1 | tail -20
# 或者
pnpm build 2>&1 | tail -20
如果构建失败,请停止并在继续之前进行修复。
# TypeScript 项目
npx tsc --noEmit 2>&1 | head -30
# Python 项目
pyright . 2>&1 | head -30
报告所有类型错误。在继续之前修复关键错误。
# JavaScript/TypeScript
npm run lint 2>&1 | head -30
# Python
ruff check . 2>&1 | head -30
# 运行带有覆盖率报告的测试
npm run test -- --coverage 2>&1 | tail -50
# 检查覆盖率阈值
# 目标:最低 80%
报告内容:
# 检查是否存在密钥泄露
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
# 显示变更内容
git diff --stat
git diff HEAD~1 --name-only
审查每个变更的文件,重点关注:
在运行所有阶段后,生成一份验证报告:
验证报告 (VERIFICATION REPORT)
==================
构建 (Build): [通过/失败]
类型 (Types): [通过/失败] (X 个错误)
规范 (Lint): [通过/失败] (X 个警告)
测试 (Tests): [通过/失败] (通过 X/Y,覆盖率 Z%)
安全 (Security): [通过/失败] (X 个问题)
差异 (Diff): [X 个文件已变更]
总体结论 (Overall): [就绪/未就绪] 提交 PR
待修复问题:
1. ...
2. ...
对于长时间的会话,请每隔 15 分钟或在重大变更后运行一次验证:
设定心理检查点:
- 完成每个函数后
- 完成一个组件后
- 在转向下一个任务前
运行:/verify
此技能是对 PostToolUse 钩子的补充,但提供了更深层次的验证。
钩子(Hooks)能立即捕获问题;此技能则提供全面的审查。
documentation
将签证申请文件(图像)翻译成英文,并创建包含原文和译文的双语 PDF。
development
Claude Code 会话的全方位验证系统。
tools
在编写新功能、修复 Bug 或重构代码时使用此技能。强制执行测试驱动开发(TDD),包括单元测试、集成测试和 E2E 测试,且覆盖率需达到 80% 以上。
tools
SwiftUI 架构模式,使用 @Observable 进行状态管理,视图组合、导航、性能优化以及现代 iOS/macOS UI 最佳实践。