Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

memory-optimization内存优化

Agent Skill

memory-optimization 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,960

周安装

415

GitHub Stars

公开资料未说明

下载量

3,320
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:memory-optimization(内存优化)
来源仓库:https://github.com/richardiitse/memory-optimization
安装命令:
openclaw skills install memory-optimization
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install memory-optimization

简介

memory-optimization 优化 AI 代理内存使用,缓解上下文压缩导致的失忆问题。

  • 适用于 OpenClaw 中需要快速重建上下文、减少 token 浪费的场景。
  • 提供分层缓存、关键信息提取与动态加载策略,提升长对话效率。
  • 安装需评估本地存储配额,避免过度占用磁盘与内存资源。
  • 使用前应备份会话历史,防止优化过程误删重要上下文。

SKILL.md

name
memory-optimization
version
1.0.4
license
MIT
description
|
Provides
TL;DR summary system, Three-file pattern (task_plan/findings/progress), Fixed tags system, Daily cleanup automation, HEARTBEAT integration, Rolling summary template, Testing framework, and Knowledge Graph integration.

Memory Optimization Skill

Quickly implement a comprehensive memory management system for AI agents based on Moltbook community best practices.

When to Use This Skill

  • Context compression causes memory loss between sessions
  • Need fast context recovery (currently 5-10 minutes, target <30 seconds)
  • Want structured project tracking with clear separation of concerns
  • Need automated daily memory maintenance
  • Building knowledge graph for entity relationships
  • Migrating from simple file-based memory to advanced system

What This Skill Provides

  1. TL;DR Summary System - 30-second context recovery
  2. Three-File Pattern - Structured project tracking
  3. Fixed Tags System - Quick grep search capability
  4. Daily Cleanup Script - 3-minute automated maintenance
  5. HEARTBEAT Integration - Mandatory memory checklist
  6. Rolling Summary Template - Concise daily summaries
  7. Testing Framework - 6 automated tests
  8. Knowledge Graph - 18 entities, 15 relationships
  9. Skill Usage Tracker - Track and analyze skill usage patterns

Quick Start

TL;DR Summary System

Add to each daily log (memory/YYYY-MM-DD.md):

## ⚡ TL;DR Summary

**Core Achievements**:
- ✅ Achievement 1
- ✅ Achievement 2

**Today's Key Points**:
- Key point 1
- Key point 2

**Decisions**: Important decision made today

Three-File Pattern

For complex projects, create:

  • memory/task_plan.md - What to do (goals, phases, decisions)
  • memory/findings.md - What discovered (research, key info)
  • memory/progress.md - What done (timeline, errors)

Fixed Tags

Use consistent tags across files:

  • #memory - Memory-related content
  • #decision - Important decisions
  • #improvement - Optimization work
  • #daily-log - Daily log entries

Daily Cleanup

Run automated cleanup:

./memory/daily-cleanup.sh

HEARTBEAT Integration

Add to HEARTBEAT.md:

### 🧠 Memory Management Checklist

Every Session Start:
- [ ] Read SOUL.md (agent identity)
- [ ] Read USER.md (user preferences)
- [ ] Read memory/YYYY-MM-DD.md (today + yesterday)
- [ ] Read MEMORY.md (long-term memory)

Scripts

See scripts/README.md for detailed usage:

  • daily-cleanup.sh - 3-minute daily memory maintenance
  • test-memory-system.sh - Verify all improvements working
  • memory_ontology.py - Knowledge Graph management tool (with Phase 6 retrieve command)
  • kg_type_fixer.py - Fix entities missing type field by inferring from ID prefix
  • kg_extractor.py - KG extraction from agent sessions (LLM-driven)
  • write_time_gating.py - Phase 8: Write-time gating evaluation
  • archived_memory_store.py - Cold storage management (Phase 8)
  • preference_engine.py - Phase 2: User preference inference from conversation history
  • consolidation_engine.py - Phase 3: consolidate similar episodes into SkillCards
  • decay_engine.py - Batch decay engine for memory strength management
  • entity_dedup.py - Phase 2: Embedding-based entity deduplication and merging
  • working_memory.py - Phase 5: Context Window layered compression (3 levels)
  • memory_loader.py - Phase 6: Proactive memory recovery (3-stage staged loading)
  • memory_dashboard.py - Phase 7: Memory health dashboard (Health Score, decay forecast)

Phase 6: Value-Aware Retrieval

KG entities can be retrieved by value score (weighted combination of reliability, strength, significance, preference match, recency):

# Retrieve entities sorted by value score
python3 scripts/memory_ontology.py retrieve --types Decision Finding --min-score 0.4

# Query by text and filter by score
python3 scripts/memory_ontology.py retrieve --query "architecture" --show-scores

# CLI help
python3 scripts/memory_ontology.py retrieve --help

References

See reference files for detailed guidance:

Key Metrics

MetricBeforeAfterImprovement
Context Recovery5-10 min30 sec-98%
File Size2000+ tokens1.3KB-99%
AutomationManual3-min script+100%
TestsNone6/6 pass+100%

Key Insights from Moltbook

"Forget is a survival mechanism" - Compression forces distillation of experience into most resilient forms
"Knowledge graph is an index for your brain" - Query efficiency 10x better than grep
"Record immediately, not wait" - Details fade quickly
"Focus on why, not what" - Rationale is more important than the fact

File Structure

memory/
├── YYYY-MM-DD.md          # Daily log with TL;DR
├── task_plan.md            # Task planning
├── findings.md             # Research findings
├── progress.md             # Progress tracking
├── rolling-summary-template.md
├── daily-cleanup.sh
├── test-memory-system.sh
└── ontology/
    ├── memory-schema.yaml
    ├── entity-templates.md
    ├── INTEGRATION.md
    └── graph.jsonl

scripts/
└── memory_ontology.py

Skill Usage Tracker

Track and analyze skill usage patterns via Knowledge Graph:

# Record a skill usage
python3 scripts/skill_tracker.py record --skill coding-agent --status success --duration 2.5

# View usage statistics
python3 scripts/skill_tracker.py stats

# Scan session history and save to KG
python3 scripts/skill_tracker.py scan --save

Features:

  • Record skill invocations with status, duration, and error info
  • Automatic skill categorization (feishu/apple/coding/memory/api/system/utility)
  • Session history scanning for automatic usage detection
  • KG-backed storage with fallback to file

Usage Examples

Create New Daily Log with TL;DR

# Daily Memory - 2026-03-13

## ⚡ TL;DR Summary

**Core Achievements**:
- ✅ Completed task 1
- ✅ Completed task 2

**Today's Key Points**:
- Working on project X
- Found solution Y

**Decisions**: Chose approach Z

Use Knowledge Graph

# Create a decision entity
python3 scripts/memory_ontology.py create --type Decision --props '{"title":"...","rationale":"...","made_at":"...","confidence":0.9,"tags":["#decision"]}'

# Query by tags
python3 scripts/memory_ontology.py query --tags "#memory" "#decision"

# Get related entities
python3 scripts/memory_ontology.py related --id dec_xxx

Environment Variables

# GLM API configuration (used by kg_extractor.py)
export OPENAI_API_KEY="your-glm-token"
export OPENAI_BASE_URL="https://open.bigmodel.cn/api/paas/v4"
export OPENAI_MODEL="glm-5"

# Global KG path (optional, defaults to ~/.openclaw/workspace/memory/ontology)
# Configure via KG_DIR environment variable

KG Sharing Across Agents

Multi-agent setups can share a single Knowledge Graph for collaborative memory.

Setup

# 1. Create shared directory
mkdir -p ~/.openclaw/shared-kg

# 2. Create symlink to main KG
ln -sf ~/.openclaw/workspace/memory/ontology/graph.jsonl ~/.openclaw/shared-kg/main-kg.jsonl

Usage by Agents

Each agent should reference the shared KG in their TOOLS.md:

## Knowledge Graph (KG)

- **共享 KG**: ~/.openclaw/shared-kg/main-kg.jsonl
- 包含所有重要的长期记忆、决策、经验教训

Script Usage with Shared KG

# Direct KG path
KG_DIR=~/.openclaw/shared-kg python3 scripts/memory_ontology.py query --tags "#decision"

# Or set in .env
KG_DIR=~/.openclaw/shared-kg/

Benefits:

  • All agents access the same entity pool
  • Decisions and lessons are shared across agents
  • No duplicate entity creation

OpenClaw Skill Invocation

When the user types /xmo, OpenClaw automatically invokes this memory-optimization skill.

Add the following to OpenClaw's settings.json or skills.json:

{
  "skills": {
    "xmo": {
      "path": "./memory-optimization",
      "description": "Memory optimization skill for AI agents"
    }
  }
}

After configuration, the user can activate this skill by typing /xmo.

Next Steps

  1. Run test script: ./memory/test-memory-system.sh
  2. Verify TL;DR exists in today's log
  3. Start using KG for important decisions
  4. Run daily cleanup each day

For complete implementation details, see references/implementation.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.4%
按下载量换算2,902

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills