← Back to Skills Marketplace
Openclaw Cc Contrib
by
Mr.Zhenweisi
· GitHub ↗
· v1.0.12
· MIT-0
139
Downloads
0
Stars
1
Active Installs
13
Versions
Install in OpenClaw
/install openclaw-cc-contrib
Description
对话结束后自动提炼本轮对话关键记忆 / 触发词:提取记忆、提炼记忆 / 命令:/extract-memories(自动+手动)
Usage Guidance
这组技能是本地、文件为中心的“记忆提取/整理”工具,行为总体一致且没有请求外部密钥或联网终端。建议在安装前考虑:1) 授权范围:它需要读取并写入 memory/ 目录(会长期保存提炼出的“记忆”),如果你在对话中可能提及敏感信息,请先审阅或限制技能访问;2) Exec / sessions_spawn 权限:如你不想允许技能运行 shell 命令或 fork 子 agent,应在授予权限时拒绝或限制这些能力;3) 自动触发:技能会在检测“对话结束”或 heartbeat 条件下自动运行并写入文件,若希望人工审查结果,请仅启用手动触发或禁用 heartbeat/cron;4) 检查持久化文件:安装后定期检查 memory/topics/ 与 MEMORY.md,确认没有意外保存敏感数据;5) 信任与来源:此包声称来自 CC 源码移植,但源码/主页未提供公开仓库链接(README 中提到一个 GitHub URL),如果你需要更高信任度,先在受控环境中审查本地 SKILL.md 与 README、或从可信仓库获取。总体来看内部一致、风险可控,适合在信任的个人或受控环境中使用。
Capability Analysis
Type: OpenClaw Skill
Name: openclaw-cc-contrib
Version: 1.0.12
The skill bundle implements a comprehensive memory management and code optimization system (extract-memories, memory-sorting, dream-rem, and simplify) ported from Claude Code. It utilizes standard file system operations (FileRead/FileWrite) and basic CLI utilities like 'grep' and 'git diff' to maintain a structured memory index and perform code reviews. The instructions in the SKILL.md files are well-documented, align with the stated purposes, and include explicit 'What NOT to Save' constraints to prevent the unnecessary storage of sensitive data like Git history or internal code structures.
Capability Assessment
Purpose & Capability
技能名与描述(自动/手动提炼对话记忆、整理记忆、定期整合)与实际指令一致:读取会话/memory/*.md、提取要点、写入 memory/topics/ 并更新 MEMORY.md。没有请求与目标无关的云凭据或外部服务密钥。
Instruction Scope
SKILL.md 明确要求读取主会话消息、daily 日志、topics/、MEMORY.md,并在本地追加/修改文件;这些都与“记忆管理”目的相符。需要注意的点:1) 部分流程要求读取“不限条数”的会话历史和逐文件扫描(会访问整个 memory/ 目录);2) 若安装并授权,技能会在检测到“对话结束”等触发条件后自动在后台执行提炼/整合操作,这会在不每次主动确认的情况下写入磁盘(文档提到会输出短通知但不打扰主会话)。总体在范围内,但用户应确认是否接受自动化写入与读取整个 memory/ 目录的行为。
Install Mechanism
这是 instruction-only 的技能集合(无安装脚本、无下载、无第三方包),运行时不会在安装阶段从不可信 URL 拉取或执行代码。README/UPDATE_FLOW.md 中包含本地复制/ClawhHub 安装建议,均为本地或正常商店方式,属低风险。
Credentials
注册表元数据未请求任何环境变量或外部凭据 (符合预期)。运行时 SKILL.md 明确需要本地权限集(FileRead/FileWrite/FileEdit、sessions_history、在部分文档中提到 exec 和 sessions_spawn)。这些权限与其文件扫描、grep/ls、更新索引和(可选)fork 子 agent 的需求有关——总体合理。但两点值得留意:1) exec(用于 grep/ls)会允许执行 shell 命令,若被滥用可执行任意命令;2) sessions_spawn(fork 子 Agent)权限比单纯文件 I/O 更强,可能被用于并行/后台任务。若你严格限制平台能力,这些权限应当只在信任该 skill 时授予。
Persistence & Privilege
技能不会声明 always: true,也不请求修改其它技能或全局 agent 配置。它会在本地持久化记忆文件(memory/topics/、MEMORY.md、heartbeat-state.json),这是其核心功能且与描述一致。自动化触发(会话结束、heartbeat、cron)存在,但默认不强制始终启用;用户可以选择手动触发或审查自动触发规则。
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install openclaw-cc-contrib - After installation, invoke the skill by name or use
/openclaw-cc-contrib - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.12
三个skill统一线性工作流结构,版本升至3.1.1
v1.0.11
dream-rem+memory-sorting: 加核查清单,强制输出扫描证据防止偷懒
v1.0.10
dream-rem v3.1.0: Phase 2加强,必须扫描全部daily文件+扫描记录+核查点
v1.0.9
memory-sorting v3.1.0: 补强检测逻辑,六类问题系统性检测+真实性验证+健康度评分
v1.0.8
extract-memories: 补全提炼输出示例格式,含四种类型完整结构
v1.0.7
新增更新流程规范文件,统一三端版本对齐标准
v1.0.6
dream-rem: description去掉频率标注,避免误导
v1.0.5
dream-rem cron频率从2h改为12h
v1.0.4
修正cron命令格式为openclaw CLI标准写法
v1.0.3
添加安装后配置说明:cron创建命令 + heartbeat-state.json要求
v1.0.2
v3.0.2: 修正cron ID和频率描述,全面检查并更新所有skill内容
v1.0.1
v3.0.0: 修复记忆系统触发机制,更新描述
v1.0.0
Initial release of extract-memories skill for OpenClaw:
- Automatically summarizes key memories from each conversation and saves them for future reference.
- Supports both automatic (after each conversation) and manual (/extract-memories) triggers.
- Stores extracted decisions, preferences, project conventions, and solutions in date-stamped markdown files.
- Notifies the main session with a brief message after memory extraction.
- Requires FileWrite and sessions_spawn permissions.
Metadata
Frequently Asked Questions
What is Openclaw Cc Contrib?
对话结束后自动提炼本轮对话关键记忆 / 触发词:提取记忆、提炼记忆 / 命令:/extract-memories(自动+手动). It is an AI Agent Skill for Claude Code / OpenClaw, with 139 downloads so far.
How do I install Openclaw Cc Contrib?
Run "/install openclaw-cc-contrib" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Openclaw Cc Contrib free?
Yes, Openclaw Cc Contrib is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Openclaw Cc Contrib support?
Openclaw Cc Contrib is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Openclaw Cc Contrib?
It is built and maintained by Mr.Zhenweisi (@jofiction918); the current version is v1.0.12.
More Skills