# Workflow Patterns > Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol. Source: https://skillsagentes.com/skills/wshobson/agents/workflow-patterns Repository: https://github.com/wshobson/agents Author: wshobson License: MIT Updated: hace 2 meses Context cost: 45 tok installed, 426 tok once triggered, 3.4k tok with every bundled file Bundle: 2 files, 13 KB Permissions requested: none declared ## Install ```bash npx -y skills add wshobson/agents --skill workflow-patterns --agent claude-code ``` ## What it does - Guía la implementación de tareas siguiendo el ciclo TDD red-green-refactor de Conductor - Gestiona checkpoints de fase y espera aprobación antes de continuar - Estructura commits de git pequeños y con notas ricas de contexto - Actualiza plan.md tras completar cada tarea y documenta desviaciones - Aplica gates de calidad y disciplina de cobertura antes de marcar tareas completas ## Use it when - Implementar tareas del plan.md de un track - Seguir el ciclo TDD red-green-refactor - Completar checkpoints de fase - Gestionar commits y notas de git ## What triggers it - "Implementa la siguiente tarea del plan.md siguiendo TDD" - "Necesito hacer el checkpoint de esta fase antes de seguir" - "Ayúdame a redactar el commit con notas de contexto" ## Before you install - Requiere un track con plan.md siguiendo el workflow de Conductor. ## Files - SKILL.md — 2 KB - references/details.md — 12 KB ## SKILL.md Reproduced verbatim from wshobson/agents under MIT. This section is the upstream document and is in English. # Workflow Patterns Guide for implementing tasks using Conductor's TDD workflow, managing phase checkpoints, handling git commits, and executing the verification protocol that ensures quality throughout implementation. ## When to Use This Skill - Implementing tasks from a track's plan.md - Following TDD red-green-refactor cycle - Completing phase checkpoints - Managing git commits and notes - Understanding quality assurance gates - Handling verification protocols - Recording progress in plan files ## Detailed patterns and worked examples Detailed pattern documentation lives in `references/details.md`. Read that file when the navigation tier above is insufficient. ## Best Practices 1. **Never skip RED**: Always write failing tests first 2. **Small commits**: One logical change per commit 3. **Immediate updates**: Update plan.md right after task completion 4. **Wait for approval**: Never skip checkpoint verification 5. **Rich git notes**: Include context that helps future understanding 6. **Coverage discipline**: Don't accept coverage below target 7. **Quality gates**: Check all gates before marking complete 8. **Sequential phases**: Complete phases in order 9. **Document deviations**: Note any changes from original plan 10. **Clean state**: Each commit should leave code in working state 11. **Fast feedback**: Run relevant tests frequently during development 12. **Clear blockers**: Address blockers promptly, don't work around them --- Skills Agentes — https://skillsagentes.com/skills/wshobson/agents/workflow-patterns