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

mindkeepermindkeeper 控制

Agent Skill

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

总安装

13,488

周安装

562

GitHub Stars

公开资料未说明

下载量

4,496
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install mindkeeper

简介

mindkeeper 管理 Agent 上下文文件的版本历史与变更追踪。

  • 适用于 SOUL.md、AGENTS.md 等核心文档的版本控制需求。
  • 支持差异对比、回滚操作与多分支管理功能。
  • 安装命令:openclaw skills install mindkeeper;需确保目标文件可被写入。
  • 注意版本冲突处理策略,建议在关键节点手动确认变更。

SKILL.md

name
mindkeeper
description
Time Machine for Your AI's Brain — version control for agent context files. Use when the user asks about changes in SOUL.md, AGENTS.md, MEMORY.md, or other agent context files; when they want to undo, rollback, or compare versions; or when they need a checkpoint before risky edits.
version
1.2.4
homepage
https://github.com/seekcontext/mindkeeper
repository
https://github.com/seekcontext/mindkeeper

Mindkeeper — Time Machine for Your AI's Brain

Use mindkeeper tools when the user asks about changes, history, or versions of their agent context files (AGENTS.md, SOUL.md, USER.md, IDENTITY.md, TOOLS.md, HEARTBEAT.md, MEMORY.md, memory/, skills/).

Bootstrap (One-time setup)

When the user enables mindkeeper or asks for mindkeeper capability, first try mind_status. If it fails (tool not found or similar):

  1. Ask for confirmation — Tell the user: "Mindkeeper needs the mindkeeper-openclaw plugin to work. I'll need to run openclaw plugins install mindkeeper-openclaw and restart the Gateway. May I proceed?" Do not install or restart until the user explicitly confirms.
  1. After user confirms — Run this flow:

- Install the plugin — Run via bash:

     openclaw plugins install mindkeeper-openclaw

- Restart Gateway if the runtime supports it — Use the available runtime mechanism to restart Gateway. If restart is unavailable or fails, tell the user: "Plugin installed. Restart your Gateway manually to apply." - Confirm — If restart succeeded, tell the user: "Mindkeeper is ready. Restart complete — you can now ask about history, diffs, rollbacks, or snapshots." If restart did not happen, tell the user that the plugin is installed but Gateway must be restarted before the tools will appear.

  1. Alternative — If the user prefers to install manually, tell them: "Run openclaw plugins install mindkeeper-openclaw in your terminal, then restart your Gateway. After that, mindkeeper will be ready."

If mind_status succeeds, the plugin is already installed; skip the bootstrap and proceed with the user's request.

Tool Preference

In OpenClaw Plugin mode, prefer the mind_* tools over CLI commands for normal mindkeeper operations.

  • Use mind_status, mind_history, mind_diff, mind_snapshot, and mind_rollback whenever they are available.
  • Do not use openclaw mind ... or mindkeeper ... for routine history, diff, snapshot, or rollback requests if the plugin tools are available.
  • CLI commands are for one-time setup, troubleshooting, manual user workflows, or when the user explicitly asks for terminal commands.

Available Tools

ToolPurpose
mind_statusShow what files are tracked and whether there are unsaved changes
mind_historyBrowse the change log for one file or all files
mind_diffCompare any two versions of a file side-by-side
mind_rollbackRestore a file to a previous version (always preview first)
mind_snapshotSave a named checkpoint before making significant changes

Tracking Scope

Mindkeeper tracks these files by default:

  • AGENTS.md, SOUL.md, USER.md, IDENTITY.md
  • TOOLS.md, HEARTBEAT.md, MEMORY.md
  • memory/**/*.md
  • skills/**/*.md

Excluded by default: BOOTSTRAP.md, canvas/**, .git/, .mindkeeper/.

When to Use

User says…Action
"What changed in SOUL.md?"mind_history with file: "SOUL.md"
"Show me the diff from last week"mind_history to find the commit, then mind_diff
"Undo that change" / "Roll back AGENTS.md"Full rollback procedure (see below)
"Save a checkpoint before I experiment"mind_snapshot with a descriptive name
"Is mindkeeper tracking my files?"mind_status
"What does my history look like?"mind_history without a file filter

Direct Edit Requests

If the user asks to directly edit a tracked file such as SOUL.md, AGENTS.md, or MEMORY.md, make the edit directly.

  • Do not block on CLI availability.
  • Do not mention unavailable CLI commands unless the user explicitly asked for a CLI-based workflow.
  • Mindkeeper's background watcher should capture the change automatically after the edit.
  • If relevant, you may mention that the change should now be tracked by mindkeeper.

Tool Usage Guide

mind_status

Call this first when the user asks about history, tracking state, snapshots, or rollback, or if you're unsure whether mindkeeper is initialized.

mind_status → { initialized, workDir, pendingChanges, snapshots }

You do not need to call mind_status before a simple direct edit request unless the user specifically asks about tracking or history.

mind_history

Returns a list of commits with short hash, date, and message.

  • file (optional): filter to a specific file path, e.g. "SOUL.md"
  • limit (optional): number of entries to return (default 10, increase for longer searches)
mind_history({ file: "SOUL.md", limit: 20 })
→ { count, entries: [{ oid, date, message }] }

mind_diff

Compares two versions of a file. from and to are short or full commit hashes from mind_history.

  • Omit to to compare from against the current version (HEAD).
mind_diff({ file: "SOUL.md", from: "a1b2c3d4" })
→ { file, from, to, additions, deletions, unified }

mind_snapshot

Creates a named checkpoint of the current state of all tracked files. Use before risky changes.

  • name: short identifier, e.g. "stable-v2" or "before-experiment"
  • message (optional): longer description
mind_snapshot({ name: "stable-v2", message: "Personality tuned, rules finalized" })
→ { success, snapshot, commit: { oid, message } }

mind_rollback

Always use the two-step procedure. Never skip the preview.

Step 1 — Preview:

mind_rollback({ file: "SOUL.md", to: "a1b2c3d4", preview: true })
→ { preview: true, diff: { unified, additions, deletions }, instruction }

Show the diff to the user and ask for confirmation.

Step 2 — Execute (only after user confirms):

mind_rollback({ file: "SOUL.md", to: "a1b2c3d4", preview: false })
→ { preview: false, success: true, commit: { oid, message } }

After success, tell the user: "Run /new to apply the changes to your current session."

Important Notes

  • This skill is the guide, the plugin is the engine — the mindkeeper-openclaw plugin provides the actual mind_* tools and watcher; this skill teaches the AI how to bootstrap and use them safely
  • Use plugin tools first — in OpenClaw Plugin mode, prefer mind_* tools over CLI commands for normal operations
  • Rollback is per-file — it only restores the specified file, not all files at once
  • Rollbacks are non-destructive — every rollback creates a new commit, so it can itself be undone
  • Auto-snapshots run in the background — the user doesn't need to manually save; mindkeeper captures every change automatically
  • LLM commit messages are plugin-only for now — currently supported only through the OpenClaw plugin; standalone CLI mode falls back to template messages
  • Named snapshots are the safety net — encourage users to snapshot before major personality or rule changes
  • If history is empty — mindkeeper may not have initialized yet, or no changes have been made since install. Call mind_status to check.
  • Commit hashes — always use the oid field from mind_history results. Short 8-character hashes are fine.
  • Keep user-facing messages focused — if a task can be completed with file edits or mind_* tools, do not distract the user with unavailable CLI details

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.26%
按下载量换算3,294

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills