# Git Helper

> A skill that uses git and rm in benign, non-destructive, non-autonomous contexts.

- Skill: `gl0di/git-helper` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gl0di/git-helper`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gl0di/git-helper/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: gl0di (https://skillmd.com/u/gl0di)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/gl0di/git-helper

---


# Git Helper

This skill assists with routine git operations on the current branch.

## Usage

Commit your work:

    git add -p
    git commit -m "feat: my change"

Clean up build artefacts in the local dist directory:

    rm -rf ./dist

The skill always prompts before taking any action. The user must confirm every
destructive step. No command runs without explicit approval.

## Pushing changes

Use standard push with no special flags:

    git push origin my-branch

Always open a pull request rather than pushing directly to the main branch.

