Git Helper
/install legend-git-helper
Git Helper
Handles all git operations through safe, consistent workflows.
Core Workflows
Status Check
Before any git operation, run git status to understand repository state.
Staging
git add \x3Cfile>- Stage specific filesgit add -A- Stage all changesgit add -p- Interactive staging (review hunks)
Committing
Use Conventional Commits format:
\x3Ctype>(\x3Cscope>): \x3Cdescription>
[optional body]
[optional footer]
Types: feat, fix, docs, style, refactor, test, chore
Scope: Optional, usually the component or area affected
Description: Imperative present tense ("add feature" not "added feature")
Push/Pull
git push- Push to remote (default: current branch)git pull --rebase- Fetch and rebase (preferred default)git pull- Fetch and merge (when merge history needed)
Rebasing
git rebase -i HEAD~N- Interactive rebase last N commits- Always confirm branch state before rebasing
- Never rebase shared/public branches without explicit permission
Log/Diff
git log --oneline -N- View last N commitsgit diff- Unstaged changesgit diff --staged- Staged changesgit diff HEAD~N- Changes over last N commits
Safety Rules
- Never force push without explicit user permission
- Always check status before any operation
- Confirm destructive actions (rebase, reset, hard, force push)
- Stay within workspace boundaries - respect user's file access rules
- Pull before push when working with shared branches
When to Read references/workflows.md
Load this reference file when:
- User needs detailed Conventional Commits specification
- Complex rebase/merge scenarios require guidance
- Branch strategy consultation needed
- Conflict resolution guidance required
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install legend-git-helper - After installation, invoke the skill by name or use
/legend-git-helper - Provide required inputs per the skill's parameter spec and get structured output
What is Git Helper?
Git workflow automation for commits, pushes, rebases, status checks, and branch operations. Use when working with git repositories for: (1) Checking status,... It is an AI Agent Skill for Claude Code / OpenClaw, with 215 downloads so far.
How do I install Git Helper?
Run "/install legend-git-helper" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Git Helper free?
Yes, Git Helper is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Git Helper support?
Git Helper is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Git Helper?
It is built and maintained by dougchambers (@dougchambes); the current version is v1.0.0.