groove-utilities-memory-retrospective
groove-utilities-memory-retrospective
Use $ARGUMENTS to specify period: week (default), month, or all.
Outcome
A period retrospective is output to the conversation: session rating trend, recurring mistake patterns, top learnings captured, and a short workflow health summary. No files are written.
Acceptance Criteria
- Session ratings trend shown (if
learned/signals.mdhas data) - Mistake patterns summarised (from resolved incidents in task backend)
- Top learnings listed by topic (from
learned/*.mddated entries) - Workflow health summary: one sentence on overall trend
- All output goes to conversation only
Steps
-
Memory path is always
.groove/memory/ -
Determine date range from $ARGUMENTS:
week: last 7 days (today - 7)month: last 30 daysall: all available data- Default if absent:
week
-
Session ratings — read
.groove/memory/learned/signals.mdif it exists:- Parse table rows matching the date range:
| YYYY-MM-DD | N/5 | context | - Compute: count, average rating, trend (last 3 vs first 3 if enough data)
- If no data: note "No session ratings recorded yet"
- Parse table rows matching the date range:
-
Mistakes — query the task backend for resolved incidents under "Groove Memory" → "Mistakes":
beans list --parent <mistakes-epic-id> -t bug -s completedfor resolved;-s in-progressfor open- Group by title keywords to identify recurring patterns
- Count total resolved vs open incidents
- If no task backend or no data: note "No incidents recorded yet"
-
Learnings — glob
.groove/memory/learned/*.md(excludesignals.md):- For each file: read and collect dated entries (
## YYYY-MM-DDheadings) within the date range - Group by topic (filename stem)
- Count entries per topic; show the most recent bullet per topic as a sample
- If no files: note "No learnings captured yet"
- For each file: read and collect dated entries (
-
Git activity — run
git log --oneline --since="<start-date>"to count commits in the period as a proxy for work volume -
Output retrospective to conversation in this format:
## Groove Retrospective — <period> (<start-date> to <today>)
### Session Ratings
<count> sessions rated | avg: <N>/5 | trend: <up/down/flat or n/a>
<sparkline of ratings if ≥3 data points, e.g. ▂▄█▆▇>
### Mistakes
<N> incidents resolved | <N> open
Top patterns:
- <root cause pattern> (N occurrences)
- ...
(No recurring patterns) if all unique
### Learnings
<N total entries across <M> topics>
- patterns (<N> entries): <most recent bullet>
- anti-patterns (<N> entries): <most recent bullet>
- ...
### Workflow Health
<git commits in period> commits | <1-sentence summary of overall trend>
e.g. "Stable week — ratings above 4, one incident (resolved), 3 new patterns captured."
Sparkline generation
Use block characters to render a simple ratings sparkline:
- 1/5 → ▁, 2/5 → ▂, 3/5 → ▄, 4/5 → ▆, 5/5 → █
- Only show if ≥ 3 ratings in the period
Constraints
- Read only — do not write to any file
- If a data source file is absent, skip that section gracefully with a one-line note
- Parse table rows defensively: skip malformed rows rather than erroring
- Date filtering: match rows where the
YYYY-MM-DDdate falls within the range; skip rows without a valid date - Output to conversation only — never write to AGENTS.md or memory files
More from andreadellacorte/groove
pdf-to-markdown
[Document Processing] Convert PDF files to Markdown with support for native text PDFs and scanned documents (OCR). Cross-platform.
254agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
251groove
Groove engineering workflow system. Top-level entry point. Use groove-daily-*, groove-work-*, groove-utilities-*, groove-admin-* for all workflow and admin commands.
248find-skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
245groove-utilities-memory-log-daily
Write the daily memory log entry. Use at end of day to record what happened.
235groove-daily-start
Start the workday: review yesterday, create today's daily memory, load tasks, prepare agenda. Use when beginning the day.
231