원클릭으로
last-30-minutes
Summarize what you've been doing in the last 30 minutes.
메뉴
Summarize what you've been doing in the last 30 minutes.
Write step-by-step automation instructions for a workflow, tailored to your tool (Claude, n8n or Zapier). Best run right after discover-patterns or process-analyst.
(new) Find a person's repeated tasks from their screen activity, and what each one is worth automating, with the time and money saved. Outputs the numbers and data a report is built from, not the visual. Use to analyze processes, mine workflows, or see what is automatable and what it saves. Every figure is labelled and grounded, never made up.
(new) Turn a process analysis into a polished, client-ready report, first an HTML deck you review, then a matching PDF. Use to package an analysis into an exec report or PDF. Shows the deck for approval before making the PDF, and never makes up numbers.
Generate a time report grouped by client/project
Discover repeated workflow patterns from screen activity and suggest automations
Prepare a MemoryLane release by updating the version and release notes, then creating and pushing the tagged release commit that triggers CI. Use when the user asks to release, ship, publish, bump version, or cut a stable or prerelease version.
| name | last-30-minutes |
| allowed-tools | mcp__memorylane__browse_timeline, mcp__memorylane__search_context, mcp__memorylane__get_activity_details |
| description | Summarize what you've been doing in the last 30 minutes. |
Summarize the user's recent screen activity.
Call browse_timeline(startTime="30 minutes ago", endTime="now", limit=50, sampling="recent_first").
browse_timeline(startTime="2 hours ago", endTime="now", limit=50, sampling="recent_first").From the returned entries:
Only call get_activity_details(ids) when a summary is ambiguous and the exact on-screen text would genuinely help clarify what the user was doing. Do not fetch OCR speculatively.
Format as a brief narrative followed by bullet points:
**Last 30 minutes** (N activities recorded)
You were primarily working on [main task].
- **[App Name]** (~X min) — [what you were doing]
- **[App Name]** (~X min) — [what you were doing]
If the results came from the wider 2-hour window, adjust the heading accordingly.
get_activity_details for ambiguous cases.search_context(query) if the user asks follow-up questions like "what was I doing in Chrome?" or "find that thing I was reading about X".recent_first sampling is used instead of uniform because the user cares most about what just happened, and the window is short enough that uniform sampling would not add value.