memory

Store and retrieve persistent context across sessions using daily and long-term memory files.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/JBODE-mhhs/Zeus2.0-public --skill memory-jbode-mhhs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: memory
Source: https://github.com/JBODE-mhhs/Zeus2.0-public/tree/main/templates/analyst/.claude/skills/memory
Command: npx skills add https://github.com/JBODE-mhhs/Zeus2.0-public --skill memory-jbode-mhhs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Memory continuity across sessions is difficult when conversations restart, causing loss of context and repeated setup.

Core Features & Use Cases

  • Layered memory model: daily session memory, long-term memory, and a knowledge base for persistent context.
  • Session resilience: automatically logs session-start context, heartbeat notes, and session-end summaries for seamless resumption.
  • Knowledge reuse: ingests memory into a searchable KB for later retrieval across missions and sessions.

Quick Start

Add a daily memory entry for today describing the session's key decisions and user preferences.

Frequently Asked Questions about memory

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I maintain context and memory continuity across different sessions?

To maintain context continuity across sessions, you can use a layered memory model that stores daily session logs in memory/YYYY-MM-DD.md files and centralizes long-term learnings in MEMORY.md, preventing cold starts when conversations restart.

What is the best way to prevent cold starts when resuming a previous coding session?

Preventing cold starts is achieved by automatically logging session-start context, heartbeat updates, and session-end summaries into daily memory files, allowing seamless resumption of previous work without losing context.

How does persistent memory storage work with daily files and a knowledge base?

Persistent memory storage works by writing daily entries to dated markdown files, aggregating durable learnings into a central MEMORY.md file, and optionally ingesting this content into a searchable knowledge base using RAG and ChromaDB.

Can I use RAG and ChromaDB to make my long-term memory searchable across sessions?

Yes, you can make long-term memory searchable across sessions through optional RAG and ChromaDB ingestion, which allows you to retrieve stored context and knowledge base entries for later reuse across different missions.

Do I need a knowledge base to store session context and heartbeat updates?

You do not need a knowledge base to store session context and heartbeat updates, as the system writes daily entries directly to markdown files and a central MEMORY.md file, while the RAG knowledge base is an optional feature for searchable retrieval.