recap

Summarizes recent agent sessions for the current project grouped by date with highlight observations.

3|Updated Oct 25, 2025
One-click install
npx skills add https://github.com/Prismaibrowser/prismspace-web --skill recap-prismaibrowser
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: recap
Source: https://github.com/Prismaibrowser/prismspace-web/tree/main/.agents/skills/recap
Command: npx skills add https://github.com/Prismaibrowser/prismspace-web --skill recap-prismaibrowser

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It answers "what have we been doing" by rolling up recent agent sessions for the current project into a date-grouped summary, so you can reconstruct recent work without digging through raw session logs. ## Core Features & Use Cases - Time-window parsing: Accepts arguments like "today", "this week", "last N", or a bare number to define the recap range, defaulting to the last 10 sessions. - Project-scoped filtering: Filters sessions by matching the session cwd against the current working directory so only relevant project work is summarized. - Highlight extraction: Pulls high-importance observations (importance >= 7) per session via memory_recall and ends with a totals line of sessions, days, and observations. - Use Case: After a week away, ask for a recap of this week and get a date-grouped list of sessions with key decisions, such as "Rotate refresh tokens on every use". ## Quick Start Ask the agent to recap this week's work on the current project.

Frequently Asked Questions about recap

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I recap recent agent sessions for a project?▼

Invoke the recap skill with a window like "today", "this week", or "last 5". It calls memory_sessions, filters results to the current project's cwd, groups them by date, and lists highlights from memory_recall per session.

What time windows does the recap command support?▼

Supported windows are "today" (current local date), "this week" (last 7 days), "last <n>" or a bare number (most recent N sessions), and an empty argument which defaults to the last 10 sessions.

How does recap decide which sessions belong to my project?▼

It matches each session's cwd field against the current working directory and keeps only matching sessions. Sessions from other projects are excluded before the time window is applied.

What happens if there are no sessions in the requested window?▼

An empty window is reported as a real answer, such as "No sessions in the last 7 days for this project." The skill never invents or paraphrases activity that the memory tools did not return.

Why is memory_sessions or memory_recall not available?▼

These tools must be provided by the connected memory backend. If either is unavailable, consult the shared troubleshooting guide at ../_shared/TROUBLESHOOTING.md referenced by the skill.