Source profileQuality 61/100Review permissions

affaan-m/ECC/docs/tr/skills/verification-loop/SKILL.md

verification-loop

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

Source repository stars
234,327
Declared platforms
1
Static risk flags
1
Last source update
2026-07-27
Source checked
2026-07-28

Decision brief

What it does—and where it fits

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

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeDeclaredSource recordInstall path and trigger
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/affaan-m/ECC --skill "docs/tr/skills/verification-loop"
    Safe inspection promptEditorial

    Inspect the Agent Skill "verification-loop" from https://github.com/affaan-m/ECC/blob/4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38/docs/tr/skills/verification-loop/SKILL.md at commit 4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

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

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

      Doğrulama Fazları

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

      Review and apply the “Doğrulama Fazları” source section.
    3. 03

      Faz 1: Build Doğrulaması

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

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

      Projenin build olup olmadığını kontrol et

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

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

    Permission review

    Static risk signals and limitations

    Runs scripts

    medium · line 18

    The documentation asks the agent to run terminal commands or scripts.

    npm run build 2>&1 | tail -20

    Runs scripts

    medium · line 20

    The documentation asks the agent to run terminal commands or scripts.

    pnpm build 2>&1 | tail -20

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score61/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars234,327SourceRepository attention, not individual Skill quality
    Compatibility1 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    affaan-m/ECC
    Skill path
    docs/tr/skills/verification-loop/SKILL.md
    Commit
    4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    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.

    Alternatives

    Compare before choosing