Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

agent-memory-osAgent 内存操作系统

Agent Skill

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

总安装

4,516

周安装

192

GitHub Stars

1

下载量

1,582
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agent-memory-os

简介

为AI智能体提供结构化记忆系统,具有全局和项目记忆、升级规则、验证和维护,以防止遗忘和混淆。

SKILL.md

name
agent-memory-os
description
Stop agents from "forgetting, mixing projects, and rotting over time" by giving them a practical memory operating system: global memory, project memory, promotion rules, validation cases, and a maintenance loop.

Agent Memory OS

Build an agent that gets more organized over time instead of more chaotic.

Turn an agent's memory from "a pile of chat history" into a long-term working memory operating system.

What problem this solves

A lot of agents look impressive in short conversations, then collapse under real work:

  • they forget what matters
  • active projects pollute long-term memory
  • useful lessons never become reusable rules
  • the system looks good for a week, then decays

This skill exists to fix that.

It helps the agent move from:

  • "I remember fragments"

to:

  • "I have a stable global brain, project-specific working brains, reusable lessons, validation logic, and a maintenance loop that keeps the whole system healthy."

What makes this different

This is not just:

  • note-taking guidance
  • a vector-search recipe
  • a memory dump strategy

It is a workflow for building an agent memory system with:

  • separation of concerns
  • promotion paths for reusable knowledge
  • validation cases
  • operational maintenance rules

Use this skill when

The user says or implies things like:

  • "My agent keeps forgetting"
  • "Once projects pile up, everything gets messy"
  • "I want long-term memory for my AI agent"
  • "I need project memory separated from global memory"
  • "I want reusable lessons, not just logs"
  • "I want to share or standardize an agent memory setup"

Example trigger prompts

This skill should feel natural on prompts like:

  • "Help me design long-term memory for my coding agent."
  • "My AI assistant keeps mixing projects and forgetting context."
  • "I need a reusable memory architecture for multi-project agents."
  • "How do I separate durable agent memory from active project memory?"
  • "Help me turn chat history into a reusable working-memory system."

What the user gets

By the end of this workflow, the user should have:

  1. a memory architecture that separates global and project concerns
  2. a minimum project-memory structure
  3. routing and promotion rules
  4. validation cases to prove the system works
  5. a maintenance runbook so it does not decay immediately

Privacy and publishing rule

When using this skill for sharable/public output:

  • never expose real user names, private IDs, workspace-specific secrets, session paths, internal message IDs, or private document URLs
  • rewrite examples into generalized patterns
  • replace personal/project-specific references with neutral placeholders
  • do not bundle private memories, raw chat excerpts, or personally identifying workflow traces into the skill

If the user explicitly wants a public/shareable version, treat privacy-preserving abstraction as mandatory, not optional.

Recommended workflow

Step 0 — Decide whether to use a full memory system

Not every agent needs this full setup.

Read references/architecture-decision-guide.md when the user is unsure whether they need a full global / project / bridge system, or whether a simpler setup is enough.

Step 1 — Diagnose the real memory problem

Classify the user's issue before proposing architecture.

Typical failure modes:

  • single-brain overload: everything is dumped into one place
  • project pollution: local project state contaminates long-term memory
  • retrieval confusion: the agent doesn't know where to look first
  • knowledge stagnation: lessons never graduate into reusable rules
  • maintenance decay: the structure exists but slowly becomes stale

Read references/failure-modes.md when you need a sharper diagnosis rubric.

Step 2 — Choose the architecture

Default recommendation: a three-part system

  • global memory for durable rules, preferences, SOPs, stable principles
  • project memory for local complexity and active work
  • bridge/promotions for candidate → promoted → canonical evolution

Read references/architecture.md when you need the design rationale.

Step 3 — Create the minimum working structure

For each project, start with 5 files:

  • PROJECT.md
  • STATUS.md
  • DECISIONS.md
  • ASSETS.md
  • LESSONS.md

Use the bundled templates in:

  • assets/project-templates/
  • assets/bridge-templates/

Step 4 — Define routing and promotion rules

Make sure the agent knows:

  • what belongs to global memory
  • what stays project-local
  • what becomes a candidate for reuse
  • what evidence is required before promotion

Read:

  • references/routing.md
  • references/promotion.md

Step 5 — Validate with concrete cases

Do not stop at design. Test the system with at least 3 case types:

  • continuous project execution
  • interruption and recovery
  • cross-project reuse

Use measurable criteria: recovery accuracy, unnecessary follow-up questions, reuse success, structure completeness, etc.

Read references/validation.md for a compact validation model.

Step 6 — Add a maintenance runbook

A memory system is not done when designed. It is done when it can be maintained.

Define:

  • when to update daily logs
  • when to update project status
  • when to record lessons
  • when candidates get promoted
  • when to deprecate outdated rules
  • how often to review global/project/bridge memory

Read references/maintenance.md when writing or reviewing the runbook.

Minimal success path

A good first run of this skill usually looks like:

  1. identify the dominant failure mode
  2. choose the global/project/bridge architecture
  3. create the 5 core project files
  4. define one promotion rule and one routing rule
  5. validate with one interruption-recovery case and one reuse case
  6. write a simple maintenance rhythm

If the agent can recover better, reuse more, and stay cleaner over time, the system is working.

Packaging guidance

Keep the public skill:

  • short in SKILL.md
  • practical in workflow
  • generalized in examples
  • private details removed

Do not include:

  • personal identifiers
  • real workspace paths tied to an individual
  • raw private conversation excerpts
  • internal-only document links
  • unredacted project-specific evidence

Read references/publish-checklist.md before publishing or sharing widely.

Output style for public-facing use

If the user wants something that attracts attention, write with this shape:

  • start from a painful, recognizable problem
  • name the failure mode clearly
  • present the architecture as a relief pattern
  • show a small, concrete workflow
  • prove it with validation cases
  • end with operational simplicity, not abstract theory

Make it feel like a usable system, not an academic essay.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.48%
按下载量换算1,305

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills