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

openclaw-cortex-memoryOpenClaw cortex 记忆

Agent Skill

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

总安装

2,210

周安装

93

GitHub Stars

公开资料未说明

下载量

774
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-cortex-memory

简介

独立管理跨会话的记忆连续性、偏好和历史决策记录。

  • 适用于长期关系维护和个性化体验构建。
  • 安装后可在 OpenClaw 中实现持久化记忆存储。
  • 使用前需确认存储后端可用性和隐私保护机制。
  • 建议定期归档旧记忆以控制存储增长。openclaw-cortex-memory 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Openclaw Cortex Memory

OpenClaw 长期记忆插件,专为 OpenClaw AI 助手设计的智能记忆系统。

面向 OpenClaw 的长期记忆插件,集成多路检索、事件归档、图谱关系、向量化与反衰减排序,支持历史增量导入、规则反思和可观测诊断,可以将会话中零碎的记忆去噪整理、分层存储,支持对话中自动搜索回忆,吸收了 LLM wiki 的概念,帮助 Agent 在跨会话中持续积累并稳定调用高价值记忆。

核心能力

1) 语义检索

  • 多路召回:keyword / BM25 / vector / graph 混合检索
  • 排序融合:加权打分 + RRF + 可选 reranker
  • 结果融合:可选 readFusion,支持权威融合返回
  • 时序建模:memoryDecay + 命中反衰减(anti-decay)

2) 事件存储

  • 分层写入:active(会话)与 archive(结构化事件)
  • 摘要优先:归档记录保留 summarysource_text
  • 向量分块:支持 summary/evidence 双通道向量记录
  • 增量同步:按状态文件增量导入历史会话

3) 图谱关系

  • 图谱独立层:graph/memory.jsonl 独立于 archive 文本层
  • 关系追溯:每条关系可追溯 source_event_id
  • 关系查询:query_graph 支持方向、关系类型、路径搜索
  • 冲突治理:单值事实冲突进入队列,支持人工 accept/reject 闭环
  • 可视化导出:export_graph_view 输出状态化图谱快照(含来源证据)
  • 质量门禁:graphQualityMode 支持 off/warn/strict

4) 规则演进

  • 反思沉淀:reflect_memory 将事件抽象为规则
  • 去重治理:规则与事件均有去重控制,避免污染
  • 规则复用:规则写入 CORTEX_RULES.md 供后续任务复用

5) 运维诊断

  • cortex_diagnostics:模型连通、层级状态、字段对齐检查
  • backfill_embeddings:支持 incremental / vector_only / full
  • lint_memory_wiki:Wiki/图谱一致性巡检与修复建议
  • 完整状态文件:便于快速定位同步、回填、质量问题

name: cortex-memory description: Independent skill for Cortex Memory operations in OpenClaw. Use when users ask for cross-session memory continuity, prior decisions, preferences, relationship tracing, or memory maintenance. If the memory plugin is not installed, guide users to install and enable openclaw-cortex-memory first, then continue with normal memory workflows. homepage: https://github.com/deki18/openclaw-cortex-memory metadata: { "openclaw": { "os": ["darwin", "linux", "win32"], "primaryEnv": "EMBEDDING_API_KEY" } }


Use this runtime flow:

  1. Check whether plugin openclaw-cortex-memory is available.
  2. If missing or disabled, run the install bootstrap guide in {baseDir}/references/agent-manual.md with README-consistent install order.
  3. After plugin is enabled, run memory retrieval or write operations.

After plugin is ready, use this default workflow:

  1. Retrieve candidate memory with search_memory.
  2. If the user asks about entity links or dependency paths, use query_graph.
  3. If query_graph returns conflict_hint, use list_graph_conflicts and ask user confirmation before resolve_graph_conflict.
  4. For graph status snapshots or projection consistency checks, use export_graph_view and lint_memory_wiki.
  5. Answer with retrieved evidence first, then add reasoning.
  6. If the turn introduces durable new information, persist it with store_event.
  7. For maintenance windows or session wrap-up, run sync_memory and optionally reflect_memory.

If tool calls fail:

  1. Check plugin availability first (openclaw plugins list / openclaw plugins inspect openclaw-cortex-memory).
  2. If visible, run cortex_diagnostics (or legacy alias diagnostics).
  3. Tell the user the plugin is unavailable or misconfigured.
  4. Continue with a normal answer without fabricating memory hits.

Do not use this skill for:

  • Real-time web facts (weather, stock, breaking news).
  • One-off temporary context that should not be persisted.

Use these local references when needed:

  • Install and bootstrap playbook: {baseDir}/references/agent-manual.md
  • System prompt template: {baseDir}/references/system-prompt-template.md
  • Tool details: {baseDir}/references/tools.md
  • Config and dependency setup: {baseDir}/references/configuration.md
  • Publish and validation checklist: {baseDir}/references/publish-checklist.md

For environment preflight, use {baseDir}/references/publish-checklist.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.26%
按下载量换算629

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills