affaan-m/ECC

verification-loop

Claude Code oturumları için kapsamlı doğrulama sistemi.

61CollectingClaude CodeRuns scripts
See how to use itView GitHub source
npx skills add https://github.com/affaan-m/ECC --skill "docs/tr/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 oturumları için kapsamlı doğrulama sistemi.

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

Best fit

  • Claude Code oturumları için kapsamlı doğrulama sistemi.

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

  • Bir özellik veya önemli kod değişikliği tamamladıktan sonra
  • PR oluşturmadan önce
  • Kalite kapılarının geçtiğinden emin olmak istediğinde

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

Ne Zaman Kullanılır

Bu skill'i şu durumlarda çağır: - Bir özellik veya önemli kod değişikliği tamamladıktan sonra - PR oluşturmadan önce - Kalite kapılarının geçtiğinden emin olmak istediğinde - Refactoring sonrasında

SKILL.md · Ne Zaman Kullanılır
Bir özellik veya önemli kod değişikliği tamamladıktan sonraPR oluşturmadan önceKalite kapılarının geçtiğinden emin olmak istediğinde
02

Doğrulama Fazları

Review the “Doğrulama Fazları” section in the pinned source before continuing.

SKILL.md · Doğrulama Fazları
Review and apply the “Doğrulama Fazları” source section.
03

Faz 1: Build Doğrulaması

Review the “Faz 1: Build Doğrulaması” section in the pinned source before continuing.

SKILL.md · Faz 1: Build Doğrulaması
Review and apply the “Faz 1: Build Doğrulaması” source section.
04

Projenin build olup olmadığını kontrol et

Review the “Projenin build olup olmadığını kontrol et” section in the pinned source before continuing.

SKILL.md · Projenin build olup olmadığını kontrol et
Review and apply the “Projenin build olup olmadığını kontrol et” source section.
05

VEYA

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

SKILL.md · VEYA
Review and apply the “VEYA” 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: “Ne Zaman Kullanılır”, “Doğrulama Fazları”, “Faz 1: Build Doğrulaması”, “Projenin build olup olmadığını kontrol et”, “VEYA”. 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 “Ne Zaman Kullanılır” has been checked.

The source section “Doğrulama Fazları” has been checked.

The source section “Faz 1: Build Doğrulaması” has been checked.

The source section “Projenin build olup olmadığını kontrol et” 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 oturumları için kapsamlı doğrulama sistemi.

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/tr/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

Verification Loop Skill

Claude Code oturumları için kapsamlı doğrulama sistemi.

Ne Zaman Kullanılır

Bu skill'i şu durumlarda çağır:

  • Bir özellik veya önemli kod değişikliği tamamladıktan sonra
  • PR oluşturmadan önce
  • Kalite kapılarının geçtiğinden emin olmak istediğinde
  • Refactoring sonrasında

Doğrulama Fazları

Faz 1: Build Doğrulaması

# Projenin build olup olmadığını kontrol et
npm run build 2>&1 | tail -20
# VEYA
pnpm build 2>&1 | tail -20

Build başarısız olursa, devam etmeden önce DUR ve düzelt.

Faz 2: Tip Kontrolü

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

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

Tüm tip hatalarını raporla. Devam etmeden önce kritik olanları düzelt.

Faz 3: Lint Kontrolü

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

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

Faz 4: Test Paketi

# Testleri coverage ile çalıştır
npm run test -- --coverage 2>&1 | tail -50

# Coverage eşiğini kontrol et
# Hedef: minimum %80

Rapor:

  • Toplam testler: X
  • Geçti: X
  • Başarısız: X
  • Coverage: %X

Faz 5: Güvenlik Taraması

# Secret'ları kontrol et
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 kontrol et
grep -rn "console.log" --include="*.ts" --include="*.tsx" src/ 2>/dev/null | head -10

Faz 6: Diff İncelemesi

# Neyin değiştiğini göster
git diff --stat
git diff HEAD~1 --name-only

Her değişen dosyayı şunlar için incele:

  • İstenmeyen değişiklikler
  • Eksik hata işleme
  • Potansiyel edge case'ler

Çıktı Formatı

Tüm fazları çalıştırdıktan sonra, bir doğrulama raporu üret:

DOĞRULAMA RAPORU
==================

Build:     [PASS/FAIL]
Tipler:    [PASS/FAIL] (X hata)
Lint:      [PASS/FAIL] (X uyarı)
Testler:   [PASS/FAIL] (X/Y geçti, %Z coverage)
Güvenlik:  [PASS/FAIL] (X sorun)
Diff:      [X dosya değişti]

Genel:     PR için [HAZIR/HAZIR DEĞİL]

Düzeltilmesi Gereken Sorunlar:
1. ...
2. ...

Sürekli Mod

Uzun oturumlar için, her 15 dakikada bir veya major değişikliklerden sonra doğrulama çalıştır:

Mental kontrol noktası belirle:
- Her fonksiyonu tamamladıktan sonra
- Bir component'i bitirdikten sonra
- Sonraki göreve geçmeden önce

Çalıştır: /verify

Hook'larla Entegrasyon

Bu skill PostToolUse hook'larını tamamlar ancak daha derin doğrulama sağlar. Hook'lar sorunları anında yakalar; bu skill kapsamlı inceleme sağlar.

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