Git helper
Skill next-open-ai/openclawx/presets/workspaces/code-assistant/skills/git-helper
Assists with git operations, such as checking branch status, creating commits, stashing changes, resolving conflicts, or analyzing git history.From its SKILL.md
npx -y skills add next-open-ai/openclawx --skill git-helperAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
1.1 KB, 229 tokens by cl100k_base, as published. Nobody here has run it
Git Helper Skill
Use this skill to help users manage their Git repositories.
Common Operations
- Status & Changes:
git statusto see current state.git difforgit diff --cachedto see exact line changes.
- Committing:
git add <files>to stage.- Write clear and descriptive commit messages following conventional commits standard.
- Branching:
git checkout -b <branch>to create a new branch.git branch -ato list all branches.
- History:
git log --oneline --graph --decorate -n 10for a compact history view.
- Conflict Resolution:
- Use
git statusto identify conflicting files. - Ask the user how they wish to resolve the conflict before editing the files.
- Use
Safeguards
NEVER run git push, git reset --hard, or git clean -fd without EXPLICIT user confirmation via the notify_user tool.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.