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