← ClaudeAtlas

git-opslisted

Full git + worktree orchestrator. Rich status survey, per-worktree triage (prunable/WIP/ghost/orphan), commits, PRs, branches, releases, rebases — reads run inline, writes dispatch to a background Sonnet agent. Triggers on: status, state, where are we, git status, anything to commit, anything to push, commit, push, pull request, create PR, git diff, rebase, stash, branch, merge, release, tag, changelog, semver, cherry-pick, bisect, worktree, worktree survey, prunable worktrees, land worktree.
0xDarkMatter/claude-mods · ★ 22 · Code & Development · score 74
Install: claude install-skill 0xDarkMatter/claude-mods
# Git Ops Intelligent git operations orchestrator. Routes read-only queries inline for speed, dispatches write operations to a background Sonnet agent (`git-agent`) to free the main session. ## Architecture ``` User intent (commit, PR, rebase, status, etc.) | +---> Tier 1: Read-only (status, log, diff, blame) | | | +---> Execute INLINE via Bash (fast, no subagent) | +---> Tier 2: Safe writes (commit, push, tag, PR, stash) | | | +---> Gather context from conversation | +---> Dispatch to git-agent (background, Sonnet) | | +---> Fallback: general-purpose with inlined protocol | +---> Agent executes and reports back | +---> Tier 3: Destructive (rebase, reset, force-push, branch -D) | +---> Dispatch to git-agent (background, Sonnet) | +---> Fallback: general-purpose with inlined protocol +---> Agent produces PREFLIGHT REPORT (does NOT execute) +---> Orchestrator relays preflight to user +---> On confirmation: re-dispatch with execute authority ``` ## Safety Tiers ### Tier 1: Read-Only - Run Inline No subagent needed. Execute directly via Bash for instant results. | Operation | Command | |-----------|---------| | **Status (rich)** | `bash $HOME/.claude/skills/git-ops/scripts/status.sh` — one-shot HEAD + sync + tree + worktrees + branches + PR | | **Worktree survey** | `bash $HOME/.claude/skills/git-o