git-repository-workflow

Guide Git repository workflows with branch management, TDD, and PR processes.

Updated Nov 9, 2025
One-click install
npx skills add https://github.com/kokuyouwind/claude-plugins --skill git-repository-workflow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git-repository-workflow
Source: https://github.com/kokuyouwind/claude-plugins/tree/main/plugins/dev-guidelines/skills/git-repository-workflow
Command: npx skills add https://github.com/kokuyouwind/claude-plugins --skill git-repository-workflow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides Git repository workflow guidelines including branch management, testing practices (TDD), Docker environment handling, and PR workflow to ensure quality and traceability.

Core Features & Use Cases

  • Never push to default branches; all changes go through Pull Requests
  • Branch naming conventions: feature/, fix/, refactor/, docs/
  • Testing guidance and Red-Green-Refactor cycle
  • Docker environment considerations for running tests locally
  • PR workflow guidance including templates and reviews

Quick Start

  • Start a new feature: git checkout main && git pull origin main; git checkout -b feature/your-topic; implement; push; open PR