What problem does it solve?
This Skill solves the fragmentation and inconsistency of manual Git operations by enforcing a strict, configuration-driven workflow that ensures branch hygiene, standardized commit messages, and safe merging practices.
Core Features & Use Cases
- Branch Lifecycle Management: Automates the creation, merging, and cleanup of feature, bugfix, hotfix, and release branches based on project-specific rules.
- Worktree Isolation: Manages independent worktrees for parallel task execution, preventing context switching overhead and file conflicts.
- Conventional Commits Enforcement: Ensures all commits follow the Conventional Commits specification in Chinese, maintaining a clean and readable project history.
- Use Case: When starting a new feature, the Skill automatically creates a dedicated worktree, ensures the correct branch is checked out from the master source, and prepares the environment for development.
Quick Start
Use the git skill to create a new feature branch named feature/1000123-add-payment based on the master branch.