بنقرة واحدة
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.