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

smart-memory-plus智能记忆加

Agent Skill

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

总安装

4,423

周安装

190

GitHub Stars

公开资料未说明

下载量

1,550
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install smart-memory-plus

简介

OpenClaw 代理的完整内存管理系统,集成 WAL 协议与时间衰减算法优化存储。

  • 支持类型分类与会话缓存,平衡性能与历史追溯需求。
  • 适用于长期运行的任务链,确保上下文连贯性与错误回溯能力。
  • 内存数据持久化到磁盘,重启后可恢复大部分会话状态。
  • 建议定期清理过期条目,防止存储空间无限增长。smart-memory-plus 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
smart-memory-plus
description
>

Smart Memory Plus

Unified memory management + context compression for OpenClaw. Zero external dependencies.

⚠️ Conflict Warning: This skill replaces both smart-memory and context-compactor. Do NOT install alongside either of those skills — they share the same files (SESSION-STATE.md, memory/, MEMORY.md) and will cause write conflicts.

Requirements

  • Runtime: Python 3.10+ (standard library only), Bash 4.0+ (health/extract scripts only)
  • OS: Linux, macOS
  • Environment variables (all optional, with defaults):

- OPENCLAW_WORKSPACE — Workspace root (default: ~/.openclaw/workspace) - OPENCLAW_SESSION_ID — Session identifier for temp cache (default: default)

Security

Write Restrictions (Hard Rules)

The agent MUST use the provided scripts for ALL writes. Direct file writes are FORBIDDEN.

FileRequired ScriptForbidden
SESSION-STATE.mdsession_state.py (WAL protocol)Direct write/overwrite
memory/compacts/*.mdcompact_session.py --writeDirect write/overwrite
memory/*.md (daily notes)extract_memories.sh --auto or append via scriptDirect overwrite
MEMORY.mdmemory_decay.py --promote-onlyDirect overwrite
/tmp/openclaw-session-*.jsonsession_cache.pyDirect write

Critical: Never use the agent's file-write tool directly on memory files. Always pipe through scripts — they enforce sanitization, deduplication, and append-only behavior.

The agent MUST NOT write to:

  • Any directory outside the workspace
  • System directories (/etc, /usr, /var, /tmp except session cache)
  • User home directory root (~/.ssh, ~/.config, ~/.aws, etc.)
  • Any .* dotfile or dotdir in workspace root

Sensitive Data Protection

All write commands automatically reject inputs matching:

  • API keys/tokens (OpenAI sk-*, GitHub ghp_*, ClawHub clh_*)
  • Passwords (password=, passwd:, etc.)
  • Private keys (-----BEGIN PRIVATE KEY-----)

This is a hard block at the script level — the agent cannot bypass it.

Privacy Boundaries

  • Compacts must NOT contain: file paths, internal URLs, IPs, passwords, tokens
  • Use placeholders: <REDACTED_PATH>, <REDACTED_URL>, <INTERNAL_URL>
  • All data stays local — all scripts make zero network calls, no LLM usage

Memory Layers

LayerFilePurposeLifetime
HOT RAMSESSION-STATE.mdCurrent task, context, decisionsSession (survives compaction)
DAILYmemory/YYYY-MM-DD.mdRaw daily notes with type tags90 days → archive
CURATEDMEMORY.mdPromoted long-term factsPermanent
COMPACTmemory/compacts/YYYY-MM-DD-HHMM.mdSession digests30 max, auto-cleanup
GRAPHmemory/.index/graph.dbEntity-relation knowledge graphRebuild from source
ARCHIVEmemory/archive/YYYY-MM/Stale daily filesForever (compressed)
CACHE/tmp/openclaw-session-*.jsonSession temp dataSession end / reboot

Quick Reference

Memory Management

ActionScript
WAL shortcutscripts/wal task/decide/context/pending/done/blocker/get/snapshot/restore
Set current taskscripts/wal task "description"
Log a decisionscripts/wal decide "chose X over Y"
Add contextscripts/wal context key value
Session cachepython3 scripts/session_cache.py set/get/list/clear
Classify memoriespython3 scripts/classify_memory.py --summary/--apply
Decay & archivepython3 scripts/memory_decay.py --dry-run/--promote-only
Health reportbash scripts/memory_health.sh

Search & Relations

ActionScript
Full index rebuildpython3 scripts/memory_search_bm25.py build
Incremental updatepython3 scripts/memory_search_bm25.py update
Search memories (BM25)python3 scripts/memory_search_bm25.py search "query" [--top N]
Index statuspython3 scripts/memory_search_bm25.py status
Find related entriespython3 scripts/classify_memory.py --related "query" [--top N]
Build knowledge graphpython3 scripts/memory_graph.py build
Graph relationspython3 scripts/memory_graph.py related "entity" [--depth N]
Graph statspython3 scripts/memory_graph.py stats
Raw graph querypython3 scripts/memory_graph.py query "SELECT ..."

Context Compression

ActionScript
Extract compact (stdin)python3 scripts/compact_session.py --extract
Write compact (stdin)python3 scripts/compact_session.py --write
List compactspython3 scripts/compact_session.py --list
Read latest compactpython3 scripts/compact_session.py --latest
Compact statspython3 scripts/compact_session.py --stats

WAL Protocol (Write-Ahead Log)

Critical rule: Write BEFORE responding.

When the user provides information that should be remembered:

  1. Write to SESSION-STATE.md (via session_state.py)
  2. Then respond to the user

This prevents context loss if compaction, crash, or restart happens between response and write.

User ActionWAL Write
States a preferencesession_state.py context "pref" "value"
Makes a decisionsession_state.py decide "chose X"
Gives a deadlinesession_state.py context "deadline" "date"
Corrects agentsession_state.py decide "correction: X not Y"
Assigns tasksession_state.py task "description"
Mentions blockersession_state.py blocker "description"

Memory Types

All entries tagged with a type prefix:

  • [PREF] — User preferences, habits, style
  • [PROJ] — Project context, active work, goals
  • [TECH] — Technical details, configs, system knowledge
  • [LESSON] — Lessons learned, errors, corrections
  • [PEOPLE] — People, relationships, social context
  • [TEMP] — Session-scoped, auto-expires

Core Workflows

Session Start

  1. Read SESSION-STATE.md for current task/context
  2. Search for relevant context:

- python3 scripts/memory_search_bm25.py build (if index is stale or missing) - python3 scripts/memory_search_bm25.py search "current topic" (semantic search) - Also use memory_search (OpenClaw built-in tool) as complementary search

  1. Check for recent compacts: python3 scripts/compact_session.py --latest

- If output exists, read it and use relevant parts as context for the session - This is a manual agent step — the skill does not auto-inject

  1. Check memory/YYYY-MM-DD.md for today's activity

During Conversation (WAL)

  1. User provides actionable info → write to SESSION-STATE.md FIRST
  2. Important facts → append to memory/YYYY-MM-DD.md with type tag
  3. Use session_cache.py for transient session data

Session End (Compaction)

  1. Update SESSION-STATE.md with final state
  2. If conversation > 50 turns or user says "compact":

- Draft compact content (decisions, facts, pending, blockers) - Pipe through security checks: echo "content" | python3 scripts/compact_session.py --write - Include [TYPE] tags per smart-memory classification

  1. Promote durable items from daily notes to MEMORY.md

Periodic Maintenance

  • Run memory_decay.py when MEMORY.md > 200 lines or 50+ daily files
  • Run classify_memory.py to tag orphaned entries
  • Run memory_search_bm25.py update to refresh search index after edits
  • Run memory_graph.py build to refresh knowledge graph
  • Archive daily files older than 90 days
  • Compact auto-cleanup keeps only last 30

Agent Behavior

Auto-Extract When

  • User shares preference, opinion, or personal fact
  • Project decision is made or changed
  • Error encountered and resolved (→ LESSON)
  • New people, tools, or workflows mentioned

Extraction Mode

  • extract_memories.sh --auto "text" — keyword matching, zero token cost, fully local

Compaction Mode

  • compact_session.py --extract — regex-based extraction, zero token cost, fully local

Do NOT Extract/Compact

  • Passwords, tokens, API keys, credentials (scripts hard-block these)
  • Private conversations about third parties not relevant to work
  • Speculation or uncertain information
  • Transient state ("user is currently looking at page X")
  • Information the user explicitly said not to remember

Scripts

ScriptLanguagePurposeSecurity
session_state.pyPythonHOT RAM working memory (WAL)Sensitive data filter + sanitization
session_cache.pyPythonSession-scoped temp cacheSensitive data filter + path-safe IDs
compact_session.pyPythonContext compression & digestsPath containment + sensitive filter
extract_memories.shBashMemory extraction guide & auto-extractRead-only + sensitive filter (Python)
classify_memory.pyPythonKeyword + n-gram type classification, related searchDry-run mode, duplicate check
memory_decay.pyPythonTemporal decay & LESSON promotionDry-run mode
memory_health.shBashHealth report (stats, orphans, tokens)Read-only
memory_search_bm25.pyPythonBM25 semantic search over memoriesLocal-only, zero network
memory_graph.pyPythonSQLite knowledge graph (entities + relations)Local-only, SELECT-only queries

References

  • references/extraction_prompt.md — Extraction prompt template (for agent-internal use)
  • references/compaction_prompt.md — Compaction prompt template (for agent-internal use)
  • references/decay_rules.md — Decay/archival rule set
  • references/memory_schema.md — Full schema and format spec

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.9%
按下载量换算1,409

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills