Agent Skill for safely handling the git commit process. Use whenever the user asks to create commits
This skill handles the git commit workflow with a focus on logical grouping and clear documentation.
Analyze State
git status to identify all untracked, modified, and deleted files.git diff (unstaged) and git diff --cached (staged) to examine the actual code changes.Group Changes (Crucial Step)
Draft Commit Messages For each identified commit group:
gitmoji <type>(<scope>): <subject>
feat, fix, docs, style, refactor, test, chore, etc.Execute Commits For each group:
git add <specific_files> (Do not lazy use git add . unless all changes truly belong to one commit).git commit -m "header" -m "body".env files.git status after operations to ensure the working directory state is what you expect.Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer