Hongnao Memory V1.0.0 — Hongnao Memory — 长期记忆管理系统
v1.0.0为 OpenClaw 提供长期记忆管理,支持跨会话持久化、智能检索和用户偏好学习,提升记忆存储与检索效率。
0· 60·0 当前·0 累计
安全扫描
OpenClaw
可疑
medium confidence安全扫描摘要
评估建议
安全评估...详细分析 ▾
ℹ 用途与能力
Name, description and most files align with a long‑term memory plugin for OpenClaw (extraction, consolidation, retrieval, update, preference learning). However the registry/skill metadata claims 'instruction-only' while many code files are bundled — an internal mismatch. Some referenced files in docs (main.py, test_session_integration.py) are missing from the manifest or file list, and several modules import different filenames (memory_consolidation imports memory_extraction while actual extraction file is memory_extraction_v3.py). These inconsistencies are not expected for a production release.
ℹ 指令范围
SKILL.md and README instruct running install_hongnao.py which copies plugin code into the user's OpenClaw workspace and creates a config file (~/ .openclaw/workspace/hongnao_memory). For a memory plugin, copying files and creating configs is expected, and the code legitimately needs access to session data for syncing. But the instructions reference files/entrypoints that are missing or mismatched, and installer prompts (and sample code) give broad discretion to auto‑sync sessions — inspect openclaw_integration.py before granting access. No explicit instructions were found to exfiltrate secrets, but the installer will write files into the user's home workspace.
✓ 安装机制
Installer is a local Python script (install_hongnao.py) that copies bundled files and writes a config and requirements.txt — no remote downloads or URL fetches observed in the provided files. This is lower risk than remote installers, but it will place code into the user's workspace and create configuration files.
✓ 凭证需求
The skill declares no required environment variables, no credentials, and no special config paths beyond writing its own config under the OpenClaw workspace. That matches the described purpose. (Note: the installer checks/imports modules and suggests installing 'sqlite3' via pip which is incorrect — sqlite3 is stdlib; minor sloppy detail.)
ℹ 持久化与权限
always:false (good). The installer copies files into the user's ~/.openclaw/workspace (or specified workspace) and creates configuration files — this gives persistent presence within the OpenClaw workspace but does not modify other skills or system settings. Because autonomous invocation is allowed by default, the agent could use the integrated memory features automatically; if you do not trust the code, disable autonomous invocation or review code first.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install hongnao-memory-v1-0-0
镜像加速npx clawhub@latest install hongnao-memory-v1-0-0 --registry https://cn.longxiaskill.com 镜像可用
本土化适配说明
Hongnao Memory V1.0.0 — Hongnao Memory — 长期记忆管理系统 安装说明: 安装命令:["openclaw skills install hongnao-memory-v1-0-0","npx clawhub@latest install hongnao-memory-v1-0-0"]
技能文档
概述
Hongnao Memory 是一个为 OpenClaw 设计的长期记忆管理系统,支持跨会话持久化、智能检索和用户偏好学习。
功能特性
- 跨会话持久化:记忆数据在不同会话间保持一致
- 智能检索:快速准确地检索存储的记忆内容
- 用户偏好学习:自动学习并适应用户偏好
- 高效存储:优化记忆存储与检索效率
使用方法
# 初始化记忆系统 hongnao-memory init# 存储记忆 hongnao-memory store --key "user_preference" --value "..."
# 检索记忆 hongnao-memory retrieve --key "user_preference"
配置
请参考配置文件进行自定义设置。