finishing-a-development-branch
Installation
SKILL.md
Finishing a Development Branch Skill
Flujo Completo
Fase 1: Preparación Local
# 1. Asegurate que el branch está actualizado
git fetch origin
git rebase origin/main
# 2. Corré todos los tests
go test ./... || npm test || pytest
# 3. Verificá el linter
golangci-lint run || npm run lint || ruff check .