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

openjaw-smart-memory开颌智能记忆

Agent Skill

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

总安装

12,072

周安装

498

GitHub Stars

公开资料未说明

下载量

3,944
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openjaw-smart-memory

简介

openjaw-smart-memory 提供零成本持久内存,增强 Agent 长期智能。

  • 适合在 OpenClaw 中需要根据关键词或场景自动提取用户偏好时使用。
  • 自动存储关键事实、决策和历史交互,支持动态检索。
  • 安装前建议确认权限范围、维护状态及是否会触发数据存储或隐私操作。
  • 可结合来源仓库和 README 进一步核验具体用法和限制条件。

SKILL.md

name
smart-memory
version
1.0.0
description
>
author
J. DeVere Cooley
category
productivity
tags
tools
heartbeat
enabled
true
interval
daily
action
memory_maintenance

Smart Memory — Persistent Intelligence for OpenClaw

You have access to a persistent local memory system. Use it to remember important information across conversations so the user never has to repeat themselves.

Core Principle

Remember everything important. Forget nothing the user cares about. Cost nothing.

All memory is stored locally in ~/.openclaw/smart-memory/ as plain JSON files. No external APIs. No cloud storage. No cost. Just local files and shell commands.

When to STORE a Memory

Automatically extract and store memories whenever the user shares:

  • Preferences: "I prefer dark mode", "I like Python over JavaScript"
  • Personal facts: names, locations, roles, team members, project names
  • Decisions: "We decided to use PostgreSQL", "Let's go with the microservice approach"
  • Instructions: "Always run tests before committing", "Never deploy on Fridays"
  • Important dates: deadlines, birthdays, recurring events
  • Technical context: stack details, repo URLs, server addresses, API keys (stored locally only)
  • Corrections: "Actually, my name is spelled with a K" (update existing memory)

How to Store

Run the memory manager to store a new memory:

bash ~/.openclaw/smart-memory/memory-manager.sh store \
  --category "<preferences|facts|decisions|instructions|dates|technical|corrections>" \
  --key "<short_identifier>" \
  --value "<the information to remember>" \
  --confidence "<high|medium|low>" \
  --source "<conversation|user_explicit|inferred>"

Confidence levels:

  • high — User explicitly stated this ("My name is Alex")
  • medium — Clearly implied from context ("I keep using vim, so they prefer vim")
  • low — Inferred or uncertain ("They might work in finance based on their questions")

Source types:

  • user_explicit — User directly told you this information
  • conversation — Extracted from conversation context
  • inferred — You reasoned this from patterns

When to RETRIEVE Memories

Before responding to any user message, check if relevant memories exist:

bash ~/.openclaw/smart-memory/memory-manager.sh search --query "<relevant keywords>"

Use retrieved memories to:

  • Personalize responses (use their name, reference their preferences)
  • Avoid asking questions you already know the answer to
  • Provide continuity across conversations
  • Reference past decisions and context

When to UPDATE a Memory

If the user corrects or changes information:

bash ~/.openclaw/smart-memory/memory-manager.sh update \
  --key "<existing_key>" \
  --value "<new_value>" \
  --reason "<why this changed>"

The old value is preserved in the memory's history for audit purposes.

When to FORGET a Memory

If the user explicitly asks you to forget something:

bash ~/.openclaw/smart-memory/memory-manager.sh forget --key "<key_to_forget>"

This soft-deletes the memory (marks it as forgotten but retains it in the archive for 30 days before permanent deletion).

Daily Maintenance (Heartbeat)

Every day, the heartbeat triggers automatic maintenance:

bash ~/.openclaw/smart-memory/memory-manager.sh maintain

This will:

  1. Prune — Remove stale low-confidence memories older than 90 days
  2. Deduplicate — Merge duplicate or near-duplicate entries
  3. Stats — Generate a usage summary
  4. Archive — Rotate old memories to archive storage
  5. Integrity check — Validate JSON files and repair if needed

Viewing Memory Stats

To report on memory usage and health:

bash ~/.openclaw/smart-memory/memory-stats.sh

This shows: total memories, breakdown by category, storage size, oldest/newest entries, and estimated token savings.

Privacy & Security Rules

  1. All data stays local — Never transmit memory contents to external services
  2. Respect forget requests — When the user says "forget X", delete it immediately
  3. No sensitive data in logs — Memory contents never appear in system logs
  4. User can export/delete all data at any time:
   bash ~/.openclaw/smart-memory/memory-manager.sh export
   bash ~/.openclaw/smart-memory/memory-manager.sh purge --confirm

File Structure

~/.openclaw/smart-memory/
  memories.json          # Active memories (main store)
  archive.json           # Archived/pruned memories
  stats.json             # Usage statistics & token savings tracker
  config.json            # User-customizable settings
  memory-manager.sh      # Core memory engine
  memory-stats.sh        # Analytics & reporting

Token Savings Tracking

Every time a memory is retrieved instead of the user re-explaining something, log the estimated token savings:

bash ~/.openclaw/smart-memory/memory-manager.sh log-saving --tokens <estimated_tokens_saved>

Over time this demonstrates the ROI of the memory system — showing users how many tokens (and dollars) they've saved by not repeating themselves.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.05%
按下载量换算3,749

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install openjaw-smart-memory 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills