Domains
Forms
Domains
Forms
Mechanism
Breaks down how the skill works and what it produces, so you can quickly judge whether it fits your scenario and value.
When cleaning commit history before merge, applying specific commits across branches, finding bug-introducing commits, working multiple features at once, or recovering from Git mistakes.
details.md for deeper worked examplesClean Git history, efficient multi-branch work, and recovery from lost or broken commits via safety-net reflog.
Use Cases
A developer finds a regression in production but doesn't know which commit caused it. Using this skill's bisect workflow, they run `git bisect start`, mark good/bad commits, and use `git bisect run ./test.sh` to automatically locate the culprit. This saves hours of manual checking and pinpoints the exact change for fix.
An engineer needs to work on an urgent hotfix while mid-way through a feature. Using worktrees from this skill, they run `git worktree add -b bugfix/urgent ../hotfix main` to isolate work without stashing. They later clean up with `git worktree remove`. This enables parallel context-safe development without history mess.
Skill Relationships
Dependency relationships read as "the upper tier points to the lower tier." The current Skill sits in the middle tier — above are Skills that depend on it, below are Skills it depends on.
Tier 1 · These Skills Use Me
Tier 2 · Current Skill
Tier 3 · I Use These Skills
Browse this skill's relationships within its skillset. Click a node to switch the side panel; use the search box to jump to any skill.
Skill File