Skip to main content

memory-management

Manage tri-tier agent memory (hot/warm/cold) with event consolidation and weekly cleanup. Use for memory updates after completing tasks. Use when this capability is needed.

Jump to install

Source facts

Repository
tomevault-io/skills-registry
Last source activity
April 28, 2026 at 22:53
Detected SKILL.md language
English
Stars
1
Forks
0

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
2 files

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
memory-management
description
Manage tri-tier agent memory (hot/warm/cold) with event consolidation and weekly cleanup. Use for memory updates after completing tasks. Use when this capability is needed.
metadata
{"author":"ak-eyther"}
# Memory Management - Tri-Tier System ## Memory Structure ```json { "hot_memory": { "_description": "Last 20 events - always loaded", "recent_events": [], "active_tasks": [], "recent_learnings": [] }, "warm_memory": { "_description": "Events 21-100 - patterns", "patterns": [], "known_issues": [], "successful_strategies": [] }, "cold_memory": { "_description": "Events 101+ - archived", "historical_patterns": [] } } ``` ## When to Update ### After Task Completion ``` Update hot_memory.recent_events: - What was done - Outcome - Lessons learned ``` ### Weekly Consolidation ``` hot → warm (after 20 events) warm → cold (after 100 events) ``` ## Update Pattern ```json { "recent_events": [ { "date": "2025-11-24", "task": "Built FastAPI endpoint", "outcome": "Success", "lessons": ["Async patterns work well", "Remember CORS"] } ] } ``` --- > Converted and distributed by [TomeVault](https://tomevault.io/claim/ak-eyther) — claim your Tome and manage your conversions. <!-- tomevault:4.0:skill_md:2026-04-15 -->
View on GitHub