What problem does it solve? Solo developers often over-engineer Git workflows with develop and release branches they do not need, or work directly on main and risk breaking deployments. This Skill provides a simplified two-tier branching strategy (main + feature/fix) tailored for one-person projects where main is connected to automatic Vercel deployment. ## Core Features & Use Cases - Branch Type Definitions: Enforces clear naming conventions — feature/{kebab-summary} for new work, fix/{kebab-summary} for bug fixes, and main as the deploy branch. - Merge Discipline: Guides the flow of feature and fix branches into main, with a mandatory pre-deploy check before merging since pushing to main triggers Vercel deployment. - Phase-Based Operation: Suggests branch splitting per project phase (e.g., feature/design-{section}, feature/auth, fix/rules-...) so changes like security rule updates stay traceable. - Use Case: When starting a new gallery lightbox feature on a portfolio site, use this Skill to create feature/gallery-lightbox from an up-to-date main, then merge it back after a deploy check and delete the branch. ## Quick Start Create a new feature branch for my next task following the solo project branch strategy and show me the merge steps before deploying to main.