From agentreplay
Store knowledge, code findings, conventions, or any text into Agent Replay's local memory. All data stays on your machine.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentreplay:memory-storeThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Save information to Agent Replay's local memory for later retrieval.
Save information to Agent Replay's local memory for later retrieval.
node "${CLAUDE_PLUGIN_ROOT}/scripts/add-memory.cjs" "CONTENT_TO_STORE"
Save a convention:
node "${CLAUDE_PLUGIN_ROOT}/scripts/add-memory.cjs" "Convention: This project uses camelCase for variables and PascalCase for types. Files are organized by feature, not by type."
Save architecture info:
node "${CLAUDE_PLUGIN_ROOT}/scripts/add-memory.cjs" "Architecture: The server uses Axum with embedded HNSW vector index. API routes are in server.rs, memory endpoints in memory.rs. Port 47100."
Save a finding:
node "${CLAUDE_PLUGIN_ROOT}/scripts/add-memory.cjs" "Key file: src/server.rs handles all HTTP routes. The trace query logic starts at the query_traces function. Project ID 49455 is reserved for Claude Code."
The script confirms storage with document ID. Data is saved locally and searchable via the memory-search skill.
All data stays on your machine - no external servers involved.
npx claudepluginhub agentreplay/agentreplay-claude-plugin --plugin agentreplaySaves key project knowledge explicitly to MEMORY.md via /si:remember for reliable recall. Checks duplicates, warns on size, suggests CLAUDE.md promotion.
Manages persistent local memory in .nemp/memories.json for Claude Code agents, storing project stack, architecture decisions, user preferences, and enabling cross-session context retention.
Saves architectural decisions, patterns, conventions, or project knowledge to personal or team Cognis persistent memory using node scripts.