What problem does it solve?
This Skill helps teams adopt a modern Git worktree workflow, aligns commit messages with conventional formats, and establish PR guidelines to reduce context switching and merge conflicts.
Core Features & Use Cases
- Git Worktree Guidance: Learn how to create and manage multiple worktrees to parallelize feature development.
- Conventional Commits: Follow standardized commit messages to improve changelogs and review efficiency.
- PR Guidelines: Establish best practices for pull requests, including trailers and review expectations.
- Use Case: When developing multiple features simultaneously, create separate worktrees to avoid frequent branch switching and stash usage.
Quick Start
Run:
git worktree add ../project-feature-auth feature/user-authentication
git worktree add ../project-bugfix-api hotfix/api-validation
git worktree list
git commit -m "feat(auth): add JWT login"