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

a-mem-memory-organization记忆组织

Agent Skill

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

总安装

6,056

周安装

245

GitHub Stars

公开资料未说明

下载量

1,901
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install a-mem-memory-organization

简介

使用 A-MEM 风格结构化管理项目、代理或用户记忆片段。

  • 适用于复杂任务中保持上下文连贯与知识可追溯性。
  • 支持语义标签、摘要与显式链接,提升信息组织清晰度。
  • 安装命令:openclaw skills install a-mem-memory-organization,需初始化记忆库路径。
  • 注意内存容量限制与长期存储稳定性,定期备份重要信息。

SKILL.md

name
a-mem-memory-organization
description
Organize project, agent, or user memory using an A-MEM-style workflow with structured notes, semantic tags, contextual summaries, explicit links, and lightweight memory evolution. Use when Codex or OpenClaw needs to store long-term memory, maintain project context across sessions, build a memory file or memory store, retrieve relevant historical facts, or improve memory quality beyond flat append-only notes.

A-MEM Memory Organization

Use this skill to turn raw observations into structured memory notes that are easier to retrieve, connect, and refine over time.

Quick Start

When the user asks to "remember", "keep context", "build memory", "organize knowledge", "create long-term memory", or "make the agent learn from history", do the following:

  1. Capture the new memory as a note with content, context, keywords, tags, category, timestamp, and links.
  2. Search existing memory for semantically related notes before writing the new note.
  3. Link the new note to the strongest neighbors if the relationship is concrete.
  4. Prefer updating tags/context only when the new evidence genuinely improves the older note.
  5. Keep memory atomic. Split unrelated facts into separate notes.

Note Format

Represent each memory note with this schema:

{
  "id": "uuid-or-stable-id",
  "content": "Atomic fact, preference, event, or lesson learned.",
  "context": "One sentence explaining the situation, domain, or why the note matters.",
  "keywords": ["specific terms", "entities", "concepts"],
  "tags": ["broader-category", "retrieval-label"],
  "category": "Preference | Project | Decision | Fact | Workflow | Bug | Research",
  "timestamp": "YYYYMMDDHHmm",
  "links": ["related-note-id"],
  "source": "optional source or conversation anchor"
}

If the surrounding system has no formal database yet, store notes in a Markdown or JSON memory file using the same fields.

Write Workflow

Use this write workflow whenever adding memory:

  1. Normalize the user input into one atomic note.
  2. Generate 3-6 precise keywords.
  3. Generate 2-5 broader tags.
  4. Write a compact context sentence that explains why the memory matters.
  5. Search for related notes using the combined retrieval text:
content: ...
context: ...
keywords: ...
tags: ...
  1. Link only to genuinely related memories. Avoid link spam.
  2. If the new note sharpens an older note, update the older note conservatively.

Retrieval Workflow

When answering from memory or selecting context for future work:

  1. Expand the query into both a literal form and a semantic form.
  2. Retrieve using the combined note text, not raw content alone.
  3. Prefer topically relevant and specific notes over vaguely similar ones.
  4. Include linked neighbors only when they help answer the task.
  5. If there is noise, rerank manually by:

exact entity overlap, stronger contextual match, recency when the information is time-sensitive, explicit links from already-relevant notes.

Evolution Rules

Apply memory evolution carefully. The goal is refinement, not constant rewriting.

Safe evolution operations:

  • Add a missing tag that improves retrieval.
  • Clarify context when a later note disambiguates the old one.
  • Add a link between notes with a clear relationship.
  • Mark a note obsolete if later evidence supersedes it.

Avoid:

  • rewriting old notes based on weak similarity,
  • merging unrelated memories,
  • broadening tags until everything looks related,
  • losing the original fact while summarizing.

If uncertain, store a new note and link it instead of mutating old notes.

What To Build In Practice

If the user wants this skill "made real" inside a project, choose the lightest form that matches the repo:

  • For a documentation-first repo: create memory/notes.json or memory/notes.md.
  • For an app repo: add a memory module plus persistence layer.
  • For an agent repo: add note construction, retrieval, linking, and evolution hooks around the agent loop.
  • For a coding assistant: maintain durable notes for project decisions, preferences, recurring bugs, and environment facts.

Output Conventions

When you use this skill during a task:

  • Tell the user what memory structure you are creating or updating.
  • Show the proposed note fields if the user is designing the system.
  • If implementing code, keep the data model explicit and testable.
  • If no storage exists yet, propose a minimal file-based memory store first.

References

Read references/memory-patterns.md when you need:

  • examples of good and bad note construction,
  • category and tag heuristics,
  • guidance on conservative memory evolution,
  • suggestions for integrating this pattern into an agent loop.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.54%
按下载量换算1,569

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills