Two bundled fixes across the same nine skills, since both touch the same files. Issue #113: skill prose used rtk git and bare git inconsistently for the same operations, with no stated rule for which applied where. Executable instructed commands (a dispatch-table "Run" cell, a fenced code-block procedure, an imperative step) now consistently use rtk git; illustrative or referential mentions -- naming a flag's behavior, quoting a doc heading, warning against an anti-pattern -- stay bare git. Documented in the new plugins/git/README.md, scoped to this plugin only: gitea-* skills talk to the server over MCP tools and carry no git/rtk mentions at all. Also the git-plugin slice of #127: metadata.version added to the eight skills that lacked it. git-commits already had one and is untouched. Fixes: #113 Fixes: #127 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 |