Why: ADR-0015 established that Microsoft APM (apm.yml + .apm/) should replace this repo's hand-authored plugin.json/marketplace.json model, with those files becoming compiled output of `apm pack` instead of files edited by hand via the (now-retired) plugin-author/marketplace-author skills. Issue #90 was the deferred execution of that decision, gated on #88 (apm tooling) and #89 (apm-native agent-author/skill-author routing). Implementation notes: - All six plugins (bin, core, git, gitea, kyberforge, lint) now carry apm.yml + .apm/{skills,agents,hooks} as their authoring source. Skills moved with a plain git mv (content-identical across targets). Agents were re-authored, not moved: per ADR-0016, .apm/agents/*.agent.md compiles verbatim to both Claude and Copilot, so plugin-scope agents now carry only name/description/model/source_keys -- no tools: field, no Claude-only knobs (isolation, maxTurns, effort, memory, permissionMode). - Root apm.yml registers all 7 marketplace packages (6 local plus mattpocock-skills as a remote entry) under versioning: per_package, matching this repo's existing independent-plugin-versioning practice. - .claude-plugin/marketplace.json and every plugin's plugin.json are now apm-pack-compiled output, verified against the prior hand-maintained content: same names/descriptions/versions/licenses/authors, only cosmetic serialization differences (JSON key order, owner email vs. url, Unicode escaping). - plugin-author and marketplace-author are retired now that apm-based authoring fully replaces their job; kyberforge bumped 1.3.1 -> 1.4.0 for that removal, and the root marketplace catalog bumped 0.3.1 -> 0.3.2 to match, per the version-bump convention now documented in apm-workflow's reference docs instead of a dedicated script (apm has no native version-bump automation). - Fixed hardcoded pre-.apm/ path assumptions across .pre-commit-config.yaml, .pre-commit-hooks.yaml, scripts/check-scope-walkup-sync.sh, scripts/sync-vale-styles.sh, scripts/check-vale-style-sync.sh, six plugins' root plugin.json (stale skills/hooks/agents pointer fields that check-manifests.sh validates), and several tests/*.bats and tests/*.sh fixtures -- including a bats REPO_ROOT relative-path depth bug (10 files, one extra .apm/ directory level to walk up) and a vale probe-path isolation regression introduced mid-fix. - Corrected empirically-wrong assumptions surfaced this session in apm-workflow/apm-install's own reference docs: `apm marketplace package add` does not accept local paths (only owner/repo remote shorthand -- local packages are registered by editing apm.yml's marketplace.packages[] directly); `apm compile` is a consumer-side AGENTS.md/CLAUDE.md generator, not the plugin.json producer, and hard-fails on skill/agent-only packages without --clean; `apm plugin init <name>` nests a stray subdirectory when run with a positional name arg from inside a same-named directory; no native Copilot marketplace output profile exists; .mcp.json is merged into the compiled plugin.json content-aware and target-scoped, with no dependencies.mcp entry needed for simple passthrough; pipx is the correct pip fallback on externally-managed Python environments. - Renamed agent-author's copilot.agent.md template asset to copilot.agent.md.template so apm compile's recursive *.agent.md glob stops misparsing the placeholder template as a real agent primitive. Impact: plugin.json and marketplace.json are compiled artifacts from here on -- editing them by hand is no longer the workflow; edit apm.yml/.apm/ and run apm pack. CONTEXT.md's Plugin/Plugin marketplace glossary entries reflect this. ADR-0001 is marked superseded, ADR-0006 moot, and ADR-0010 updated for the new .apm/agents/ path (project/user scope unaffected, per ADR-0016). Full local verification: claude plugin validate --strict on all 6 plugins, apm audit --ci, apm marketplace check, check-manifests.sh, and the full test suite (165/165 bats, 13/13 shell scripts) all pass clean. Fixes: #90 Refs: #88, #89 ADR: 0015 ADR: 0016 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Ub96PyaSRD9BHPktotj1pC
7.5 KiB
name, description, metadata, allowed-tools
| name | description | metadata | allowed-tools | |||||||
|---|---|---|---|---|---|---|---|---|---|---|
| git-history | Inspect git history: query logs with pickaxe, line-range, or custom formats; find bug origins via bisect; locate problematic commits for cherry-picking or reverting. Use when investigating history, tracing when a change happened, or finding the commit that broke something. Return structured results for downstream agents. Do not use for authoring or formatting commit messages, or executing rebase/squash/fixup operations — use git-commits for that. |
|
Bash |
Gotchas
- Pickaxe searches (
-Svs-G):-S"string"finds commits where string count changed;-G"regex"finds any line matching regex in diffs. They're not equivalent: a line replaced (one removal + one addition) matches-Gbut not-Sif count is unchanged. --followonly works for single files: it traces renames but fails with multiple paths or directory globs. Usegit log -- <single-file>or query without--follow.- Bisect with skips: if bisect cannot pinpoint a commit because the culprit is adjacent to skipped commits, it reports "cannot find exact culprit" and lists candidates. This is not a failure — it's as precise as the skip range allows.
- Interactive rebase is non-recoverable on mistake: there's no undo once
rebase -istarts. Suggestgit reflogto recover if the user realizes mid-way they selected the wrong commits. -L(line-range history) requires exact line numbers or regex patterns: off-by-one errors omit the target range. Test the range withgit log -Lbefore offering it to users.
Query Logs and Locate Commits
Default to git log --oneline for quick inspection. For deeper queries:
- Find when a string appeared or disappeared: Use
git log -S"string"(count-sensitive, finds adds/removes). If you need any mention of the string in diffs, usegit log -G"regex"instead. Add--pickaxe-regexto treat the-Sstring as a POSIX ERE, and--pickaxe-allto show every changed file in a matching changeset, not just the matching ones. Binary files are searched by-S;-Gignores them unless--textis also supplied. - Trace changes to a specific line or function: Use
git log -L <start>,<end>:<file>orgit log -L :<function>:<file>(requires function name heuristic). This shows the evolution of that range across all commits. - Filter by change type: Use
git log --diff-filter=<type>(A=added, M=modified, D=deleted, R=renamed) to narrow to specific file operations. - Mainline-only history through merges: Use
--first-parentto follow only the integration branch and skip merged-in side-branch commits; combine with--merges/--no-mergesor--ancestry-path/--min-parents/--max-parentsfor other ancestry-graph filtering — seereferences/git-log-format.mdfor the full set. - Custom format for structured output: Construct format string with
%h(hash),%s(subject),%an(author),%ar(relative date),%b(body). Example:git log --format="%h | %s | %an (%ar)". - File-specific history with renames: Use
git log --follow -- <file>(single file only). Without--follow, log stops at the rename boundary.
Bisect to Find Blame Commit
Use bisect when hunting for the commit that introduced a bug or behaviour change. Binary search reduces iterations from O(N) to O(log N).
Basic manual flow:
git bisect start
git bisect bad [HEAD] # mark current (or specified) as broken
git bisect good <commit> # mark known-good baseline
# Git checks out midpoint; test it manually
git bisect good # if test passes
git bisect bad # if test fails
# Repeat until git reports "X is the first bad commit"
git bisect reset # return to original HEAD
Automated with git bisect run: if a test command exists, use git bisect run <cmd>. Git interprets the exit code: 0=good, 1-124=bad, 125=skip (build broken), 126-127=POSIX shell errors treated as bad, 128+=aborts the bisect session entirely (not treated as bad — a crashed test script can silently end the search).
With skip: if a commit is untestable (broken build), use git bisect skip to exclude it without manually deciding good/bad. If the first-bad is adjacent to skips, bisect reports it cannot pinpoint but lists candidates.
Undoing a wrong good/bad call: git bisect log prints the session's decision history; save it (git bisect log > bisect.log), edit out the mistaken entry, then git bisect reset && git bisect replay bisect.log to resume from the corrected log instead of restarting the whole search.
Narrowing and speeding up the search: git bisect start HEAD v1.2 -- src/ limits bisection to a path, cutting the number of trials. --no-checkout updates the BISECT_HEAD ref instead of checking out a working tree (useful for tests that don't need one; automatic in bare repos). --first-parent follows only first parents at merges, finding the integration commit that introduced a regression while ignoring broken side branches.
Inspecting remaining candidates visually: git bisect visualize (alias view) opens the suspects in gitk; add --stat or -p to show diffstat or full patches instead. Falls back to git log when no graphical display is detected.
For non-regression hunts: use git bisect start --term-new <new> --term-old <old> to search for a property change instead of a bug (e.g., performance regression). Then use the custom terms instead of good/bad.
For rebase execution (interactive rebase, squash/fixup/reword, conflict handling) see git-commits — it owns history-rewriting operations. This skill only locates commits and reports on history; it does not execute rebases.
Find and Manipulate Problematic Commits
Once a commit is identified (via log query or bisect), offer cherry-pick or revert. This section is general git knowledge, not sourced from history-inspection.md — git-branches's SKILL.md explicitly delegates cherry-pick/revert here (see its Merging section), which is why this skill carries them rather than treating them as out of scope:
- Cherry-pick:
git cherry-pick <commit>copies a commit's changes onto current HEAD. Use when backporting fixes to other branches. - Revert:
git revert <commit>creates a new commit that undoes the changes. Use when un-applying a merged commit without rewriting history. - Blame for context:
git blame <file>shows which commit last changed each line. Use to trace a specific line back to its introducing commit.
Inspect Diffs
Diff-output tuning is in scope too: --stat for a diffstat summary, --word-diff for word-level (not line-level) changes, and whitespace flags (-w, --ignore-blank-lines) to suppress noise from reformatting. See references/git-log-format.md for the full flag set.
Return Results Structured
For agent consumption, return:
- Commit SHA (full or abbreviated as appropriate)
- Subject line (from
%s) - Author and date (from
%anand%ar) - Action taken or recommended (e.g., "Found via bisect", "Offer cherry-pick to main", "Rebase conflicts detected")
Example for agent:
Found first bad commit: abc1234
Subject: fix null pointer in parser
Author: Alice (2 weeks ago)
Recommendation: Backport to release branch via cherry-pick
Reference
For the full log format placeholder catalogue, named format presets, --diff-filter letters, -L range syntax, ancestry filters, and git diff output-control flags, read references/git-log-format.md.