spec-kitty-git-workflow
Understand how Spec Kitty manages git: what git operations Python handles automatically, what agents must do manually, worktree lifecycle, auto-commit behavior, merge execution, and the safe-commit pattern. Triggers: "how does spec-kitty use git", "worktree management", "auto-commit", "who commits what", "git workflow", "merge workflow", "rebase WPs", "worktree cleanup", "safe commit". Does NOT handle: runtime loop advancement (use runtime-next), setup or repair (use setup-doctor), mission selection (use mission-system).
Best use case
spec-kitty-git-workflow is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Understand how Spec Kitty manages git: what git operations Python handles automatically, what agents must do manually, worktree lifecycle, auto-commit behavior, merge execution, and the safe-commit pattern. Triggers: "how does spec-kitty use git", "worktree management", "auto-commit", "who commits what", "git workflow", "merge workflow", "rebase WPs", "worktree cleanup", "safe commit". Does NOT handle: runtime loop advancement (use runtime-next), setup or repair (use setup-doctor), mission selection (use mission-system).
Teams using spec-kitty-git-workflow should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/spec-kitty-git-workflow/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How spec-kitty-git-workflow Compares
| Feature / Agent | spec-kitty-git-workflow | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Understand how Spec Kitty manages git: what git operations Python handles automatically, what agents must do manually, worktree lifecycle, auto-commit behavior, merge execution, and the safe-commit pattern. Triggers: "how does spec-kitty use git", "worktree management", "auto-commit", "who commits what", "git workflow", "merge workflow", "rebase WPs", "worktree cleanup", "safe commit". Does NOT handle: runtime loop advancement (use runtime-next), setup or repair (use setup-doctor), mission selection (use mission-system).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
SKILL.md Source
# spec-kitty-git-workflow Understand the boundary between what spec-kitty's Python code does with git and what LLM agents are expected to do. This boundary is critical — agents that try to create worktrees manually or skip implementation commits will break the workflow. --- ## The Core Boundary **Python handles infrastructure git** — worktrees, lane commits, merges, cleanup. **Agents handle content git** — implementation commits, rebases, conflict resolution. | Git Operation | Who Does It | When | |---|---|---| | `git worktree add` | Python | `spec-kitty implement WP##` | | `git commit` (planning artifacts) | Python | Before worktree creation | | `git commit` (lane transitions) | Python | WP moves to doing/for_review | | `git commit` (implementation code) | **Agent** | After writing code in worktree | | `git rebase` (stale lane sync) | **Agent** | When the mission branch advanced and the lane must resync | | `git merge` (lane → mission → target) | Python | `spec-kitty merge` | | `git push` | Python (opt-in) | `spec-kitty merge --push` only | | `git push` | **Agent** | Any other push scenario | | Conflict resolution | **Agent** | During rebase or manual merge | | `git worktree remove` | Python | After successful merge | | `git branch -d` (cleanup) | Python | After successful merge | --- ## What Python Does Automatically ### 1. Worktree Creation When you run `spec-kitty implement WP01`, Python: ``` git worktree add -b kitty/mission-042-mission-lane-a .worktrees/042-mission-lane-a main ``` It also records the lane workspace context in `.kittify/workspaces/<feature>-<lane>.json` so later commands resolve the same lane worktree deterministically. The agent never creates worktrees. Always use `spec-kitty implement`. For dependent WPs in the same execution lane: ``` spec-kitty implement WP02 ``` This reuses the lane worktree instead of creating a second workspace: ``` # WP02 reuses .worktrees/042-mission-lane-a ``` ### 2. Planning Artifact Auto-Commits Before creating a worktree, Python checks if `kitty-specs/042-mission/` has uncommitted changes on the primary branch. If so, it auto-commits: ``` git add -f kitty-specs/042-mission/ git commit -m "chore: Planning artifacts for 042-mission" ``` **Controlled by:** `auto_commit: true` in `.kittify/config.yaml` (default: true). Can be disabled per-command with `--no-auto-commit`. ### 3. Lane Transition Auto-Commits When a WP moves to `doing` or `for_review`, Python uses the **safe-commit pattern** to commit only the WP frontmatter file: - Moving to doing: `"chore: Start WP01 implementation [claude]"` - Moving to for_review: `"chore: Start WP01 review [claude]"` **The safe-commit pattern** prevents accidentally committing agent work-in-progress: 1. Stash current staging area 2. Stage only the target files (WP frontmatter, status artifacts) 3. Commit 4. Pop stash to restore previous staging ### 4. Status Event Log (No Auto-Commit) `emit_status_transition()` appends to `status.events.jsonl`, updates `status.json`, and modifies WP frontmatter — but does **NOT** auto-commit these files. They accumulate as uncommitted changes until the next lane transition auto-commit or the agent commits them. This is by design — status changes happen frequently and committing each one would create excessive git noise. ### 5. Merge Execution `spec-kitty merge --mission 042-mission` runs the full merge sequence: ``` git checkout main git pull --ff-only # sync with remote git merge --no-ff kitty/mission-042-mission git worktree remove .worktrees/042-mission-lane-a --force git branch -d kitty/mission-042-mission-lane-a ``` Merge order follows the dependency graph (topological sort). Supports 3 strategies: `merge` (--no-ff, default), `squash`, `rebase`. `--push` is opt-in — without it, the merge is local only. ### 6. Pre-flight Validation (Read-Only) Before merge, Python validates: 1. All expected WPs have worktrees 2. All worktrees are clean (`git status --porcelain`) 3. Target branch is not behind origin (`git rev-list --left-right --count`) 4. WPs in done lane with missing worktrees are skipped (already merged) If any check fails, merge is blocked with specific error messages. --- ## What Agents Must Do ### 1. Implementation Commits All actual code work must be committed by the agent. Python creates the worktree but never commits code: ```bash cd .worktrees/042-mission-lane-a # ... write code, run tests ... git add src/ tests/ git commit -m "feat(WP01): implement auth middleware" ``` **Validation:** When the agent tries to move WP to `for_review`, spec-kitty checks that the worktree has commits ahead of the base branch (`git rev-list --count <base>..HEAD`). If zero commits, the transition is rejected. ### 2. Rebasing a Lane Workspace If a lane branch has advanced while you were away: ```bash cd .worktrees/042-mission-lane-a git rebase kitty/mission-042-mission-lane-a ``` Python displays the lane workspace and branch, but the agent resolves conflicts and completes the rebase manually when needed. ### 3. Multi-Dependency Work Task finalization computes a lane that already contains the required dependency shape. Agents do not choose one dependency as a manual base and do not manually merge sibling lane outputs to reconstruct the lane. ### 4. Pushing `spec-kitty merge` only pushes with `--push`. All other pushing is the agent's responsibility. ### 5. Conflict Resolution If `spec-kitty merge` encounters conflicts, the agent must resolve them. Python does not attempt automatic conflict resolution. --- ## Auto-Commit Configuration ```yaml # .kittify/config.yaml auto_commit: true # default ``` When `true`, spec-kitty auto-commits: - Planning artifacts before worktree creation - WP frontmatter on lane transitions (doing, for_review) When `false`, agents must commit everything manually. Per-command override: `--no-auto-commit` flag on `spec-kitty implement`. --- ## Worktree Lifecycle ``` 1. CREATED spec-kitty implement WP01 → git worktree add -b kitty/mission-042-mission-lane-a .worktrees/042-mission-lane-a main → .kittify/workspaces/042-mission-lane-a.json created 2. ACTIVE (agent works here) cd .worktrees/042-mission-lane-a → agent writes code, commits, tests → WP status: in_progress 3. FOR REVIEW spec-kitty agent tasks move-task WP01 --to for_review → auto-commit: "chore: Start WP01 review" → reviewer checks the diff 4. MERGED spec-kitty merge --mission 042-mission → git merge --no-ff kitty/mission-042-mission-lane-a → git worktree remove .worktrees/042-mission-lane-a --force → git branch -d kitty/mission-042-mission-lane-a → .kittify/workspaces/042-mission-lane-a.json removed 5. CLEANED UP Worktree directory gone, branch deleted, workspace context removed ``` --- ## No Git Hooks Spec-kitty does NOT use git hooks. Feature 043 replaced the pre-commit hook (which handled UTF-8 encoding validation) with a Python codec layer (`src/specify_cli/codec/`). No `.git/hooks/` files are installed or managed. --- ## Key Anti-Patterns 1. **Agent creates worktree manually** — Don't `git worktree add` yourself. Use `spec-kitty implement`. Manual worktrees won't have workspace context, canonical workspace context, or proper branch naming. 2. **Agent commits in main repo during implementation** — Implementation commits belong in the worktree, not in the main repo. The main repo is for planning artifacts only. 3. **Agent pushes without being asked** — Never auto-push. Only push when the user explicitly requests it or when using `spec-kitty merge --push`. 4. **Agent modifies other WPs from a worktree** — Each worktree is isolated to one WP. Don't modify files belonging to other WPs. 5. **Agent skips commits before for_review** — Spec-kitty validates that worktree has commits ahead of base before accepting the transition. --- ## References - `references/git-operations-matrix.md` -- Complete matrix of every git command spec-kitty runs
Related Skills
spec-kitty-setup-doctor
Install, verify, and recover the modern Spec Kitty 2.0.11+ operating surface. Triggers: "set up Spec Kitty", "skills missing", "next is blocked", "runtime is broken", "doctrine assets are missing", "my agent can't find the skills". Does NOT handle: generic coding questions with no Spec Kitty context, direct runtime loop advancement, or editorial glossary maintenance.
spec-kitty-runtime-review
Review runtime-owned outputs using the Spec Kitty review workflow surface, then direct approval or rejection with structured feedback. Triggers: "review this work package", "check runtime output", "approve this step", "review WP", "is this WP ready to approve", "check this implementation". Does NOT handle: setup-only repair requests, direct implementation work, editorial glossary maintenance, or runtime loop advancement.
spec-kitty-runtime-next
Drive the canonical spec-kitty next --agent <name> control loop for mission advancement. Load agent profiles at init, apply action-scoped doctrine context at each step boundary, and pull specific tactics/directives on demand. Triggers: "run the next step", "what should runtime do next", "advance the mission", "what is the next task", "continue the workflow", "what step comes next". Does NOT handle: setup or repair requests, purely editorial glossary or doctrine maintenance, or direct code review.
spec-kitty-orchestrator-api-operator
Teach agents and external systems how to use spec-kitty orchestrator-api to drive workflows from outside the host CLI. Triggers: "use orchestrator-api", "build a custom orchestrator", "automate externally", "integrate CI with spec-kitty", "call spec-kitty from another tool", "orchestrator contract", "external automation". Does NOT handle: host-internal lane mutation (use the host CLI directly), runtime loop advancement (use spec-kitty next), mission sequencing logic (the mission state machine owns that), or setup/repair diagnostics.
spec-kitty-mission-system
Understand how Spec Kitty missions work: the 4 built-in mission types, how they define workflows via step contracts and action indices, how missions and work packages relate, how templates are resolved through the 5-tier chain, and how doctrine artifacts (procedures, tactics, directives) compose mission behavior. Triggers: "what missions are available", "how do missions work", "which mission should I use", "explain the mission system", "what is a mission", "change the mission", "mission templates", "step contracts", "action index", "mission procedures". Does NOT handle: runtime loop advancement (use runtime-next), setup or repair (use setup-doctor), governance (use charter-doctrine), or glossary curation (use glossary-context).
spec-kitty-glossary-context
Curate and apply canonical terminology across Spec Kitty missions. Triggers: "update the glossary", "use canonical terms", "check terminology", "add a term", "fix term drift", "glossary conflicts", "resolve ambiguity", "review terminology consistency". Does NOT handle: runtime loop advancement, setup or repair requests, agent configuration, or direct code implementation tasks.
spec-kitty-constitution-doctrine
Run constitution interview, generation, context, and sync workflows for project governance in Spec Kitty 2.x. Triggers: "interview for constitution", "generate constitution", "sync constitution", "use doctrine", "set up governance", "constitution status", "extract governance config". Does NOT handle: generic spec writing not tied to governance, direct runtime loop advancement, setup/repair diagnostics, or editorial glossary maintenance.
claude-win11-speckit-update-skill
Windows 11 system management
n8n Workflow Mastery — Complete Automation Engineering System
You are an expert n8n workflow architect. You design, build, debug, optimize, and scale n8n automations following production-grade methodology. Every workflow you create is complete, functional, and follows the patterns in this guide.
Home Inspection Business Operations
Run a profitable home inspection business with real numbers, compliance checklists, and growth playbooks.
n8n-workflow-automation
Designs and outputs n8n workflow JSON with robust triggers, idempotency, error handling, logging, retries, and human-in-the-loop review queues. Use when you need an auditable automation that won’t silently fail.
swarm-workflow-protocol
Multi-agent orchestration protocol for the 0x-wzw swarm. Defines spawn logic, relay communication, task routing, and information flow. Agents drive decisions; humans spar.