Create a git commit following Conventional Commits format
Create a well-structured git commit following the Conventional Commits specification.
<type>(<scope>): <subject>
[optional body]
Example: feat(auth): add OAuth2 login support
| Type | Description |
| ---------- | ---------------------------------------------------------------------------- |
| feat | A new feature |
| fix | A bug fix |
| docs | Documentation only changes |
| style | Changes that do not affect the meaning of the code (white-space, formatting) |
| refactor | A code change that neither fixes a bug nor adds a feature |
| perf | A code change that improves performance |
| test | Adding missing tests or correcting existing tests |
| build | Changes that affect the build system or external dependencies |
| ci | Changes to CI configuration files and scripts |
| chore | Other changes that don't modify src or test files |
| revert | Reverts a previous commit |
Subject line:
Body (optional):
Breaking Changes:
feat(api)!: remove deprecated endpointsBREAKING CHANGE: in footergit status to see all changes (never use -uall flag)git diff --staged and git diff to understand the changesgit add <specific-files>git log -1# Feature
git commit -m "feat(auth): add OAuth2 login support"
# Bug fix
git commit -m "fix(api): resolve null pointer in user service"
# Breaking change
git commit -m "feat(api)!: change response format for /users endpoint"
# With body
git commit -m "refactor(components): extract common button styles
Move shared button styles to a dedicated module to reduce duplication
across multiple components."
If $ARGUMENTS is provided:
git add -A or git add . - always add specific filesgit commit -m "$(cat <<'EOF'
type(scope): subject
body text here
EOF
)"
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