Agent Skill
2/7/2026create-commit
Create git commit for all uncommitted changes in the repository
A
ashneyderman
0GitHub Stars
1Views
npx skills add ashneyderman/agf
SKILL.md
| Name | create-commit |
| Description | Create git commit for all uncommitted changes in the repository |
name: create-commit description: Create git commit for all uncommitted changes in the repository params: []
Create Git Commit
Create a git commit for all the uncommitted changes in the repository.
Instructions
This skill takes no parameters. It commits all uncommitted changes with an appropriate commit message.
- Refresh Context: Review all the changed files using
git statusandgit diff - Generate Commit Message: Create a clear, concise commit message that summarizes the changes to be committed
- Commit Changes: Commit the changes with the generated commit message
- DO NOT indicate co-authoring attributions in the commit
- Verify Completion: Use
git status --porcelainto check if there are any remaining uncommitted changes- If there are still uncommitted changes, use
git add . && git commit --amend --no-editto add them to the commit
- If there are still uncommitted changes, use
- Save Commit SHA: Extract the short commit SHA from the created commit
Output Format
IMPORTANT: Return a JSON object with this structure:
{
"commit_sha": "<short_commit_sha>",
"commit_message": "<commit_message>"
}
Example Output
{
"commit_sha": "0acf3cf",
"commit_message": "feat: add create_github_pr wrapper method with tests"
}
Skills Info
Original Name:create-commitAuthor:ashneyderman
Download