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.

Aller à l'installation

Informations de source

Dépôt
tomevault-io/skills-registry
Dernière activité de la source
28 avril 2026 à 22:53
Langue détectée de SKILL.md
anglais
Étoiles
1
Forks
0

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Explorateur de fichiers
2 fichiers

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
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 -->
Voir sur GitHub