What problem does it solve? Setting up version control is a repetitive first step in every new project, and forgetting it early can lead to lost work. This Skill automates Git repository initialization so a spec-kit project starts with proper version control and an initial commit from the beginning. ## Core Features & Use Cases - Automated Git Initialization: Runs git init, git add, and git commit with a standard initial commit message via Bash or PowerShell scripts. - Idempotent and Safe: Skips initialization if Git is unavailable or the directory is already inside a Git repository. - Graceful Degradation: Warns and continues without Git if it is not installed, so spec creation under specs/ still works. - Use Case: After scaffolding a new spec-kit project, invoke this Skill to immediately place the .specify/ structure and specs under version control with a clean initial commit. ## Quick Start Initialize a Git repository with an initial commit in the current spec-kit project directory.