with one click
semantic-git
Manage Git commits using conventional commit format with atomic staging. Always generate plain git commands before running them and offer to let the user run them manually.
Menu
Manage Git commits using conventional commit format with atomic staging. Always generate plain git commands before running them and offer to let the user run them manually.
| name | semantic-git |
| description | Manage Git commits using conventional commit format with atomic staging. Always generate plain git commands before running them and offer to let the user run them manually. |
Manage Git commits using conventional commit format with atomic commits and concise messages.
This skill is zagi-aware and is designed to work well with AI IDEs (Cursor, etc.)
zagi (a better git interface for agents).
git is aliased to zagi in the shell orzagi binary is available.git as if it may be zagi-compatible and avoid using exotic flags.git commands and let any git → zagi integration handle them.git when zagi is not available.git commands that will be run (which may be handled by zagi via alias/wrapper), and ask whether the user wants:
<type>[optional scope]: <subject>
[optional body]
[optional footer(s)]
feat: A new featurefix: A bug fixdocs: Documentation only changesstyle: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)refactor: A code change that neither fixes a bug nor adds a featureperf: A code change that improves performancetest: Adding missing tests or correcting existing testsbuild: Changes that affect the build system or external dependenciesci: Changes to CI configuration files and scriptschore: Maintenance tasks (updating build tasks, dependencies, etc.; no production code change)revert: Revert a previous commitUse ! after the type/scope to indicate breaking changes:
feat!: add new APIfix(api)!: change response formatBREAKING CHANGE: <description>test: for test-only changes.pnpm ci, npm run ci, just ci).Construct explicit shell commands using git (which may be an alias or wrapper such as zagi), for example:
git add path/to/file1 path/to/file2
GIT_AUTHOR_DATE="YYYY-MM-DD HH:MM:SS" \
GIT_COMMITTER_DATE="YYYY-MM-DD HH:MM:SS" \
git commit -m "feat: add feature"
Always print these commands to the user in order.
If user requests "continue to X" or "automate until X":
Stop and ask user before:
@ts-ignore, # type: ignore, etc.).any type or similar type escapes.reset --hard, checkout ., clean -f, push --force); prefer safer alternatives and explain the risks.Simple feature or behaviour change:
feat: add user authentication
Feature with scope:
feat(api): add user endpoint
Bug fix:
fix: resolve memory leak in cache
Breaking change:
feat!: migrate to new API version
Test-only change:
test: improve unit tests for auth service
Refactor (no behavior change):
refactor: extract validation logic into separate function
Complex change (with body):
feat(api): add pagination support
Implements cursor-based pagination for large datasets.
See docs/api/pagination.md for details.
For detailed guidance, see:
references/conventional-commits.md – Commit format and examplesreferences/ci-verification.md – CI check patterns and verificationreferences/co-authors.md – Handling Co-Authored-By trailers and zagi co-author strippingCreate AGENTS.md files for project-specific inline rules. Use when adding small, project-specific instructions that should be committed in repos.
Media processing utilities for images, audio, and video using FFmpeg and ImageMagick. Use when working with media conversion, optimization, or batch processing tasks.
Core software engineering principles for code style, documentation, and development workflow. Applies when editing code, working in software repositories, or performing software development tasks.
Python development guidelines and best practices. Use when working with Python code.
Build robust backend systems with modern technologies (Node.js, Python, Go, Rust), frameworks (NestJS, FastAPI, Django), databases (PostgreSQL, MongoDB, Redis), APIs (REST, GraphQL, gRPC), authentication (OAuth 2.1, JWT), testing strategies, security best practices (OWASP Top 10), performance optimization, scalability patterns (microservices, caching, sharding), DevOps practices (Docker, Kubernetes, CI/CD), and monitoring. Use when designing APIs, implementing authentication, optimizing database queries, setting up CI/CD pipelines, handling security vulnerabilities, building microservices, or developing production-ready backend systems.
Build command-line interfaces with async-first design, composable commands, and proper output formatting. Use when creating CLI tools, commands, or interactive terminal applications.