What problem does it solve?
This Skill addresses the challenge of managing complex Git workflows, particularly for teams that need to balance feature development with stable releases and early access to new features.
Core Features & Use Cases
- Dev-First Workflow: Ensures that all feature development occurs on a 'dev' branch, maintaining a stable 'main' branch for production.
- Early-Access Channels: Provides an 'insiders' branch for early testing and feature previews.
- Branch Naming Conventions: Standardizes branch naming to prevent confusion and streamline the merge process.
- Worktrees for Parallel Development: Allows simultaneous work on multiple issues without branch conflicts.
- Multi-Repo Coordination: Facilitates collaboration across multiple repositories with a clear merge order and testing procedures.
Quick Start
Set up your Squad team and start your first issue branch by running: git checkout dev && git pull origin dev && git checkout -b squad/123-improve-api -b squad/123-improve-api origin/dev