スキル一覧に戻る
JacobFV

memory-management

by JacobFV

Agentic OS: An embodied AI agent framework with daemon-based unconscious processes and semantic routing

1🍴 0📅 2025年12月22日
GitHubで見るManusで実行

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

  1. After task completion: Write episode
  2. Found useful pattern: Codify procedure
  3. Formed belief: Record theory
  4. Notable event: Mark significant
  5. 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/.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です