affaan-m/ECC

verification-loop

A comprehensive verification system for Claude Code sessions.

61CollectingClaude CodeRuns scripts
See how to use itView GitHub source
npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/verification-loop"
Automated source guide

Source checked Jul 28, 2026·Refresh due Oct 26, 2026

Reorganized from the pinned upstream SKILL.md

Turn verification-loop's source instructions into a guide you can follow

According to the pinned SKILL.md from affaan-m/ECC: Claude Codeセッション向けの包括的な検証システム。

npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/verification-loop"
Check the pinned source

Best fit

  • A comprehensive verification system for Claude Code sessions.

Bring this context

  • A concrete task that matches the documented purpose of verification-loop.
  • The files, examples, or context the task depends on.
  • Your constraints, target environment, and definition of done.

Expected outputs

  • A result that follows the pinned verification-loop instructions.
  • A concise record of assumptions, inputs used, and unresolved questions.
  • A final check against the source workflow and relevant permission signals.

Key source sections

Read verification-loop through these 5 source sections

Sections are extracted automatically from the pinned SKILL.md and link back to the source.

01

使用タイミング

このスキルを呼び出す: - 機能または重要なコード変更を完了した後 - PRを作成する前 - 品質ゲートが通過することを確認したい場合 - リファクタリング後

SKILL.md · 使用タイミング
機能または重要なコード変更を完了した後PRを作成する前品質ゲートが通過することを確認したい場合
02

検証フェーズ

Review the “検証フェーズ” section in the pinned source before continuing.

SKILL.md · 検証フェーズ
Review and apply the “検証フェーズ” source section.
03

フェーズ1: ビルド検証

Review the “フェーズ1: ビルド検証” section in the pinned source before continuing.

SKILL.md · フェーズ1: ビルド検証
Review and apply the “フェーズ1: ビルド検証” source section.
04

プロジェクトがビルドできるか確認

Review the “プロジェクトがビルドできるか確認” section in the pinned source before continuing.

SKILL.md · プロジェクトがビルドできるか確認
Review and apply the “プロジェクトがビルドできるか確認” source section.
05

または

Review the “または” section in the pinned source before continuing.

SKILL.md · または
Review and apply the “または” source section.

SkillSignal prompt templates

Provide the task, context, and acceptance criteria

These prompts were written by SkillSignal from the source structure; they are not upstream text.

Task-start prompt

Confirm source fit, inputs, and outputs before acting.

Use verification-loop to help me with: [specific task]. Context: [files, data, or background]. Constraints: [environment, scope, and prohibited actions]. Before acting, check the pinned SKILL.md and explain which sections apply, what inputs are still missing, and what you will deliver.

Source-guided execution

Make the Agent explicitly follow the key extracted sections.

Apply the pinned verification-loop source to [task]. Pay particular attention to these source sections: “使用タイミング”, “検証フェーズ”, “フェーズ1: ビルド検証”, “プロジェクトがビルドできるか確認”, “または”. Preserve the important decision at each step. Mark facts not covered by the source as “needs confirmation” instead of inventing them. Then verify the result against my acceptance criteria: [criteria].

Result-review prompt

Check omissions, permissions, and source drift before delivery.

Review the current verification-loop result: (1) does it satisfy the original task; (2) were any applicable steps or limits in the pinned SKILL.md missed; (3) did it perform any unauthorized file, command, network, or data action; and (4) which conclusions remain unverified? List issues first, then fix only what the source or user authorization supports.

Output checklist

Verify each item before delivery

The task matches the purpose documented in the SKILL.md.

The source section “使用タイミング” has been checked.

The source section “検証フェーズ” has been checked.

The source section “フェーズ1: ビルド検証” has been checked.

The source section “プロジェクトがビルドできるか確認” has been checked.

Inputs, constraints, and acceptance criteria are explicit.

Unverified facts, compatibility, and outcome claims are clearly marked.

Any file, command, network, or data action has been reviewed.

Choose a different workflow

When another Skill is the better fit

FAQ

What does verification-loop do?

Claude Codeセッション向けの包括的な検証システム。

How do I start using verification-loop?

The catalog detected this source-specific install command: npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/verification-loop". Inspect the command and pinned source before running it.

Which Agent platforms does it declare?

claude code

Repository stars
234,327
Repository forks
35,711
Quality
61/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

61/100
Documentation20/30
Specificity11/25
Maintenance20/20
Trust signals10/25
View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 1 min

検証ループスキル

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フックを補完しますが、より深い検証を提供します。 フックは問題を即座に捕捉; このスキルは包括的なレビューを提供。

Source repo
affaan-m/ECC
Skill path
docs/ja-JP/skills/verification-loop/SKILL.md
Commit SHA
4e973d3eaf92
Repository license
MIT
Data collected