원클릭으로
recap
Summarize the last N agent sessions for the current project, grouped by date
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Summarize the last N agent sessions for the current project, grouped by date
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 | recap |
| description | Summarize the last N agent sessions for the current project, grouped by date |
| argument-hint | [last N | today | this week] |
| user-invocable | true |
The user wants a recap. Time window args: $ARGUMENTS
Call memory_sessions, filter by project cwd, apply time window, group by date.
Get a bird's-eye view of recent work without reading every session log.
$ARGUMENTS: today, this week, last N, bare number, empty (default last 10).memory_sessions MCP tool, filter by current project cwd.startedAt descending.WRONG -- inventing sessions when results are empty:
// Just say "No sessions found for that window" instead of fabricating
RIGHT -- honest response:
// "No sessions found for the requested time window (last 10)."
WRONG -- loose cwd prefix match across unrelated repos:
// Using raw prefix match: session.cwd.startsWith("/repo") matches "/repo-staging"
If MCP tools are unavailable: GET $MEMPALACE_URL/sessions and POST $MEMPALACE_URL/smart_search with Authorization: Bearer $MEMPALACE_SECRET.
See
_shared/TROUBLESHOOTING.mdandEXAMPLES.mdfor more.