Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Lobster Memory System

v1.0.0

龙虾记忆体系统 - 模块化、版本化、自动备份的 AI 记忆管理方案

0· 96·0 current·0 all-time
bywangzhihao@wzhqqq123

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wzhqqq123/lobster-memory-system.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Lobster Memory System" (wzhqqq123/lobster-memory-system) from ClawHub.
Skill page: https://clawhub.ai/wzhqqq123/lobster-memory-system
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install lobster-memory-system

ClawHub CLI

Package manager switcher

npx clawhub@latest install lobster-memory-system
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
The skill claims to install a modular memory/backup system (init, auto-backup, heartbeat, scheduled tasks). However the published bundle contains only documentation (SKILL.md, INSTALL.md, skill.yaml, _meta.json) and no scripts or code (the instructions repeatedly reference scripts/*.ps1). That is an incoherence: the functionality being promised requires scripts and filesystem actions that are not included in this package.
Instruction Scope
SKILL.md tells the agent/user to run PowerShell scripts with `-ExecutionPolicy Bypass`, create Windows scheduled tasks, compress backups, and modify filesystem permissions (icacls). Those operations are consistent with a local backup/memory manager but carry significant system-level effects. The docs also reference integrating other tools/skills (memory_search, self-improving-agent) without providing them. Because the actual scripts are missing, the instructions could cause an agent or user to fetch and execute code from elsewhere — increasing risk.
!
Install Mechanism
There is no install spec in the package (instruction-only). The README instructs running local scripts or using `clawdhub install` to obtain them. Given the package lacks the scripts, there's a gap: the user/agent must fetch additional artifacts (presumably from the GitHub repo). That fetch-and-execute step is higher-risk because the docs explicitly direct `powershell -ExecutionPolicy Bypass` to run scripts that are not present in the bundle.
Credentials
The skill declares no required environment variables, no credentials, and no config paths. That is proportionate to the stated purpose. Caveat: the instructions reference sensitive-data protection and optional encrypted backups but provide no implementation details; the scripts (if present) could still request or handle secrets.
Persistence & Privilege
always is false (expected). However the skill's intended behavior includes creating OS-level scheduled tasks (daily auto-backup) and changing permissions via icacls, which would create persistent effects on a host. This persistence is plausible for a backup system but is notable and should be audited before running any scripts that implement it.
Scan Findings in Context
[no_regex_findings] unexpected: The static scanner found no code to analyze because the package contains only documentation. That absence is itself concerning because the runtime instructions reference PowerShell scripts that are not included — meaning the installer/agent would need to fetch executable code from elsewhere.
What to consider before installing
Do not blindly run the PowerShell commands (especially those using -ExecutionPolicy Bypass) or allow the skill to autonomously fetch and execute scripts. Before installing: (1) confirm the scripts referenced in SKILL.md actually come from a trusted source (inspect the GitHub repository contents and the exact scripts), (2) review any backup/encryption implementation and scheduled-task creation code, (3) verify any icacls or permission-modifying commands to ensure they don't over-grant access, and (4) prefer running the initialization and backup scripts manually after inspection rather than giving the skill unattended, autonomous execution. If the publisher cannot provide the missing scripts in the package or a trustworthy install path, treat this package as incomplete and avoid installing.

Like a lobster shell, security has layers — review code before you run it.

latestvk97dhjb0f3fr7dmb750ad01yxx858x2t
96downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

🦞 Lobster Memory System (龙虾记忆体)

模块化、版本化、自动备份的 AI 记忆管理方案

专为 OpenClaw/Clawdbot 设计的记忆系统,让 AI 助手拥有持续的记忆能力和自我改进机制。


✨ 特性

  • 📦 模块化设计 - CORE/MEMORY/CONFIG/SKILLS 分离
  • 🔄 自动备份 - 每日 18:00 自动备份,支持 Windows 任务计划
  • 📊 分层记忆 - 长期记忆 + 短期记忆 + 核心身份
  • 🧠 智能加载 - 首次会话全量加载,后续按需加载
  • 📈 自我改进 - 心跳检查 + 周报生成
  • 🔒 安全架构 - 权限控制 + 敏感数据保护

📦 安装

方式 1:ClawHub 安装(推荐)

clawdhub install lobster-memory-system

方式 2:手动安装

# 1. 下载技能包
# 2. 解压到 ~/.openclaw/skills/lobster-memory-system
# 3. 运行初始化脚本
powershell -ExecutionPolicy Bypass -File ~/.openclaw/skills/lobster-memory-system/scripts/init.ps1

🚀 快速开始

1. 初始化记忆系统

cd ~/.openclaw/skills/lobster-memory-system
powershell -ExecutionPolicy Bypass -File scripts/init.ps1

2. 配置自动备份

powershell -ExecutionPolicy Bypass -File scripts/setup-auto-backup.ps1

3. 配置心跳检查

编辑工作区的 HEARTBEAT.md

## 🔄 自我改进检查
- 分析最近任务的用户反馈
- 记录需要改进的点
- 每周日生成周报

📁 目录结构

memory-system/
├── CORE/                    # 核心身份(每次必加载)
│   ├── identity.json        # AI 身份信息
│   ├── soul.md             # 人格设定
│   └── constraints.md      # 行为约束
├── MEMORY/                  # 记忆数据
│   ├── long-term/          # 长期记忆
│   │   ├── preferences.json
│   │   ├── knowledge.json
│   │   ├── people.json
│   │   └── projects.json
│   └── short-term/         # 短期记忆(每日)
│       └── YYYY-MM-DD.json
├── CONFIG/                  # 配置数据
│   ├── channels.json       # 频道配置
│   ├── tools.json          # 工具配置
│   └── permissions.json    # 权限控制
├── SKILLS/                  # 技能注册表
│   └── registry.json
├── SNAPSHOTS/              # 自动备份
│   └── auto-backup-YYYYMMDD.zip
├── scripts/                 # 工具脚本
│   ├── init.ps1            # 初始化
│   ├── check-first-session.ps1
│   ├── auto-backup.ps1
│   └── setup-auto-backup.ps1
└── README.md               # 本文档

🔄 工作流程

首次会话(每天)

1. 运行 check-first-session.ps1
2. 如果是首次 → 加载全部记忆
3. 更新追踪器 (session-tracker.json)
4. 设置 fullMemoryLoaded = true

其他会话

1. 只加载 CORE/identity.json
2. 加载 preferences.json
3. 加载当日短期记忆

自动备份(每日 18:00)

1. 压缩 CORE + MEMORY + CONFIG + SKILLS
2. 保存到 SNAPSHOTS/auto-backup-YYYYMMDD.zip
3. 记录备份日志

📊 记忆加载策略

会话类型加载内容用途
首次会话全部记忆文件完整上下文
其他会话CORE + 偏好 + 今日快速启动
按需加载memory_search 工具历史查询

🛠️ 工具脚本

check-first-session.ps1

检查是否是今日首次会话,返回 true/false。

auto-backup.ps1

执行完整备份,可手动运行或通过任务计划自动执行。

setup-auto-backup.ps1

配置 Windows 任务计划,设置每日 18:00 自动备份。

init.ps1

初始化记忆系统,创建目录结构和示例文件。


🔧 配置示例

identity.json

{
  "name": "麻小",
  "creature": "AI 助手",
  "vibe": "正式且带点幽默",
  "emoji": "🦞",
  "version": "1.0.0"
}

preferences.json

{
  "replyStyle": "简洁,不要包含错误输出",
  "imageSending": "直接发送图片文件",
  "timezone": "Asia/Shanghai"
}

📈 自我改进系统

集成 self-improving-agent 技能,实现:

  • 心跳检查 - 每 30-60 分钟分析最近任务
  • 改进日志 - 记录到 memory/improvement_log.md
  • 周报生成 - 每周日汇总改进点
  • SOUL 建议 - 根据学习成果建议更新人格

🔒 安全特性

  • 权限控制 - CONFIG/permissions.json 定义访问权限
  • 敏感数据保护 - 不输出 API Key、私钥等
  • 备份加密 - 可选加密备份文件
  • 审计日志 - 记录所有记忆访问

与 Markdown 记忆对比

特性Lobster 记忆体Markdown 记忆
结构化✅ JSON + 目录⚪ 纯文本
自动备份✅ 每日自动⚪ 手动
版本控制✅ 快照管理⚪ Git
按需加载✅ 智能策略⚪ 全文加载
自我改进✅ 集成系统⚪ 手动记录

🐛 故障排除

备份失败

# 检查任务计划
Get-ScheduledTask -TaskName "LobsterMemoryBackup"

# 手动运行备份
powershell -File scripts/auto-backup.ps1

记忆加载异常

# 修复记忆系统
powershell -File scripts/repair-memory.ps1

首次会话检测失败

# 重置会话追踪器
Remove-Item session-tracker.json

📝 更新日志

v1.0.0 (2026-04-21)

  • ✅ 初始版本发布
  • ✅ 模块化记忆结构
  • ✅ 自动备份系统
  • ✅ 心跳检查集成
  • ✅ 自我改进系统

🤝 贡献

欢迎提交 Issue 和 PR!


📄 许可证

MIT License - 让所有龙虾都拥有优秀的记忆力!🦞

Comments

Loading comments...