Agent skill
managing-git-workflow
Automates git commits, push, and PR creation with context-aware messages and ticket extraction. Use when performing git operations, creating commits/PRs, or when user mentions git, GitHub, commit, push, or pull request.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/managing-git-workflow-ether-moon-skill-set
SKILL.md
Managing Git Workflow
Overview
Automates git workflows for commit, push, and PR creation with context-aware message generation and automatic ticket number extraction.
When to Use
- Creating commits with auto-generated messages in project's language
- Pushing changes (with automatic commit if needed)
- Creating PRs (with automatic push and commit if needed)
- When user mentions: git, commit, push, pull request, PR, GitHub
Workflow Selection
| Task | Reference Document | Auto-includes |
|---|---|---|
| Commit only | managing-git-workflow/reference/commit.md |
- |
| Push to remote | managing-git-workflow/reference/push.md |
Commit (if uncommitted changes) |
| Create PR | managing-git-workflow/reference/pr.md |
Push + Commit (if needed) |
Common Principles
Commit Messages:
- Use language specified in project context, prompts, or documentation (default to English if unspecified)
- Follow existing project patterns (analyze with
git log --online -10) - Include ticket numbers (FMT-XXXXX, FLEASVR-XXX, etc.) if found in branch name or changes
Branch Naming:
- Extract ticket numbers from branch names for PR titles
- Use descriptive, concrete names
Helper Scripts:
- Common git operations available in
git-helpers.sh - Use
sourceto load helpers when needed
Quick Reference
# Load helper functions
source $SKILL_DIR/git-helpers.sh
# Check status
has_uncommitted_changes # returns 0 if true
has_unpushed_commits # returns 0 if true
get_current_branch # echoes branch name
check_pr_exists # returns 0 if PR exists
Implementation
For commit workflow: See managing-git-workflow/reference/commit.md
For push workflow: See managing-git-workflow/reference/push.md
For PR workflow: See managing-git-workflow/reference/pr.md
Each reference document provides step-by-step instructions for that specific operation.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?