Agent Skill
2/7/2026git-commit
Iteratively, commit atomic changes to the respository. Use when the user or agent needs to autonomously commit atomic changes to the repository. Employs the "git-add", "git-message", and "git-status" in skills in sequence to perform the commit.
M
mystilleef
3GitHub Stars
1Views
npx skills add mystilleef/llm-agent-skills
SKILL.md
| Name | git-commit |
| Description | Iteratively, commit atomic changes to the respository. Use when the user or agent needs to autonomously commit atomic changes to the repository. Employs the "git-add", "git-message", and "git-status" in skills in sequence to perform the commit. |
name: git-commit description: Iteratively, commit atomic changes to the respository. Use when the user or agent needs to autonomously commit atomic changes to the repository. Employs the "git-add", "git-message", and "git-status" in skills in sequence to perform the commit.
Commit changes in the git repository
GOAL: use the git-add, git-message and git-status skills in
sequence to commit changes in the repository and clean it.
WHEN: use when the user or agent needs to commit changes in the
repository.
NOTE: Await user approval of commit messages before committing.
Make commits only after the user has approved the commit message.
Workflow
Follow these steps in sequence:
Step 1: Stage atomic changes
- Invoke the
git-addskill. - Capture the status from skill output (
SUCCESS,WARN, orERROR). - Handle the status:
- If
ERROR: Halt and report the error to the user. - If
WARN(no files available): Skip to Step 5. - If
SUCCESS(files staged): Continue to Step 2.
- If
Step 2: Generate commit message and await approval
- Invoke the
git-messageskill. - Capture the status from skill output (
APPROVED,REJECTED_EDIT_FILES,REJECTED_REGENERATE,REJECTED_ABORT, orERROR). - Handle the status:
- If
ERROR: Halt and report the error to the user. - If
APPROVED: Continue to Step 3. - If
REJECTED_EDIT_FILES:Unstageall files withgit restore --staged ., then loop back to Step 1. - If
REJECTED_REGENERATE: Loop back to Step 2. - If
REJECTED_ABORT: Halt and report abort to the user.
- If
Step 3: Commit changes
IMPORTANT: To avoid a recursive loop, DON'T invoke the
git-commit skill here.
- Without using the
git-commitskill, perform a direct commit with git using the approved message. - If success: report the commit
SHAand continue to Step 4. - If failure: Halt and report the error to the user.
Step 4: Check for more commits (automatic loop control)
- Run
git status --porcelain=v2to check for remaining changes. - If no changes: Continue to Step 5.
- If changes remain: automatically loop back to Step 1 (no user prompt needed).
Step 5: Present final status
- Invoke the
git-statusskill. DONE
Efficiency directives
- Optimize all operations for agent, token, and context efficiency
- Batch operations on file groups, avoid individual file processing
- Use parallel execution when possible
- Target only relevant files
- Reduce token usage
Skills Info
Original Name:git-commitAuthor:mystilleef
Download