何時使用
在以下情況呼叫此技能: - 完成功能或重大程式碼變更後 - 建立 PR 前 - 想確保品質門檻通過時 - 重構後
affaan-m/ECC
A comprehensive verification system for Claude Code sessions.
npx skills add https://github.com/affaan-m/ECC --skill "docs/zh-TW/skills/verification-loop"Source checked Jul 28, 2026·Refresh due Oct 26, 2026
Limited to facts supported by the pinned source
Claude Code 工作階段的完整驗證系統。
npx skills add https://github.com/affaan-m/ECC --skill "docs/zh-TW/skills/verification-loop"The pinned source contains about 152 English words and 23 usable sections. That evidence supports a source profile, not a complete guide.
152 source words · 23 usable sections
What the source actually contains
Sections are extracted automatically from the pinned SKILL.md and link back to the source.
在以下情況呼叫此技能: - 完成功能或重大程式碼變更後 - 建立 PR 前 - 想確保品質門檻通過時 - 重構後
Review the “驗證階段” section in the pinned source before continuing.
Review the “階段 1:建置驗證” section in the pinned source before continuing.
Static permission evidence
These are source excerpts matched by deterministic rules, not findings of malicious behavior, safety, or actual execution.
Choose a different workflow
A comprehensive verification system for Claude Code sessions.
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailA comprehensive verification system for Claude Code sessions.
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailSistema de verificación completo para sesiones de Claude Code.
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailFAQ
The source record exposes this install command: npx skills add https://github.com/affaan-m/ECC --skill "docs/zh-TW/skills/verification-loop". Inspect the command and pinned source before running it.
The pinned source record declares support for: claude code.
Static rules flagged exec-script in the source; the page lists the matching lines and excerpts.
Quality breakdown
Based on traceable docs and repository signals; stars are not treated as quality.
Compare before choosing
These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.
A comprehensive verification system for Claude Code sessions.
A comprehensive verification system for Claude Code sessions.
Sistema de verificación completo para sesiones de Claude Code.
A comprehensive verification system for Claude Code sessions.
Use it for engineering tasks; the detail page covers purpose, installation, and practical steps.
Claude Code 工作階段的完整驗證系統。
在以下情況呼叫此技能:
# 檢查專案是否建置
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
審查每個變更的檔案:
執行所有階段後,產生驗證報告:
驗證報告
==================
建置: [PASS/FAIL]
型別: [PASS/FAIL](X 個錯誤)
Lint: [PASS/FAIL](X 個警告)
測試: [PASS/FAIL](X/Y 通過,Z% 覆蓋率)
安全性: [PASS/FAIL](X 個問題)
差異: [X 個檔案變更]
整體: [READY/NOT READY] for PR
待修復問題:
1. ...
2. ...
對於長時間工作階段,每 15 分鐘或重大變更後執行驗證:
設定心理檢查點:
- 完成每個函式後
- 完成元件後
- 移至下一個任務前
執行:/verify
此技能補充 PostToolUse hooks 但提供更深入的驗證。 Hooks 立即捕捉問題;此技能提供全面審查。