Agent skill
git
Git operations including worktrees, branching, and repository management
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/git-kagenti-kagenti
SKILL.md
Git Skills
Git operations for development workflows.
Sub-Skills
| Skill | Description |
|---|---|
git:commit |
Create properly formatted commits |
git:rebase |
Rebase branches onto upstream main |
git:status |
Show worktrees with PR status and TODO files overview |
git:worktree |
Manage git worktrees for parallel development |
When to Use
- Committing code with proper format (
git:commit) - Rebasing branches onto upstream (
git:rebase) - Creating worktrees for parallel development (
git:worktree) - Managing branches across worktrees
- Setting up isolated development environments
Quick Commands
# List worktrees
git worktree list
# Create worktree
git worktree add .worktrees/<name> -b <branch> main
# Remove worktree
git worktree remove .worktrees/<name>
# Prune stale references
git worktree prune
Why Worktrees?
- Parallel development: Work on multiple features simultaneously
- No context switching: Each worktree has its own working directory
- CI-like testing: Test different branches in isolation
- Code review: Check out PRs without affecting your work
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?