원클릭으로
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.