mindkeeper-openclaw 0.2.21 → 0.2.23

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.
@@ -2,6 +2,7 @@
2
2
  "id": "mindkeeper-openclaw",
3
3
  "name": "Mindkeeper",
4
4
  "description": "Time machine for your AI's brain. Auto-snapshots every change to agent context files (AGENTS.md, SOUL.md, MEMORY.md, skills, etc.) with full history, visual diffs, and one-command rollback.",
5
+ "tools": ["mind_status", "mind_history", "mind_diff", "mind_rollback", "mind_snapshot"],
5
6
  "configSchema": {
6
7
  "type": "object",
7
8
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindkeeper-openclaw",
3
- "version": "0.2.21",
3
+ "version": "0.2.23",
4
4
  "description": "OpenClaw plugin for mindkeeper: auto-snapshot, diff, and rollback for agent context files",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -29,6 +29,13 @@
29
29
  "scripts/postinstall-merge-config.cjs",
30
30
  "README.md"
31
31
  ],
32
+ "scripts": {
33
+ "build": "node build.mjs",
34
+ "typecheck": "tsc --noEmit",
35
+ "clean": "rm -rf dist",
36
+ "prepublishOnly": "npm run clean && npm run build",
37
+ "postinstall": "node scripts/postinstall-merge-config.cjs"
38
+ },
32
39
  "openclaw": {
33
40
  "extensions": [
34
41
  "./dist/index.js"
@@ -50,11 +57,5 @@
50
57
  },
51
58
  "publishConfig": {
52
59
  "access": "public"
53
- },
54
- "scripts": {
55
- "build": "node build.mjs",
56
- "typecheck": "tsc --noEmit",
57
- "clean": "rm -rf dist",
58
- "postinstall": "node scripts/postinstall-merge-config.cjs"
59
60
  }
60
- }
61
+ }
@@ -1,7 +1,9 @@
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.0
4
+ version: 1.2.1
5
+ homepage: https://github.com/seekcontext/mindkeeper
6
+ repository: https://github.com/seekcontext/mindkeeper
5
7
  ---
6
8
 
7
9
  # Mindkeeper — Time Machine for Your AI's Brain
@@ -4,9 +4,10 @@
4
4
  "description": "Time Machine for Your AI's Brain — version control for agent context files. Every change to AGENTS.md, SOUL.md, MEMORY.md, skills, and other context files is automatically tracked. Your AI can browse history, compare versions with diff, create named checkpoints, and roll back any file to any previous state.\n\nSetup: add this skill alone. When the user first asks for mindkeeper, the AI will ask for explicit confirmation before installing the mindkeeper-openclaw plugin and restarting the 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 AI learns to use mind_status, mind_history, mind_diff, mind_rollback, and mind_snapshot tools.",
5
5
  "category": "productivity",
6
6
  "tags": ["version-control", "agent", "history", "rollback", "snapshot", "diff", "openclaw"],
7
- "version": "1.2.0",
7
+ "version": "1.2.1",
8
8
  "license": "MIT",
9
9
  "pricing": "free",
10
- "support_url": "https://github.com/seekcontext/mindkeeper/issues",
11
- "homepage": "https://github.com/seekcontext/mindkeeper"
10
+ "homepage": "https://github.com/seekcontext/mindkeeper",
11
+ "repository": "https://github.com/seekcontext/mindkeeper",
12
+ "support_url": "https://github.com/seekcontext/mindkeeper/issues"
12
13
  }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 context-vault contributors
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.