docs/es/skills/verification-loop/SKILL.md
Sistema de verificación completo para sesiones de Claude Code.
npx skillsauth add affaan-m/everything-claude-code verification-loopInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Sistema de verificación completo para sesiones de Claude Code.
Invocar este skill:
# 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.
# 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.
# JavaScript/TypeScript
npm run lint 2>&1 | head -30
# Python
ruff check . 2>&1 | head -30
# Ejecutar pruebas con cobertura
npm run test -- --coverage 2>&1 | tail -50
# Verificar umbral de cobertura
# Objetivo: mínimo 80%
Reportar:
# 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
# Mostrar qué cambió
git diff --stat
git diff HEAD~1 --name-only
Revisar cada archivo modificado en busca de:
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. ...
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
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.
development
Share durable, inspectable context and handoffs between Claude, Codex, Hermes, Cursor, OpenCode, and other agents through the local ECC Memory Vault. Use when an agent must save work state, transfer context, resume another agent's task, or search shared project knowledge.
development
Use when multiple consumers and providers must evolve an API or event schema without field drift, integration surprises, or one side silently redefining the interface.
tools
Query live GPU inventory, submit an authenticated Itô fixed-rate RFQ, inspect RFQ or procurement status, and run explicitly gated node qualification through the separately installed canonical CLI. Use when a user asks to find H100/H200 capacity, request a fixed compute rate, check Itô compute status, or validate GPU nodes.
data-ai
Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents. v2.1 adds project-scoped instincts to prevent cross-project contamination.