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

openclaw-local-memoryOpenClaw 本地记忆

Agent Skill

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

总安装

5,998

周安装

255

GitHub Stars

公开资料未说明

下载量

2,101
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-local-memory

简介

OpenClaw 的类似大脑的本地内存插件 — 通过重要性评分、实体提取和自动整合来存储、搜索和注入内存。

SKILL.md

name
Local Memory
description
Brain-like local memory plugin for OpenClaw — stores, searches, and injects memories with importance scoring, entity extraction, and automatic consolidation.

🧠 Local Memory Plugin v0.4

A brain-like memory system for OpenClaw. Remembers what matters, forgets what doesn't, and builds a persistent understanding of you over time.

Zero-config, no external service, no API key, works out of the box.

Features

🧠 Brain-Like Memory Architecture

  • Hierarchical Memory: Exchanges → Summaries → Profile
  • Importance Scoring: Each memory scored 0-1 based on significance
  • Time Decay: Importance decreases over time (adjustable rate)
  • Entity Tracking: Extracts and tracks people, places, things
  • Semantic Chunking: Long content auto-split into manageable pieces

🔍 Smart Recall

  • Multi-Factor Scoring: Combines relevance, importance, AND recency
  • Profile Injection: Builds and injects user profile periodically
  • Context Window: Tracks conversation turns and manages memory refresh

💾 Intelligent Capture

  • Significance Detection: Only captures meaningful content
  • Auto-Deduplication: Won't store the same thing twice
  • Periodic Consolidation: Summarizes accumulated content when context grows long
  • Category Detection: Auto-categorizes as preference, fact, decision, entity, skill

🗑️ Self-Maintaining

  • Auto-Pruning: Removes old/unimportant memories when limit reached
  • Importance Protection: High-value memories kept longer
  • Memory Stats: Track memory health and composition

Tools

ToolDescription
local_memory_searchSearch memories by natural language (semantic)
local_memory_storeManually save a specific memory
local_memory_listList all memories, optionally filtered by category
local_memory_profileView user profile (entities, preferences, facts)
local_memory_statsView memory statistics
local_memory_recentGet recently accessed memories
local_memory_forgetDelete memory matching a query
local_memory_wipeDelete ALL memories (irreversible)

How It Works

Memory Lifecycle

  1. Capture → User + Assistant exchange
  2. Significance Assessment → Score based on patterns (decisions score high, greetings low)
  3. Storage → If significant enough, store with extracted entities and tags
  4. Importance Calculation → Based on category, length, entities, source
  5. Decay Over Time → Importance decreases exponentially
  6. Recall → On query, combine TF-IDF relevance + importance + recency
  7. Pruning → When max reached, lowest combined-score memories removed

Recall Scoring Formula

score = (relevanceWeight × tfidf_similarity) 
      + (importanceWeight × decayed_importance)
      + (recencyWeight × recency_factor)

Significance Detection Patterns

PatternCategoryWeight
entschieden, geplant, wird, werdendecision0.30
ich bin, mein, unser Unternehmenidentity0.25
bevorzug, immer, nie, preferpreference0.25
api_key, password, tokencredential0.20
skill, können, fähigskill0.20
projekt, build, deployproject0.15

Configuration

{
  "autoRecall": true,
  "autoCapture": true,
  "captureInterval": 8,
  "captureSignificantOnly": true,
  "minSignificanceScore": 0.5,
  "profileFrequency": 15,
  "includeProfileOnFirstTurn": true,
  "maxRecallResults": 5,
  "similarityThreshold": 0.35,
  "maxMemoryInjections": 3,
  "contextBudget": 2000,
  "maxMemories": 500,
  "pruneOlderThanDays": 30,
  "decayRate": 0.05,
  "chunkSize": 800,
  "importanceWeight": 0.25,
  "recencyWeight": 0.25,
  "relevanceWeight": 0.5
}
OptionDefaultDescription
autoRecalltrueInject relevant memories before each turn
autoCapturetrueAuto-capture conversation exchanges
captureInterval8Capture every N turns (higher = less storage)
captureSignificantOnlytrueOnly capture significant content
minSignificanceScore0.5Min score to capture (higher = stricter)
profileFrequency15Inject profile every N turns (higher = less context)
maxRecallResults5Max memories injected per turn
similarityThreshold0.35Min relevance to inject
maxMemoryInjections3Max memories to show per recall
contextBudget2000Max chars of memory context injected
maxMemories500Maximum memories to keep
pruneOlderThanDays30Auto-delete memories older than N days
decayRate0.05Importance decay speed
importanceWeight0.25Weight of importance in scoring
recencyWeight0.25Weight of recency in scoring
relevanceWeight0.5Weight of TF-IDF relevance in scoring

Data Storage

All memories stored locally in:

~/.openclaw/memory/<containerTag>.json

Default: ~/.openclaw/memory/openclaw_local_memory.json

Privacy

  • 100% Local: No data leaves your machine
  • You Control: Auto-capture can be disabled
  • Significance Filter: Won't store every random message
  • No External APIs: No internet required

Requirements

  • OpenClaw 2026.1.29 or later
  • Node.js (built-in TF-IDF, no external dependencies)

Tips

For Best Results

  1. Let it run for a few days — memory improves over time
  2. Manually store important facts with local_memory_store
  3. Check profile with local_memory_profile periodically
  4. Adjust importanceWeight, recencyWeight, relevanceWeight to your preference

If Context Gets Long

  • Reduce summariseThreshold to trigger earlier consolidation
  • Increase decayRate to forget older stuff faster
  • Lower maxMemories to prune more aggressively

Forgot Something?

  • Use local_memory_forget query="what to forget" to delete
  • Use local_memory_search to find what you're looking for

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.76%
按下载量换算1,550

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills