← Back to list

memory-management
by ak-eyther
A project to copy paste the entire settings
⭐ 0🍴 0📅 Jan 6, 2026
SKILL.md
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. metadata: short-description: Agent memory management
Memory Management - Tri-Tier System
Memory Structure
{
"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
{
"recent_events": [
{
"date": "2025-11-24",
"task": "Built FastAPI endpoint",
"outcome": "Success",
"lessons": ["Async patterns work well", "Remember CORS"]
}
]
}
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon