From vrumm
Automates the final git flow: stage, commit, push, and open a PR to staging or main. Use when user says "/vrumm-go", "commit and push", "open PR", "finalizar", "subir PR", or asks to commit, push, and create a pull request.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vrumm:vrumm-goThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
---
Automatizar fluxo final: commit, push e abertura de PR para a base escolhida.
Rodar git status e git diff --stat para mostrar ao usuário o que será commitado.
Se não houver mudanças staged nem unstaged, informar e encerrar.
Usar AskUserQuestion para perguntar o que adicionar:
git add .git add -uAskUserQuestion)Se $ARGUMENTS não estiver vazio, usar como mensagem de commit.
Se vazio, usar AskUserQuestion para obter a mensagem.
Prefixar automaticamente com o tipo da branch atual:
fix- → prefixo fix:feat- → prefixo feat:Exemplo final: fix: corrige validação de token expirado
git commit -m "<mensagem-final>"
git push origin HEAD
Usar AskUserQuestion para perguntar o destino do PR:
gh pr create --base <base-escolhida> --title "<mensagem-do-commit>" --body ""
Exibir URL do PR criado ao usuário.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub coldtatooine/vrumm-skill-pack --plugin vrumm