mindkeeper-openclaw 0.2.27 → 0.2.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/skills/mindkeeper/SKILL.md +1 -1
- package/skills/mindkeeper/clawhub.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ openclaw plugins install mindkeeper-openclaw
|
|
|
24
24
|
|
|
25
25
|
Then restart your Gateway once.
|
|
26
26
|
|
|
27
|
-
On startup, the plugin
|
|
27
|
+
On startup, the plugin mirrors its built-in `mindkeeper` skill into `<workspace>/skills/mindkeeper/` (OpenClaw's standard workspace skills path) so new sessions can find the bootstrap instructions even if no separate ClawHub skill was installed.
|
|
28
28
|
|
|
29
29
|
### Option 2 — Install the skill and let the AI guide setup
|
|
30
30
|
|
package/dist/index.js
CHANGED
|
@@ -1187,7 +1187,7 @@ var SKILL_FILES = ["SKILL.md", "README.md", "clawhub.json"];
|
|
|
1187
1187
|
function ensureWorkspaceSkillMirror(workspaceDir, options = {}) {
|
|
1188
1188
|
if (!workspaceDir) return;
|
|
1189
1189
|
const sourceDir = options.sourceDir ?? resolveBundledSkillDir();
|
|
1190
|
-
const targetDir = import_node_path6.default.join(workspaceDir, SKILL_DIR_NAME);
|
|
1190
|
+
const targetDir = import_node_path6.default.join(workspaceDir, "skills", SKILL_DIR_NAME);
|
|
1191
1191
|
if (!(0, import_node_fs2.existsSync)(sourceDir)) {
|
|
1192
1192
|
options.log?.warn?.(`[mindkeeper] Built-in skill directory not found: ${sourceDir}`);
|
|
1193
1193
|
return;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindkeeper
|
|
3
3
|
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.
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.6
|
|
5
5
|
homepage: https://github.com/seekcontext/mindkeeper
|
|
6
6
|
repository: https://github.com/seekcontext/mindkeeper
|
|
7
7
|
---
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "Time Machine for Your AI's Brain — install this skill if you want your AI to inspect history, show diffs, create checkpoints, and guide rollback in natural language across agent context files.\n\nSetup: add this skill alone. On first use, the AI checks whether the mindkeeper-openclaw plugin is available. If it is not, the AI asks for explicit confirmation before installing the plugin and before restarting Gateway. User consent is required for plugin install and Gateway restart.\n\nUse this skill when the user asks about changes, history, or versions of their agent context files. The skill teaches the AI how to bootstrap and use the mind_status, mind_history, mind_diff, mind_rollback, and mind_snapshot tools safely.",
|
|
5
5
|
"category": "productivity",
|
|
6
6
|
"tags": ["version-control", "agent", "history", "rollback", "snapshot", "diff", "openclaw"],
|
|
7
|
-
"version": "1.2.
|
|
7
|
+
"version": "1.2.6",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"pricing": "free",
|
|
10
10
|
"homepage": "https://github.com/seekcontext/mindkeeper",
|