Selectively commit changes from the current conversation
Commit changes based on the argument provided: $ARGUMENTS
Arguments can be combined in any order:
all: Commit all pending changes in the working directorypush: Push to remote after committinggit status to see all modified and untracked filesgit diff --stat to see a summary of changesgit log -3 --oneline to see recent commit styleall: commit all pending changes, but group them into logical commitsgit add, then commit with a descriptive messagepush: run git push after all commits are completeUse a HEREDOC for proper formatting:
git commit -m "$(cat <<'EOF'
Short summary of changes (imperative mood)
Optional body explaining the "why" if needed.
EOF
)"
all: always break changes into separate logical commits (e.g., separate commits for a component fix vs. README updates)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