rodolfochicone

Rc Commit Msg — Git skill for Claude Code

Git community

Gera uma mensagem de commit convencional a partir do diff staged (não faz commit).

How to install Rc Commit Msg

Installs to ~/.claude/skills/rodolfochicone-rc-project-rc-commit-msg/SKILL.md

Terminal
mkdir -p ~/.claude/skills/rodolfochicone-rc-project-rc-commit-msg && curl -fsSL https://raw.githubusercontent.com/rodolfochicone/rc-project/HEAD/commands/rc-commit-msg.md -o ~/.claude/skills/rodolfochicone-rc-project-rc-commit-msg/SKILL.md

Restart Claude Code, or start a new session, for it to be picked up.

What Rc Commit Msg does


description: Gera uma mensagem de commit convencional a partir do diff staged (não faz commit). allowed-tools: Bash(git status:*), Bash(git diff:*), Bash(git log:*)

Analise apenas as mudanças já em stage e proponha uma mensagem de commit.

Contexto:

  • Status: !git status --short
  • Diff staged: !git diff --staged
  • Estilo recente do repositório: !git log --oneline -10

Gere uma mensagem no formato **Conventional Commits**, seguindo o estilo dos commits recentes acima:

  • Linha de tí

Alternatives in Git

  • Worktree Deliver — Commit all work, push, and create a pull request from the current worktree 23.4k ★
  • OSS PR — Commit + PR workflow for open source contributions: auto-creates a user-prefixed branch when on main/master, t 19.7k ★
  • Yeet — Stage, commit, push code, and open a GitHub pull request via CLI 14.6k ★

Full documentation available on GitHub

View Source Repository