Git Skills

SkillDev tools

Git operations including worktrees, branching, and repository management

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Git Skills skill

What this skill tells your AI

The instructions your AI receives, as published by rossoctl/rossoctl in .claude/skills/git/SKILL.md and read by ahel’s review.

Git operations for development workflows.

Sub-Skills

SkillDescription
git:commitCreate properly formatted commits
git:rebaseRebase branches onto upstream main
git:statusShow worktrees with PR status and TODO files overview
git:worktreeManage 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

Signals

GitHub stars
300
Forks
107
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
git-rossoctl
Source
github.com/rossoctl/rossoctl