ワンクリックで
commit-history
List recent git commits linked to agent sessions, optionally filtered by branch or repo
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
List recent git commits linked to agent sessions, optionally filtered by branch or repo
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Diagnose mempalace setup (config, palace path, MCP, FTS/index health)
List or inspect people/project entities tracked in the mempalace graph
Mine a project directory into the mempalace corpus (drawers, rooms, wings)
Hybrid search over the mempalace corpus (BM25 + vectors + optional graph)
Show mempalace palace status (drawers, wings, rooms, health)
Trace a file, function, or line back to the agent session that produced its current commit
| name | commit-history |
| description | List recent git commits linked to agent sessions, optionally filtered by branch or repo |
| argument-hint | [branch=... repo=... limit=...] |
| user-invocable | true |
The user wants a list of agent-linked commits. Filter args: $ARGUMENTS
Call memory_commits MCP tool with parsed filters, render a reverse-chronological list.
See what an agent has shipped across branches and repos, with links back to the sessions.
$ARGUMENTS for branch=<name>, repo=<url-or-fragment>, limit=<n> tokens. Bare number = limit.memory_commits with the parsed filters.WRONG -- inventing commits when empty:
// No results is fine. Say so and suggest dropping filters.
RIGHT -- graceful empty state:
// No commits matched. Try removing the branch or repo filter.
WRONG -- raw string interpolation in URL fallback:
// Building URL with string concat: `${base}/mempalace/commits?repo=${repo}`
// Breaks when repo URL contains ? or &
RIGHT -- URL encoding:
// Use URLSearchParams or encodeURIComponent on each parameter.
If MCP is unavailable: build GET $MEMPALACE_URL/commits with URL-encoded query params.
See
_shared/TROUBLESHOOTING.mdandEXAMPLES.mdfor more.