agentsclimarketplace

Git helper

Skill next-open-ai/openclawx/presets/workspaces/code-assistant/skills/git-helper

a simple openclaw desktop u

Install
npx -y skills add next-open-ai/openclawx --skill git-helper

Assembled 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.

What its author says it does

Copied from the file, not written here

Assists with git operations, such as checking branch status, creating commits, stashing changes, resolving conflicts, or analyzing git history.

SKILL.md

1.1 KB, as published. Nobody here has run it

Git Helper Skill

Use this skill to help users manage their Git repositories.

Common Operations

  1. Status & Changes:
    • git status to see current state.
    • git diff or git diff --cached to see exact line changes.
  2. Committing:
    • git add <files> to stage.
    • Write clear and descriptive commit messages following conventional commits standard.
  3. Branching:
    • git checkout -b <branch> to create a new branch.
    • git branch -a to list all branches.
  4. History:
    • git log --oneline --graph --decorate -n 10 for a compact history view.
  5. Conflict Resolution:
    • Use git status to identify conflicting files.
    • Ask the user how they wish to resolve the conflict before editing the files.

Safeguards

NEVER run git push, git reset --hard, or git clean -fd without EXPLICIT user confirmation via the notify_user tool.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.