Agent Skills: git-workflow

Standard git workflow for feature development

UncategorizedID: JacobFV/me/git-workflow

Install this agent skill to your local

pnpm dlx add-skill https://github.com/JacobFV/me/tree/HEAD/me/agent/skill_templates/templates/git-workflow

Skill Files

Browse the full folder contents for git-workflow.

Download Skill

Loading file tree…

me/agent/skill_templates/templates/git-workflow/SKILL.md

Skill Metadata

Name
git-workflow
Description
Standard git workflow for feature development

Overview

This skill covers the standard git workflow for developing features, fixing bugs, and managing code changes.

When to Use

  • Starting new feature work
  • Fixing bugs
  • Making code changes that should be tracked
  • Preparing code for review

Steps

  1. Check current status

    git status
    git branch
    
  2. Create feature branch (if not on one)

    git checkout -b feature/description
    
  3. Make changes incrementally

    • Small, focused commits
    • Clear commit messages explaining "why"
  4. Stage and commit

    git add <files>
    git commit -m "type: description
    
    Longer explanation if needed"
    
  5. Push and create PR

    git push -u origin feature/description
    

Watch Out For

  • Committing sensitive files (.env, credentials)
  • Large binary files
  • Committing unfinished work to main branch
  • Force pushing to shared branches

Commit Message Format

type: short description

Longer description explaining why this change was made,
not what was changed (the diff shows that).

Refs: #123

Types: feat, fix, docs, style, refactor, test, chore