hierarchical-memory

hierarchical-memory is a skill for Claude Code, Codex from AnthonyAlcaraz/agentic-graph-rag-skills. It costs 151 tokens per session (2,108 once invoked), scanned A, original, MIT.

A three-level memory design for long-running agents: a small active working area, a searchable record of past conversations, and persistent storage for older facts. This follows the Letta/MemGPT pattern.

In plain words
What is it for?
Use it in assistants that work across multiple sessions and need to recall past conversations while preserving important older information.
Why use it?
It keeps frequently needed context available without forcing the agent to keep every conversation detail in its limited working space.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it in assistants that work across multiple sessions and need to recall past conversations while preserving important older information.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anthonyalcaraz/agentic-graph-rag-skills/hierarchical-memory
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AnthonyAlcaraz/agentic-graph-rag-skills --skill hierarchical-memory
Clone the repo
git clone --depth 1 https://github.com/AnthonyAlcaraz/agentic-graph-rag-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hierarchical-memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/anthonyalcaraz/agentic-graph-rag-skills/hierarchical-memory/github.svg)](https://agentmods.dev/skills/anthonyalcaraz/agentic-graph-rag-skills/hierarchical-memory)
Your own site
<a href="https://agentmods.dev/skills/anthonyalcaraz/agentic-graph-rag-skills/hierarchical-memory"><img src="https://agentmods.dev/badge/skills/anthonyalcaraz/agentic-graph-rag-skills/hierarchical-memory/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hierarchical-memory

Your own site · 80×15
<a href="https://agentmods.dev/skills/anthonyalcaraz/agentic-graph-rag-skills/hierarchical-memory"><img src="https://agentmods.dev/badge/skills/anthonyalcaraz/agentic-graph-rag-skills/hierarchical-memory.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 151 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,108 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00151 $0.02108
Opus 5 $0.00076 $0.01054
Sonnet 5 $0.00030 $0.00422
Haiku 4.5 $0.00015 $0.00211

Measured 11d ago against content hash 339fbc19df56, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

hierarchical-memory scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (cli.py, lib.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/memory/hierarchical-memory/SKILL.md · 145 lines

How it starts

The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Hierarchical Memory (Letta / MemGPT)

Overview

Letta popularizes a three-tier memory architecture that mirrors human cognition and CPU memory hierarchy. The architectural decomposition (Ch4):

  • Core memory (cache layer): small, fast, structured. The agent's active reasoning context. Bounded (core_limit parameter). Once full, eviction is forced — you cannot have everything in core. This is the forcing function that pushes the agent to declare what is durably important.
  • Recall memory (raw interaction layer): the literal conversation history. Append-only. Answers "what did we talk about yesterday."
  • Archival memory (persistent layer): effectively unlimited storage for evicted-but-still-relevant facts. Searchable. Not deleted.

Eviction is the key discipline. Naive FIFO (oldest goes first) loses high-value durable facts that were learned early. Naive LRU (least-recently- used) loses background-but-relevant context. The chapter recommends a combined score: access frequency × recency, with explicit handling for "durable attributes" (peanut allergy) vs "short-lived states" (having coffee right now).

When to Use

  • Long-running personal assistant agents — multi-session, must feel consistent over time
  • Multi-day DevOps incident investigation where some facts (production region, on-call rotation) are durably important and others (current shell history) rotate fast
  • Customer-support agents that need both "what we know about this customer" (core) and "what was said in last week's tickets" (archival)

Phrases that should invoke this skill: "the agent needs memory across sessions", "core context", "evict old memory", "MemGPT", "Letta hierarchy", "working memory vs long-term memory".

When NOT to Use

  • One-shot agents. Single-prompt, no persistence — flat context is correct. The eviction overhead pays for nothing.
  • Event logs / audit trails. Use append-only kafka-style logs. The recall layer here is interaction-oriented, not event-oriented.
  • Every fact equally important. Then a flat KV store is right. The hierarchy exists because some facts are more important than others; if that gradient doesn't exist, the hierarchy is overhead.
  • Hard real-time eviction is too slow. Default impl is O(n) on eviction. Production needs a heap for evict_least_used. Swap the internal index at the seam noted in lib.py.

Read the full file on GitHub · 145 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 145 lines · 151 tokens per session scan A 339fbc19df56

Subscribe to this mod's changes

hierarchical-memory is a skill published in the GitHub repository AnthonyAlcaraz/agentic-graph-rag-skills (10 stars, last pushed 2mo ago), licensed MIT. It adds 151 tokens to every session and 2,108 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

lemmalog

Externalize working memory and logical state into the lemmalog Datalog engine (MCP). Use for ANY multi-step task where state should outlive one context window or span agents: long investigations, debugging sessions, audits, multi-agent searches, systematic explorations, planning with many interdependent constraints…

JordyZomer/lemmalog · 105 tokens

library

Sync agent memory files to a Cortex knowledge graph for enhanced retrieval, hybrid search (vector + keyword + graph), AI-powered Q&A with agentic deep research, and knowledge graph exploration.

mocaOS/cortex-app · 39 tokens

openclaw

Persistent memory for agents. Stores preferences, decisions, facts, and events as a connected knowledge graph. Recalled by who, what, when, or why.

hypabase/hypabase · 32 tokens

graph-ask

Ask any natural language question about the memory graph. You generate Cypher directly and execute it. Use when the user has a complex or ad-hoc question that the standard graph tools don't cover.

stevepridemore/graph-memory · 43 tokens

ingest-audio

Transcribe a local audio or video file using Whisper and ingest it into the memory graph. Use when the user has a local MP3, WAV, M4A, MP4, or similar audio/video file they want to add to their knowledge graph.

stevepridemore/graph-memory · 56 tokens

ingest

Ingest a file or URL into the memory graph. Handles local files (text, PDF, DOCX, XLSX, images, etc.) and URLs (web pages, YouTube, Wikipedia, RSS). Use when the user wants to add any document or web content to their knowledge graph.

stevepridemore/graph-memory · 62 tokens