affaan-m/ECC

verification-loop

Claude Code 세션을 위한 포괄적인 검증 시스템.

61CollectingClaude CodeRuns scripts
See how to use itView GitHub source
npx skills add https://github.com/affaan-m/ECC --skill "docs/ko-KR/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/ko-KR/skills/verification-loop"
Check the pinned source

Best fit

  • Claude Code 세션을 위한 포괄적인 검증 시스템.

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

Check if project builds

Review the “Check if project builds” section in the pinned source before continuing.

SKILL.md · Check if project builds
Review and apply the “Check if project builds” source section.
05

OR

Review the “OR” section in the pinned source before continuing.

SKILL.md · OR
Review and apply the “OR” 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: 빌드 검증”, “Check if project builds”, “OR”. 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 “Check if project builds” 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/ko-KR/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
Documentation18/30
Specificity8/25
Maintenance20/20
Trust signals15/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: 빌드 검증

# Check if project builds
npm run build 2>&1 | tail -20
# OR
pnpm build 2>&1 | tail -20

빌드가 실패하면 계속하기 전에 중단하고 수정합니다.

단계 2: 타입 검사

# TypeScript projects
npx tsc --noEmit 2>&1 | head -30

# Python projects
pyright . 2>&1 | head -30

모든 타입 에러를 보고합니다. 중요한 것은 계속하기 전에 수정합니다.

단계 3: 린트 검사

# JavaScript/TypeScript
npm run lint 2>&1 | head -30

# Python
ruff check . 2>&1 | head -30

단계 4: 테스트 스위트

# Run tests with coverage
npm run test -- --coverage 2>&1 | tail -50

# Check coverage threshold
# Target: 80% minimum

보고 항목:

  • 전체 테스트: X
  • 통과: X
  • 실패: X
  • 커버리지: X%

단계 5: 보안 스캔

# 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

단계 6: Diff 리뷰

# Show what changed
git diff --stat
git diff --name-only
git diff --cached --name-only

각 변경된 파일에서 다음을 검토합니다:

  • 의도하지 않은 변경
  • 누락된 에러 처리
  • 잠재적 엣지 케이스

출력 형식

모든 단계를 실행한 후 검증 보고서를 생성합니다:

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. ...

연속 모드

긴 세션에서는 15분마다 또는 주요 변경 후에 검증을 실행합니다:

Set a mental checkpoint:
- After completing each function
- After finishing a component
- Before moving to next task

Run: /verify

Hook과의 통합

이 스킬은 PostToolUse Hook을 보완하지만 더 깊은 검증을 제공합니다. Hook은 즉시 문제를 포착하고, 이 스킬은 포괄적인 검토를 제공합니다.

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