Regenerate plugins/*/skills/ from plugins/*/.apm/ after the previous four commits, via scripts/sync-plugin-content.sh --all. The mirror is generated output (ADR-0017) that check-plugin-content-sync's pre-push hook diffs against .apm/; nothing here is hand-edited. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EeH8SCbcrCAQrtymkNuhKP
git-history
Inspect git history — log queries, bisect, and locating problematic commits.
What it does
This skill handles history inspection within the git workflow suite. It queries logs with pickaxe/line-range/custom formats, runs bisect to find bug-introducing commits, and locates commits for downstream cherry-picking or reverting. It returns structured results for agent composition. Rebase, squash, fixup, and other history-rewriting operations are owned by git-commits, not this skill.
Composition
git-branches delegates revert here (see git-branches's references/merging.md), which is why this skill carries that operation rather than treating it as out of scope; it is general git knowledge, not drawn from the history-inspection.md research corpus. Cherry-pick is not this skill's: git-commits owns it, and this skill's job ends at locating the SHA to hand over. Server-side commit history on a Gitea-hosted repository belongs to gitea-branches; this skill reads the local working copy.
Usage
/git-history
Describe your history task: search logs, bisect for a regression, or locate a specific commit. The skill will query history and return structured results.
Files
| File | Purpose |
|---|---|
SKILL.md |
Skill instructions for agents |
references/bisect.md |
Loaded when the entry procedure is bisect: manual and automated flows, exit codes, skip, replay, narrowing, custom terms |
references/git-log-format.md |
Loaded when a log or diff flag needs looking up: format placeholders, presets, diff-filter letters, -L syntax, ancestry filters, pickaxe binary-file behaviour, diff output-control flags |
references/sources.md |
Research sources and provenance |
references/README.md |
Index of the references directory |