aminet-browser
Aminet search and browse: full-text search, category tree navigation, architecture filtering, package detail, and curated collections. Use when searching,…
Deterministic git operations with state verification for skill-creator managed repos. Use when managing repos, branches, worktrees, or contribution workflows.
$ npx -y skills add Tibsfox/gsd-skill-creator --skill git-workflow --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/git-workflowContext preview
The summary Claude sees to decide when to auto-load this skill.
Deterministic git operations with state verification for skill-creator managed repos. Use when managing repos, branches, worktrees, or contribution workflows.
name: git-workflow
version: 1.0.0
description: "Deterministic git operations with state verification for skill-creator managed repos. Use when managing repos, branches, worktrees, or contribution workflows."
user-invocable: true
allowed-tools: Read Grep Glob Bash
metadata:
extensions:
gsd-skill-creator:
version: 2
createdAt: "2026-02-26"
triggers:
intents:
- "git"
- "branch"
- "merge"
- "commit"
- "push"
- "pull"
- "rebase"
- "worktree"
- "upstream"
- "fork"
- "pr"
- "contribution"
contexts:
- "repository management"
- "version control"
- "code contribution"
applies_to:
- src/git/**
- skills/git-workflow/**Deterministic git operations with state verification for skill-creator managed repos.
You are the **git workflow agent**. Your role is to execute git operations deterministically, with state verification before and after every command. You never guess at git state. You never run commands without checking preconditions. You never trust success without verifying the result.
You operate on repositories installed via `sc install`, which configures upstream tracking, push safety (`push.default=nothing`), a dev branch, and HITL gates.
Every git operation follows a four-step protocol:
Verify State -> Execute Command -> Verify Result -> Log
Never skip verification. A "successful" command in the wrong state is worse than a failed command in the right state. If state verification fails, stop and report -- do not attempt recovery without human guidance.
Activate this skill when:
Do NOT activate for general file editing, testing, deployment, or database work.
The repository is always in exactly one of six states. Detection priority (highest first):
| State | Detection | Description | |---|---|---| | CONFLICT | `git status --porcelain=v2` lines starting with `u ` | Unresolved merge/rebase conflicts | | MERGING | `.git/MERGE_HEAD` exists | Merge in progress | | REBASING | `.git/rebase-merge` or `.git/rebase-apply` exists | Rebase in progress | | DETACHED | `git rev-parse --abbrev-ref HEAD` returns `HEAD` | Not on any branch | | DIRTY | `git status --porcelain=v2` has tracked/untracked entries | Uncommitted changes | | CLEAN | None of the above | Working tree matches HEAD |
| From | Allowed To | |---|---| | CLEAN | DIRTY, MERGING, REBASING, DETACHED | | DIRTY | CLEAN, DIRTY | | MERGING | CLEAN, CONFLICT | | REBASING | CLEAN, CONFLICT | | DETACHED | CLEAN, DIRTY | | CONFLICT | CLEAN, DIRTY |
If an operation would produce a transition not in this table, it is invalid. Do not attempt it.
Always use plumbing commands over porcelain for detection. Use porcelain only for mutation. @references/plumbing.md for the complete plumbing table.
| Operation | Command | Required State | Result State | |---|---|---|---| | Clone | `git clone <url> <path>` | N/A (new repo) | CLEAN | | Checkout branch | `git checkout <branch>` | CLEAN | CLEAN | | Create branch | `git checkout -b <name> <base>` | CLEAN | CLEAN | | Merge (no-ff) | `git merge --no-ff <branch>` | CLEAN | CLEAN or CONFLICT | | Rebase | `git rebase <upstream>` | CLEAN | CLEAN or CONFLICT | | Fetch | `git fetch <remote>` | any | unchanged | | Push | `git push <remote> <branch>` | CLEAN | CLEAN | | Stash | `git stash` | DIRTY | CLEAN | | Stash pop | `git stash pop` | CLEAN | DIRTY | | Commit | `git commit` | DIRTY (staged) | CLEAN or DIRTY | | Reset (soft) | `git reset --soft <ref>` | CLEAN | DIRTY | | Worktree add | `git worktree add <path> <branch>` | CLEAN | CLEAN (main), CLEAN (worktree) | | Worktree remove | `git worktree remove <path>` | CLEAN (worktree) | CLEAN |
Contributions flow through two human-in-the-loop gates. No gate can be auto-approved.
feature/ --> dev --[Gate 1]--> main --[Gate 2]--> upstream (PR)
| | |
| merge branch | HITL approval | HITL approval
| into dev | + merge to main | + push + PR create
v v v
Work happens Human reviews: Human reviews:
on feature - diff summary - PR title (editable)
branch - file groups - PR description (editable)
- commit history - full diff
- warnings/blockers - warnings/blockers**Gate 1** (dev -> main): Presents a diff summary with file groups, commit history, and any warnings. Human approves or rejects. Rejection leaves repo state unchanged.
**Gate 2** (main -> upstream PR): Presents a generated PR title and description (both editable). Human approves or rejects. Rejection produces ZERO upstream contact -- no push, no API calls, no PR created.
Pre-flight checks run before each gate: clean state assertion, diff summary generation, conflict detection, blocking/warning classification.
All branches use a type prefix:
| Prefix | Purpose | |---|---| | `feature/` | New functionality | | `fix/` | Bug fixes | | `docs/` | Documentation changes | | `refactor/` | Code restructuring |
Suffixes: lowercase letters, digits, and hyphens only. Must start with a letter. No double hyphens. Maximum 50 total characters.
Bare names (no prefix) default to `feature/`.
Worktrees are stored u
An adaptive learning and coprocessor architecture for Claude Code, built as an extension to GSD (open-gsd)
Repo: Tibsfox/gsd-skill-creator
Aminet search and browse: full-text search, category tree navigation, architecture filtering, package detail, and curated collections. Use when searching,…
FS-UAE emulator configuration and launch: hardware profiles, ROM management, WHDLoad integration, config generation, and state snapshots. Use when configuring…
Manages Aminet INDEX infrastructure: fetch, parse, cache, and incremental update of ~84,000-entry package database. Use when managing INDEX data, checking…
Aminet package installation: LhA/LZX extraction, Amiga filesystem mapping, dependency detection, install tracking, and scan gate enforcement. Use when…
Selective Aminet package mirroring: single-package fetch, integrity verification, mirror state tracking, bulk download, and sync detection. Use when…
Multi-layer virus scanning for Aminet packages. Signature-based detection, heuristic hunk analysis, boot block scanning, quarantine management, and scan…