From loopkit
Reads claude-decisions.json and claude-progress.txt at session start to recall prior decisions, preventing re-litigation of settled choices. Useful after /clear or compaction.
How this skill is triggered — by the user, by Claude, or both
Slash command
/loopkit:active-memory-reminderWhen to use
session start, after /clear, after compaction — before touching code; whenever a decision from a prior session is load-bearing for what you are about to do
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Loopkit splits shift-notes across two files on purpose:
Loopkit splits shift-notes across two files on purpose:
claude-progress.txt — free-form prose. Human-readable narrative of what the last session did, what is in flight, what to pick up next. Wins for context and intent. Loses when the model needs to decide whether a decision was made.claude-decisions.json — machine-readable array of {ts, decision} entries, appended by the loopkit pre-compact hook every time the transcript is about to be compacted. Wins for durability of specific choices ("chose Postgres over SQLite because…", "rejected the polling approach", "tried htmx and switched to Alpine").Compaction is where reasoning dies. The summarizer keeps the shape of the work but strips the why. claude-decisions.json is the durable side-channel that survives that. This is the same pattern Meta's NapMem paper calls out for behavioral-state-decay in long-running agents: prose degrades faster than structured facts because the model rewrites prose freely and edits structured data carefully (also why loopkit uses JSON for feature_list.json; see [[feature-list-json]]).
claude-decisions.json right after claude-progress.txt and before you look at code. If both files disagree, the JSON is the more recent hard record of a specific choice; the prose gives you the reason.claude-decisions.json first. If a prior session already rejected X and wrote it down, don't burn the token budget re-deriving that.claude-decisions.json is a JSON array. Every entry is {ts, decision}:
[
{"ts": "2026-07-14T18:22:09Z", "decision": "chose Playwright MCP over Puppeteer because Puppeteer's alert-modal blind spot bit us in run 41"},
{"ts": "2026-07-14T20:04:11Z", "decision": "rejected the daemon-per-project approach; switched to a single supervisor with per-project subdirs"},
{"ts": "2026-07-15T09:31:44Z", "decision": "tried and failed to cache the plan across sessions — plan went stale within two sessions, dropped"}
]
Constraints:
pre-compact hook appends; sessions read.claude-progress.txt so the reason is captured..claude/hooks/pre-compact runs on both manual (/compact) and auto compaction. It skims the transcript for phrases matching decided|chose|rejected|tried and failed|switched from .* to|going with|not going to, dedupes, caps at 20 per compaction, timestamps each, and appends. It is silent-safe: any failure logs to stderr and exits 0 so compaction is never blocked.
claude-progress.txt and skipping claude-decisions.json. You will re-open settled questions. The prose file often omits why we didn't do the other thing — that's what the JSON is for.feature_list.json steps and descriptions: durable structured records are load-bearing. Contradict them in a new entry; don't erase the old one.claude-decisions.json. It is not a second progress file. Entries are single decisions with a timestamp, nothing else.npx claudepluginhub archive228/loopkitPersistent memory protocol that proactively saves decisions, conventions, bugs, and discoveries across sessions. Always active — saves automatically without waiting for user requests.
Manages cross-session memory persistence by saving work history, decisions, and learned patterns to `.claude/memory/`. Useful for continuing work across sessions.
Manages session context across long development sessions using tiered summarization and checkpoints. Enables seamless resume after breaks.