Agent skill
git-workflow
Standard git workflow for feature development
Install this agent skill to your Project
npx add-skill https://github.com/JacobFV/me/tree/main/me/agent/skill_templates/templates/git-workflow
SKILL.md
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
-
Check current status
bashgit status git branch -
Create feature branch (if not on one)
bashgit checkout -b feature/description -
Make changes incrementally
- Small, focused commits
- Clear commit messages explaining "why"
-
Stage and commit
bashgit add <files> git commit -m "type: description Longer explanation if needed" -
Push and create PR
bashgit 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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
debugging
Systematic approach to debugging software issues
code-review
Systematic code review checklist
memory-management
Managing agent memory for effective recall
obsidian-vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
edit-article
Edit and improve articles by restructuring sections, improving clarity, and tightening prose. Use when user wants to edit, revise, or improve an article draft.
handoff
Compact the current conversation into a handoff document for another agent to pick up.
Didn't find tool you were looking for?