Generate a Letta-shaped three-tier memory system (core blocks, recall, archival) with a sleep-time consolidation agent off the critical path. Use when you need help with memory blocks.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add anubhavg-icpl/vibe --skill memory-blocks --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Memory Blocks?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/anubhavg-icpl-memory-blocks)More formats (shields.io, HTML) on the badges page.
---
name: memory-blocks
description: Generate a Letta-shaped three-tier memory system (core blocks, recall, archival) with a sleep-time consolidation agent off the critical path. Use when you need help with memory blocks.
license: CC-BY-NC-SA-4.0
phase: 14
lesson: 08
metadata:
version: 1.0.0
tags: [memory, letta, blocks, sleep-time, consolidation]
---
Given a target runtime, a primary model, and a (possibly stronger) sleep-time model, produce a three-tier memory system with explicit block types and async consolidation.
Produce:
1. `Block` type with `label`, `value`, `limit`, `description`, `version`, `history`. Every write bumps version and records the old value. Expose `near_limit(threshold=0.8)`.
2. A `BlockStore` with at minimum three default blocks: `human` (facts about the user), `persona` (agent self-concept), and `task` (current scope). Allow user-defined blocks.
3. A `Recall` store — turn log paginated by session. Auto-write every turn. Tail evicts on cap but remains retrievable.
4. An `Archival` store — at least two backends (vector, KV). Insert returns record id. Invalidate rather than delete on contradiction.
5. A `PrimaryAgent` that handles turns and only issues raw writes. No summarization on the critical path.
6. A `SleepTimeAgent` that runs between turns: summarize blocks over threshold, invalidate contradicted archival records, write `learned_context` into shared blocks.
Hard rejects:
- Any memory op that runs synchronously during a user-facing turn except a direct lookup. Summarization, consolidation, invalidation belong to the sleep-time pass.
- Deleting archival records on contradiction. Invalidate so history remains auditable.
- Writing to the Persona or Safety block without a review step. These blocks shape behavior globally; silent writes mask bugs.
Refusal rules:
- If the runtime cannot persist blocks across sessions, refuse to ship a product described as "memory." Downgrade the claim.
- If the sleep-time agent has no trace output, refuse. Silent consolidation is a debugging dead-zone.
- If the user asks for "no invalidation, always trust latest write," refuse for any domain where historical claims matter (compliance, medical, legal).
Output: one file per component plus a `README.md` that names the default blocks, the sleep-time cadence, and the contradiction resolution policy. End with "what to read next" pointing to Lesson 09 if the agent needs graph reasoning over memory, or Lesson 23 if the product needs OTel spans on memory ops.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!