Source profileQuality 61/100Review permissions

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

verification-loop

Sistema de verificación completo para sesiones de Claude Code.

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

Sistema de verificación completo para sesiones de Claude Code.

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/es/skills/verification-loop"
    Safe inspection promptEditorial

    Inspect the Agent Skill "verification-loop" from https://github.com/affaan-m/ECC/blob/4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38/docs/es/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

      Cuándo Usar

      Invocar este skill: - Después de completar una funcionalidad o cambio de código significativo - Antes de crear un PR - Cuando se quiere garantizar que las compuertas de calidad pasen - Después de refactorizar

      Después de completar una funcionalidad o cambio de código significativoAntes de crear un PRCuando se quiere garantizar que las compuertas de calidad pasen
    2. 02

      Fases de Verificación

      Review the “Fases de Verificación” section in the pinned source before continuing.

      Review and apply the “Fases de Verificación” source section.
    3. 03

      Fase 1: Verificación del Build

      Review the “Fase 1: Verificación del Build” section in the pinned source before continuing.

      Review and apply the “Fase 1: Verificación del Build” source section.
    4. 04

      Verificar si el proyecto compila

      Review the “Verificar si el proyecto compila” section in the pinned source before continuing.

      Review and apply the “Verificar si el proyecto compila” 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/es/skills/verification-loop/SKILL.md
    Commit
    4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Skill de Bucle de Verificación

    Sistema de verificación completo para sesiones de Claude Code.

    Cuándo Usar

    Invocar este skill:

    • Después de completar una funcionalidad o cambio de código significativo
    • Antes de crear un PR
    • Cuando se quiere garantizar que las compuertas de calidad pasen
    • Después de refactorizar

    Fases de Verificación

    Fase 1: Verificación del Build

    # Verificar si el proyecto compila
    npm run build 2>&1 | tail -20
    # O
    pnpm build 2>&1 | tail -20
    

    Si el build falla, DETENER y corregir antes de continuar.

    Fase 2: Verificación de Tipos

    # Proyectos TypeScript
    npx tsc --noEmit 2>&1 | head -30
    
    # Proyectos Python
    pyright . 2>&1 | head -30
    

    Reportar todos los errores de tipo. Corregir los críticos antes de continuar.

    Fase 3: Verificación de Lint

    # JavaScript/TypeScript
    npm run lint 2>&1 | head -30
    
    # Python
    ruff check . 2>&1 | head -30
    

    Fase 4: Suite de Pruebas

    # Ejecutar pruebas con cobertura
    npm run test -- --coverage 2>&1 | tail -50
    
    # Verificar umbral de cobertura
    # Objetivo: mínimo 80%
    

    Reportar:

    • Total de pruebas: X
    • Pasadas: X
    • Fallidas: X
    • Cobertura: X%

    Fase 5: Escaneo de Seguridad

    # Verificar secretos
    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
    
    # Verificar console.log
    grep -rn "console.log" --include="*.ts" --include="*.tsx" src/ 2>/dev/null | head -10
    

    Fase 6: Revisión de Diff

    # Mostrar qué cambió
    git diff --stat
    git diff HEAD~1 --name-only
    

    Revisar cada archivo modificado en busca de:

    • Cambios no intencionados
    • Manejo de errores faltante
    • Casos borde potenciales

    Formato de Salida

    Después de ejecutar todas las fases, producir un reporte de verificación:

    REPORTE DE VERIFICACIÓN
    =======================
    
    Build:      [PASS/FAIL]
    Tipos:      [PASS/FAIL] (X errores)
    Lint:       [PASS/FAIL] (X advertencias)
    Pruebas:    [PASS/FAIL] (X/Y pasadas, Z% cobertura)
    Seguridad:  [PASS/FAIL] (X problemas)
    Diff:       [X archivos modificados]
    
    General:    [LISTO/NO LISTO] para PR
    
    Problemas a Corregir:
    1. ...
    2. ...
    

    Modo Continuo

    Para sesiones largas, ejecutar la verificación cada 15 minutos o después de cambios importantes:

    Establecer un checkpoint mental:
    - Después de completar cada función
    - Después de terminar un componente
    - Antes de pasar a la siguiente tarea
    
    Ejecutar: /verify
    

    Integración con Hooks

    Este skill complementa los hooks PostToolUse pero proporciona una verificación más profunda. Los hooks detectan problemas de inmediato; este skill proporciona una revisión completa.

    Alternatives

    Compare before choosing