
memory-management
by JacobFV
Agentic OS: An embodied AI agent framework with daemon-based unconscious processes and semantic routing
SKILL.md
name: memory-management description: Managing agent memory for effective recall version: 1.0.0 tags:
- memory
- self-management
- agent-specific domains:
- agent-operation type: reflex
Overview
This skill covers how to effectively manage your own memory as an agent. Your memory directory contains episodes, procedures, theories, and more. Good memory hygiene improves your effectiveness over time.
When to Use
- After completing a task (record episode)
- When you discover a reusable pattern (codify procedure)
- When you form a belief about how things work (record theory)
- When something significant happens (mark significant moment)
- When you want to remember something for later (set intention)
Memory Types
Episodes (memory/episodes/)
What happened, when, and what you learned.
---
id: ep-001
title: Fixed auth timeout bug
outcome: completed
valence: 1
---
## Goal
Fix JWT token expiry issue
## What Happened
Found tokens weren't being refreshed...
## Lessons Learned
- Always check token expiry logic first
Procedures (memory/procedures/)
Reusable patterns you've learned.
---
id: proc-001
name: database-migration
times_used: 5
times_succeeded: 4
---
## When to Use
When schema changes are needed
## Steps
1. Create migration file
2. Test locally
3. Backup production
4. Apply migration
Theories (memory/theories/)
Working beliefs about how things work.
---
domain: user-behavior
claim: Users abandon forms longer than 3 steps
confidence: 0.7
---
## Reasoning
Based on analytics and user feedback...
## Evidence For
- Conversion rates drop 40% after step 3
Intentions (memory/intentions/)
Things to remember for later.
---
reminder: Check deployment logs tomorrow
trigger_description: When working on production
---
Steps
- After task completion: Write episode
- Found useful pattern: Codify procedure
- Formed belief: Record theory
- Notable event: Mark significant
- Future action needed: Set intention
Watch Out For
- Recording too much (signal vs noise)
- Recording too little (losing valuable learnings)
- Not updating procedures when they fail
- Not revising theories with new evidence
- Forgetting to check intentions
Using Semantic Memory
The store_memory and recall_memories tools use vector search:
store_memory("JWT tokens expire after 1 hour", tags="auth,tokens")
recall_memories("authentication timeout")
This is for quick semantic retrieval. For structured knowledge, use the markdown files in memory/.
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です