agent-memory-systems

Coordinate in-context, working, long-term, and episodic memory systems for LLM agents.

Updated Feb 21, 2026
One-click install
npx skills add https://github.com/abzhaw/juliaz_agents --skill agent-memory-systems-abzhaw
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agent-memory-systems
Source: https://github.com/abzhaw/juliaz_agents/tree/main/.agent/skills/agent-memory-systems
Command: npx skills add https://github.com/abzhaw/juliaz_agents --skill agent-memory-systems-abzhaw

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Managing memory across sessions for LLM agents to remember user preferences, decisions, and conversation history.

Core Features & Use Cases

  • In-context memory: retain recent context within a single session.
  • Working memory: track task state and bridge queues between agents.
  • Long-term memory: persist user preferences and learnings in a vector store or database.
  • Episodic logs: maintain an audit trail of actions for compliance and analysis.
  • Memory consolidation: summarize and prune old data to stay within token budgets.

Quick Start

Store the current session data into the working and long-term memory stores to preserve context across interactions.

Frequently Asked Questions about agent-memory-systems

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

FAQPage Schema
How do I manage LLM agent memory across multiple sessions?

LLM agent memory across sessions is managed by coordinating in-context, working, long-term, and episodic memory stores. This preserves user preferences, past decisions, and conversation history in persistent storage like a vector store or database.

What's the best way to persist user preferences for an AI agent?

The best way to persist user preferences is using long-term memory stores backed by a vector store or database. This ensures agent preferences and learnings survive beyond a single dialogue session.

How does memory consolidation work for LLM context management?

Memory consolidation for LLM context management summarizes and prunes old data from memory stores. This process keeps the agent's active context within token budgets while retaining essential historical information.

Can I maintain an episodic memory log for agent compliance auditing?

Episodic memory logs are maintained to create an audit trail of agent actions for compliance and analysis. These logs track the sequence of events and decisions across interactions.

Does agent memory persistence work without external dependencies?

Agent memory persistence operates independently with no external dependencies. It structures memory types and applies namespace isolation to safely handle sensitive data across single and multi-session dialogues.

Why does my AI agent forget task state between different conversations?

AI agents forget task state because working memory is typically session-bound. Implementing working memory with bridging queues allows task state to persist and transfer between agents across separate dialogues.