From nanoclip
Persistent memory across work cycles using files. Use when you need to remember decisions, context, or state between cycles. Agents don't have session persistence — this file-based memory system is how you maintain continuity.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nanoclip:nanoclip-memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Agents run in short work cycles with no session persistence. To remember things across cycles, use file-based memory in the workspace.
Agents run in short work cycles with no session persistence. To remember things across cycles, use file-based memory in the workspace.
Store memory files in workspace/.memory/<agent-id>/:
workspace/.memory/
├── alice-smith/
│ ├── decisions.md
│ ├── wip.md
│ └── notes.md
├── bob/
│ ├── architecture.md
│ └── wip.md
└── shared/
├── project-plan.md
└── conventions.md
Always save:
Don't save:
Check if you have prior memory at workspace/.memory/<your-id>/ and read it.
Save important context for next time. Keep it concise and structured.
Write shared context that any agent can read to workspace/.memory/shared/.
npx claudepluginhub bryonjacob/nanoclip --plugin nanoclip3-tier markdown memory protocol (shared/agent/conversation) for cross-session knowledge accumulation. Automatically injects relevant memory into agent context at task start.
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.
Manages persistent memory across sessions with .claude/memory/ for state and .ai/ for architecture/patterns. Guides scratchpad updates, session workflows, and live docs.