Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

org-memory组织记忆

Agent Skill

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

总安装

41,309

周安装

1,655

GitHub Stars

1

下载量

13,372
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install org-memory

简介

扩展 org-cli 技能,使 Agent 能将自身记忆持久化保存至 org 工作区。

  • 适用于长期任务跟踪、观察记录与日常笔记管理。
  • 支持知识沉淀与跨会话信息延续,提升自动化连续性。
  • 安装命令:openclaw skills install org-memory,需确保 org 文件可写。
  • 涉及敏感信息存储时应加密处理,避免明文暴露。

SKILL.md

name
org-memory
version
1.0.2
description
Extends the org-cli skill so the agent also persists its own memory (knowledge, observations, daily notes) to an org workspace.
metadata
{"openclaw":{"emoji":"🐘","homepage":"https://github.com/dcprevere/org-cli","requires":{"bins":["org"],"env":["ORG_MEMORY_DIR","ORG_MEMORY_ROAM_DIR","ORG_MEMORY_DB","ORG_CLI_BIN"]},"install":[{"kind":"download","label":"Download from GitHub releases: https://github.com/dcprevere/org-cli/releases"}],"scope":{"reads":["$ORG_CLI_DIR","$ORG_CLI_ROAM_DIR","$ORG_CLI_DB","$ORG_MEMORY_DIR","$ORG_MEMORY_ROAM_DIR","$ORG_MEMORY_DB"],"writes":["$ORG_CLI_DIR","$ORG_CLI_ROAM_DIR","$ORG_CLI_DB","$ORG_MEMORY_DIR","$ORG_MEMORY_ROAM_DIR","$ORG_MEMORY_DB"]}}}

org-memory

This skill extends org-cli. You must have the org-cli skill installed and loaded — everything about the CLI contract, command safety, identifiers, shortcut grammar, and the user's workspace lives there. This skill only adds what's different.

What this skill adds

Two things:

  1. A second workspace — yours. Via @a-prefixed shortcuts, you can capture your own memory (observations, things you've learned, daily notes, a knowledge graph about the user or their work) into a dedicated org workspace. Bare shortcuts (t:, n:, k:, d:, s:, f:) still target the *user*'s workspace as defined by org-cli.
  1. Memory-wiki override. When this skill is active, graph-structured knowledge routes through org-roam rather than OpenClaw's memory-wiki. See below.

Memory-wiki override

When org-memory is active, store all persistent graph-structured knowledge in your org workspace, not in memory-wiki. The auto-memory types (user, feedback, project, reference) can still go to MEMORY.md as usual — those are flat, typed notes and memory-wiki's graph features don't add much. But anything you'd model as entities + relationships (a person's preferences, a project's stakeholders, the history of a system) goes to @ak instead of memory-wiki.

Why: one knowledge graph, not two. The user can browse your memory in the same tooling they use for their own. Your graph can link into their graph when the subject is shared.

Targeting

@a = agent. Append any action letter: @at: @an: @ak: @ad: @as: @af:.

Bare (user, from org-cli)Agent extensionWhat it does
t:@at:Create TODO in your inbox
n:@an:Plain headline in your inbox
k:@ak:Knowledge in your roam graph
d:@ad:Mark one of your TODOs DONE
s:@as:Reschedule one of your TODOs
f:@af:Search your org files and roam

Action details

The agent-side commands are exact mirrors of the org-cli actions, with $DIR/$ROAM/$DB substituted to point at your workspace ($ORG_MEMORY_DIR, $ORG_MEMORY_ROAM_DIR, $ORG_MEMORY_DB). See the org-cli skill for the full specs of each action — the commands here are identical, just targeted differently.

Worked example for @ak:

# Find existing node for the subject
org roam node find '<subject>' -d "$ORG_MEMORY_ROAM_DIR" --db "$ORG_MEMORY_DB" -f json

# If it exists, append the fact
org append <custom_id> '<fact>' -d "$ORG_MEMORY_DIR" --db "$ORG_MEMORY_DB" -f json

# If not, create then append
org roam node create '<subject>' -d "$ORG_MEMORY_ROAM_DIR" --db "$ORG_MEMORY_DB" -f json
# then append

The same substitution pattern applies to every other action.

Session-start context

When this skill is active, two things get injected into the agent's session-start context from your workspace:

  • $ORG_MEMORY_DIR/memory.org — your persistent memory file. Read this first; it's the continuity you've built up.
  • $ORG_MEMORY_DIR/daily/YYYY-MM-DD.org — today's and yesterday's daily notes, if they exist.

The org-memory plugin's before_agent_start hook loads these; you don't have to fetch them manually.

Write-log format

Use org-memory: (not org-cli:) as the prefix when the write went to *your* workspace. The user reads both prefixes to know which workspace changed:

org-memory: added TODO [k4t] ~/org/agent/inbox.org
org-memory: created node [3f2a-…] ~/org/agent/roam/self.org

Bare shortcuts still produce org-cli: lines (they're handled by the org-cli skill). Only @a* shortcuts produce org-memory: lines.

Configuration

Additional env vars beyond what org-cli declares:

VariableDefaultPurpose
ORG_MEMORY_DIR~/org/agentYour workspace (memory.org, daily/, tasks)
ORG_MEMORY_DB$ORG_MEMORY_DIR/.org.dbSQLite database
ORG_MEMORY_ROAM_DIR$ORG_MEMORY_DIR/roamYour roam nodes

ORG_CLI_BIN (the org binary path) is shared — both skills use the same binary. ORG_CLI_INBOX_FILE is *not* shared — your inbox is always inbox.org in $ORG_MEMORY_DIR unless you set a separate plugin config.

First-time setup

In addition to the org-cli first-time setup for the user's workspace, run:

# Sync any existing agent files
org roam sync -d "$ORG_MEMORY_DIR" --db "$ORG_MEMORY_DB"

# Seed the knowledge base
org roam node create 'Index' -d "$ORG_MEMORY_ROAM_DIR" --db "$ORG_MEMORY_DB" -f json

# Build the headline index
org index -d "$ORG_MEMORY_DIR" --db "$ORG_MEMORY_DB"

References

  • Memory architecture ({baseDir}/references/memory-architecture.md) — why the dual-workspace split exists, how memory.org + daily notes fit in, and the migration from MEMORY.md-only.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.5%
按下载量换算11,433

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills