一键导入
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.