Install
1
Install the plugin$
npx claudepluginhub a20070322/everything-claude-code-zhWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Description
Claude Code 会话的综合验证系统。
Tool Access
This skill uses the workspace's default tool permissions.
Skill Content
验证循环技能
Claude Code 会话的综合验证系统。
何时使用
调用此技能:
- 完成功能或重大代码更改后
- 创建 PR 之前
- 当你想确保质量门通过时
- 重构后
验证阶段
阶段 1:构建验证
# 检查项目是否构建
npm run build 2>&1 | tail -20
# 或
pnpm build 2>&1 | tail -20
如果构建失败,停止并修复后再继续。
阶段 2:类型检查
# TypeScript 项目
npx tsc --noEmit 2>&1 | head -30
# Python 项目
pyright . 2>&1 | head -30
报告所有类型错误。在继续之前修复关键错误。
阶段 3:Lint 检查
# JavaScript/TypeScript
npm run lint 2>&1 | head -30
# Python
ruff check . 2>&1 | head -30
阶段 4:测试套件
# 运行测试并生成覆盖率
npm run test -- --coverage 2>&1 | tail -50
# 检查覆盖率阈值
# 目标:最低 80%
报告:
- 总测试数:X
- 通过:X
- 失败:X
- 覆盖率:X%
阶段 5:安全扫描
# 检查密钥
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:差异审查
# 显示更改了什么
git diff --stat
git diff HEAD~1 --name-only
审查每个更改的文件:
- 非预期的更改
- 缺少错误处理
- 潜在的边界情况
输出格式
运行所有阶段后,生成验证报告:
验证报告
==================
构建: [通过/失败]
类型: [通过/失败] (X 个错误)
Lint: [通过/失败] (X 个警告)
测试: [通过/失败] (X/Y 通过,Z% 覆盖率)
安全: [通过/失败] (X 个问题)
差异: [X 个文件已更改]
总体: [准备/未准备好] 创建 PR
需要修复的问题:
1. ...
2. ...
持续模式
对于长时间会话,每 15 分钟或重大更改后运行验证:
设置一个心理检查点:
- 完成每个函数后
- 完成组件后
- 转移到下一个任务之前
运行:/verify
与钩子集成
此技能补充 PostToolUse 钩子,但提供更深入的验证。 钩子立即捕获问题;此技能提供全面审查。
Stats
Stars2
Forks0
Last CommitJan 30, 2026
Similar Skills
brainstorming
7 files
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
superpowers
102.8k