git

Automate rule-driven Git workflows from staging through pushing.

5|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/humblemuzzu/ghosttyyy --skill git-humblemuzzu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git
Source: https://github.com/humblemuzzu/ghosttyyy/tree/main/pi-setup/config-skills/git
Command: npx skills add https://github.com/humblemuzzu/ghosttyyy --skill git-humblemuzzu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enforces safe, opinionated Git workflows for agents, guiding them through staged commits, ship/push cycles, and structured work trees while avoiding dangerous commands.

Core Features & Use Cases

  • Enforces explicit staging to prevent unintended changes and rejects git add -A
  • Provides a repeatable pipeline: stage → commit → push
  • Supports worktree-based parallel branches for concurrent features
  • Enables selective staging with hunks to craft precise commits
  • Enforces conventional-commit style messages for consistency and automation

Quick Start

Stage files explicitly, commit with a conventional message, and push to the remote repository using the guided workflow.

Frequently Asked Questions about git

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate safe git workflows for AI agents?

Automating safe git workflows for AI agents involves enforcing explicit file staging and guiding the process from commit to push. This prevents unintended changes by rejecting dangerous commands like git add -A and prompting for confirmation when needed.

What is the best way to enforce conventional commit messages in an automated pipeline?

Enforcing conventional commit messages in an automated pipeline requires a rule-driven workflow that validates the commit format during the staging process. This ensures consistency and enables automation by structuring commit messages according to established conventions.

How do I manage parallel git branches for concurrent features using worktrees?

Managing parallel git branches for concurrent features uses worktree-based workflows to isolate development environments. This allows agents to work on multiple features simultaneously without interfering with the main working directory or mixing unrelated changes.

Can I selectively stage specific hunks to craft precise git commits?

You can selectively stage specific hunks to craft precise git commits by using guided staging workflows. This enables agents to isolate individual code changes within a file, ensuring that each commit contains only the relevant modifications.

How to prevent AI agents from running dangerous git commands like force pushes?

Preventing AI agents from running dangerous git commands like force pushes requires an opinionated workflow that blocks these operations by design. The workflow intercepts risky actions and prompts for explicit human confirmation before executing any irreversible git commands.