From memory-manager
Summarize and persist session learnings to memory.json. Use this skill when asked to "update memory", "save session context", "record what we learned", "persist decisions", or "update the memory file" at the end of a session or after a task.
npx claudepluginhub ats-kinoshita-iso/agent-workshop --plugin memory-managerThis skill uses the workspace's default tool permissions.
Summarize what happened this session and persist it to `memory.json`.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Analyzes BMad project state from catalog CSV, configs, artifacts, and query to recommend next skills or answer questions. Useful for help requests, 'what next', or starting BMad.
Summarize what happened this session and persist it to memory.json.
Read memory.json from the project root:
/memory-init first and stop.Collect what happened this session from multiple sources:
Run git diff --stat HEAD~1 2>/dev/null || git status --short to see what files changed.
Note the files and the nature of changes.
Review what was worked on:
For any non-trivial design choice made this session, create an architecture entry:
Skip recording:
For each issue encountered this session:
"open""resolved" and add a resolution note"open" and note the blockerAdd a new entry to the sessions array in memory.json:
{
"date": "<today ISO 8601>",
"summary": "<1-2 sentence summary of what was accomplished>",
"changes": [
"<file or component changed: what changed>",
"<file or component changed: what changed>"
],
"next": "<the most important thing to do in the next session>"
}
Keep the summary under 2 sentences. Keep each change entry under 15 words.
Merge the new session entry and any new architecture/issue entries into the existing
memory.json and write the file.
Report: