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

structured-memory结构化记忆

Agent Skill

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

总安装

13,405

周安装

553

GitHub Stars

2

下载量

4,380
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install structured-memory

简介

基于日常文件构建分层内存系统,按域/模块/实体索引关键事实。

  • 适用于 OpenClaw 中需要高效管理与检索知识时使用。
  • 通过 clawhub 安装,建议查阅来源仓库和文档了解索引机制。
  • 使用前需确认数据来源、字段含义及是否允许文件读写操作。
  • 注意评估是否会更新本地数据库或触发重复检测逻辑。structured-memory 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
structured-memory
description
Build and maintain a structured memory system for OpenClaw workspaces using layered storage: daily memory as the source of truth, domain/module/entity/tag indexing, critical-facts extraction, and retrieval planning. Use when designing, initializing, updating, or operating a memory system that must scale across work topics such as business, finance, legal, HR, projects, operations, tech, routines, and personal context.

Structured Memory

Version: 1.0.1

Use this skill to initialize and maintain a layered memory system in the OpenClaw workspace.

What it does

  • Uses memory/YYYY-MM-DD.md as the source of truth
  • Builds rebuildable indexes by date, module, and entity
  • Extracts reusable execution-critical facts into critical-facts/
  • Rebuilds object-style cards under critical-facts/cards/
  • On first initialization, backfills existing memory/*.md history automatically
  • Maintains a frozen summary baseline with preview + topic_summaries

Default operating rule

For agents that have this skill installed, structured-memory should not be treated only as an on-demand utility. When the day produced meaningful task progress, decisions, blockers, risks, reusable execution-critical facts, or other meaningful updates to memory/YYYY-MM-DD.md, the agent should treat structured-memory rebuild as part of its default memory maintenance workflow.

Work-cycle maintenance rule

After meaningful updates are written into memory/YYYY-MM-DD.md, the agent should normally rebuild the current day into the structured layer before the work cycle ends. This keeps indexes, modules, entities, critical-facts, and cards aligned with the source-of-truth daily memory.

Core rules

  1. Treat memory/YYYY-MM-DD.md as the source of truth.
  2. Keep first-level domain fixed and small.
  3. Create second-level module files only on demand.
  4. Prefer entities for stable objects and free_tags for one-off concepts.
  5. Store reusable execution-critical facts under critical-facts/.
  6. Never store high-sensitivity secrets in plain text unless the user explicitly requires it.
  7. Indexes are rebuildable caches, not the truth.
  8. A short daily preview is only for quick glance; it must not replace topic-level summaries for multi-topic days.

Fixed first-level domains

Use these exact domains:

  • strategy
  • business
  • organization
  • finance
  • legal
  • project
  • operations
  • tech
  • routines
  • personal
  • meta
  • misc

When creating modules

Before creating a new module:

  1. Check whether an equivalent module already exists.
  2. Check whether the concept should instead be an entity.
  3. Check whether the concept is too specific and should remain a free tag.
  4. Create a module only if it is a reusable topic bucket.

Retrieval order

Default retrieval order:

  1. MEMORY.md
  2. projects/*.md
  3. critical-facts/cards/ for execution-critical lookups about servers, services, paths, IDs, endpoints, repositories, dependencies, or stable operational objects
  4. critical-facts/*.md for raw fact scanning when the cards are missing or too sparse
  5. memory-index/by-date.json
  6. memory-modules/ and memory-entities/
  7. candidate memory/YYYY-MM-DD.md files

Recall priority rule

When the agent needs to recall cross-day work, historical decisions, stable identifiers, paths, endpoints, repositories, service names, project dependencies, or other execution-critical facts, it should prefer checking the structured-memory layer before relying only on current chat context.

Files to consult

Read these references as needed:

  • references/taxonomy.md for domain and module rules
  • references/write-rules.md for write/update behavior
  • references/retrieval-planner.md for query routing
  • references/index-schema.md for JSON and entry schemas
  • references/critical-facts-policy.md for sensitive-fact handling

Scripts

Operating modes

1. First-time setup

Run once when enabling the skill in a workspace:

python3 skills/structured-memory/scripts/init_structure.py

2. Daily maintenance

Run after meaningful updates to the current day:

python3 skills/structured-memory/scripts/rebuild_one_day.py YYYY-MM-DD

3. Validation / diagnostics

Use when checking stability or searching execution-critical facts:

python3 skills/structured-memory/scripts/check_idempotency.py YYYY-MM-DD
python3 skills/structured-memory/scripts/search_critical_facts.py <query>
  • scripts/init_structure.py initializes the workspace structure safely and, on first run, backfills existing memory/*.md history into indexes / critical-facts / cards unless explicitly skipped.
  • scripts/parse_daily_memory.py converts a daily memory file into a normalized index entry, supporting both structured entries and legacy bullet-style notes.
  • scripts/upsert_by_date_index.py updates memory-index/by-date.json deterministically.
  • scripts/update_topic_indexes.py appends module and entity index entries from a parsed daily memory result.
  • scripts/rebuild_one_day.py reparses a single daily memory file and refreshes its by-date/module/entity indexes plus the corresponding critical-facts/ entries for that day.
  • scripts/check_idempotency.py verifies that rebuilding the same day twice produces a stable result.
  • scripts/summarize_daily_memory.py generates the frozen summary layer in the current stable baseline: short preview plus topic_summaries for multi-topic days.
  • scripts/extract_critical_facts.py extracts reusable execution-critical facts (IPs, paths, endpoints, service names, stable ids) and can write them into critical-facts/*.md.
  • scripts/rebuild_critical_fact_cards.py rebuilds object-style fact cards under critical-facts/cards/ by grouping facts around related entities/projects. Its parser is intentionally tolerant of malformed property lines, empty values, fullwidth colons, and odd spacing so one bad fact line does not crash the whole rebuild.
  • scripts/search_critical_facts.py searches critical-fact cards first, then raw critical-facts/*.md files.
  • tests/run_tests.py runs the regression suite across representative memory samples.

Common commands

python3 skills/structured-memory/tests/run_tests.py
python3 skills/structured-memory/scripts/init_structure.py
python3 skills/structured-memory/scripts/rebuild_one_day.py 2026-03-10
python3 skills/structured-memory/scripts/check_idempotency.py 2026-03-10
python3 skills/structured-memory/scripts/search_critical_facts.py structured-memory

Source-of-truth reminder

Do not skip or weaken memory/YYYY-MM-DD.md. Structured-memory depends on daily memory and improves retrieval on top of it; it does not replace the source-of-truth record.

Use scripts for deterministic structure work; use manual edits for small, obvious updates.

Stability note

As of 2026-03-10, 1.0.1 is the current published baseline. The current implementation is frozen after the regression suite reached 206/206 passing. Before changing summary behavior again, update tests first and preserve compatibility with preview + topic_summaries.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.92%
按下载量换算3,588

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills