Lightweight end-of-session memory review — scan the conversation just had for durable lessons and save them into Ralphy's tiered memory (`ralphy memory note`, write-and-tell: every save surfaced in chat, "forget <slug>" honored instantly), so the next session starts already knowing. The chat-native analog of hermes-agent's background self-review: signals are user corrections, frustration ("stop doing X", "I told you already"), durable preferences, model/provider facts discovered the hard way,...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add alecs5am/ralphy --skill memory-review --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Memory Review?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/alecs5am-memory-review)More formats (shields.io, HTML) on the badges page.
---
name: memory-review
namespace: user
description: >-
Lightweight end-of-session memory review — scan the conversation just had for durable lessons and save them into Ralphy's tiered memory (`ralphy memory note`, write-and-tell: every save surfaced in chat, "forget <slug>" honored instantly), so the next session starts already knowing. The chat-native analog of hermes-agent's background self-review: signals are user corrections, frustration ("stop doing X", "I told you already"), durable preferences, model/provider facts discovered the hard way, and non-trivial fixes a future session would re-derive. Lighter than /postmortem — no 7-file set, no LLM call; the agent reads its own conversation and writes 0-5 entries.
USE WHEN the user types "/memory-review", asks "what should we remember from this", "save the lessons", "update your memory", or a work session is wrapping up after >=1 user correction / re-roll / model swap (fire proactively then). DO NOT FIRE when a full postmortem is warranted (>=2 corrections or >=1 CLI gap — that is /postmortem, which ends with `ralphy memory distill`); for capturing ONE remark mid-flight (that is invariant #18 — note it immediately, no review pass needed); for dev-mode sessions on the Ralphy repo itself (lessons go to notes/, not memory).
See body for the signal list, the do-not-capture list, and HARD INVARIANTS.
---
# memory-review — close the loop on the session you just had
The cheap half of Ralphy's learning loop. Recall (`AGENTS.md` step 0) loads
memory INTO a session; this skill writes the session's lessons BACK. Between
them sits invariant #18 (capture corrections the moment they land). Run this
when a session winds down and something was learned but nobody asked for a
full postmortem.
## Workflow
1. **Scan the conversation** for signals, newest first:
- **User corrections** — model pick, register, pacing, aspect, voice,
phrasing the user changed after seeing output. The strongest signal:
it cost the user a turn, and uncorrected it will cost one again.
- **Frustration markers** — "stop doing X", "again?", "I already said",
"why is it doing Y". First-class signals, not noise.
- **Durable preferences** — anything phrased as "always / never / by
default" about look, sound, structure, or workflow.
- **Discovered facts** — a model filter hit, a provider quirk, a flag
that behaved unexpectedly, a workaround that held.
- **Techniques that worked** — a prompt pattern, a recipe, a sequence
that future-you would otherwise re-derive.
2. **Filter through the do-not-capture list** (same as `ralphy memory
distill` and invariant #18):
- environment-dependent failures (missing key/binary/dep) — capture the
FIX if there was one, never the failure;
- negative tool/model claims ("X is broken") — they outlive the bug and
harden into refusals;
- transient errors a retry solved — the lesson is the retry pattern;
- task progress, outcomes, narratives — `logs/` + `postmortem/` territory;
- anything already covered by the repo (MODELS.md, guidelines, playbooks)
or by an existing memory entry that does not need changing.
3. **Dedupe against the store.** For each survivor: `ralphy memory search
<keyword>`. Overlap → re-note the existing slug (the store versions it
up); no overlap → new slug, class-level name (no project ids, no error
strings).
4. **Write directly, tiered (#117 — write-and-tell, no approve ceremony):**
- Every survivor → `ralphy memory note ...`. Client/universe facts get
`--workspace`; cross-project craft/model/tooling stays global.
- Every body carries the rule + `**Why:**` + `**How to apply:**` +
`**Does NOT apply to:**` — a vague negative scope is grounds to keep
drafting (#045 over-application lesson).
5. **Report one tight block in chat:** `saved to memory:` + one line per
slug (description + tier), plus anything deliberately skipped with the
one-word reason (covered / transient / narrative). End with the undo
hint: "say 'forget <slug>' to retire any of these" — and execute
`ralphy memory retire <slug>` the moment the user says so.
## Health check hand-off
While in the store: if `ralphy memory list` shows more than ~70 active
entries in a tier, or any write bounced with `E_MEMORY_CAP_EXCEEDED` this
session, suggest a `ralphy memory curate` pass (#116) — consolidation is its
job, not this skill's.
## HARD INVARIANTS
- **0-5 entries per session.** More means you are logging, not curating —
cut to the ones that change a future decision.
- **Write-and-tell, never write-and-hide (#117).** Saves are automatic but
ALWAYS surfaced in chat (`saved to memory: <slug>`), and "forget" is
honored instantly with `ralphy memory retire`. Transparency is the consent
mechanism — a save the user never saw is a defect.
- **Update over new.** Search first; an overlapping slug is re-noted, never
cloned into a sibling.
- **"Nothing to save" is a valid outcome** — say it in one line and stop.
A session with no corrections and no discoveries produces no entries.
- **English on disk** — memory entries are English regardless of chat
language (translate the user's remark, keep their meaning).
- **No paid calls.** This skill is the agent reading its own conversation —
if you are reaching for `callLLM`, you want `/postmortem` + `ralphy memory
distill` instead.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!