mindkeeper-openclaw 0.2.5 → 0.2.7
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/dist/index.js +23872 -31
- package/dist/llm-client.js +109 -108
- package/package.json +11 -9
- package/skills/mindkeeper/SKILL.md +0 -4
- package/dist/auth-resolver.d.ts +0 -8
- package/dist/auth-resolver.d.ts.map +0 -1
- package/dist/auth-resolver.js +0 -96
- package/dist/auth-resolver.js.map +0 -1
- package/dist/cli.d.ts +0 -5
- package/dist/cli.d.ts.map +0 -1
- package/dist/cli.js +0 -37
- package/dist/cli.js.map +0 -1
- package/dist/index.d.ts +0 -37
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/llm-client.d.ts +0 -14
- package/dist/llm-client.d.ts.map +0 -1
- package/dist/llm-client.js.map +0 -1
- package/dist/llm-provider.d.ts +0 -17
- package/dist/llm-provider.d.ts.map +0 -1
- package/dist/llm-provider.js +0 -68
- package/dist/llm-provider.js.map +0 -1
- package/dist/service.d.ts +0 -16
- package/dist/service.d.ts.map +0 -1
- package/dist/service.js +0 -29
- package/dist/service.js.map +0 -1
- package/dist/tools.d.ts +0 -13
- package/dist/tools.d.ts.map +0 -1
- package/dist/tools.js +0 -156
- package/dist/tools.js.map +0 -1
package/dist/service.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Tracker } from "mindkeeper";
|
|
2
|
-
interface PluginService {
|
|
3
|
-
name: string;
|
|
4
|
-
start(): Promise<void>;
|
|
5
|
-
stop(): Promise<void>;
|
|
6
|
-
}
|
|
7
|
-
interface PluginApi {
|
|
8
|
-
log?: {
|
|
9
|
-
info?(...args: unknown[]): void;
|
|
10
|
-
warn?(...args: unknown[]): void;
|
|
11
|
-
error?(...args: unknown[]): void;
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
export declare function createWatcherService(tracker: Tracker, api: PluginApi): PluginService;
|
|
15
|
-
export {};
|
|
16
|
-
//# sourceMappingURL=service.d.ts.map
|
package/dist/service.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service.d.ts","sourceRoot":"","sources":["../src/service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAW,MAAM,YAAY,CAAC;AAE9C,UAAU,aAAa;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACvB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;CACvB;AAED,UAAU,SAAS;IACjB,GAAG,CAAC,EAAE;QACJ,IAAI,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;QAChC,IAAI,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;QAChC,KAAK,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;KAClC,CAAC;CACH;AAED,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,GAAG,aAAa,CAmCpF"}
|
package/dist/service.js
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { Watcher } from "mindkeeper";
|
|
2
|
-
export function createWatcherService(tracker, api) {
|
|
3
|
-
let watcher = null;
|
|
4
|
-
return {
|
|
5
|
-
name: "mindkeeper-watcher",
|
|
6
|
-
async start() {
|
|
7
|
-
await tracker.init();
|
|
8
|
-
watcher = new Watcher({
|
|
9
|
-
tracker,
|
|
10
|
-
onSnapshot: (commit) => {
|
|
11
|
-
api.log?.info?.(`[mindkeeper] Auto-snapshot ${commit.oid.slice(0, 8)}: ${commit.message}`);
|
|
12
|
-
},
|
|
13
|
-
onError: (err) => {
|
|
14
|
-
api.log?.error?.(`[mindkeeper] Watcher error: ${err.message}`);
|
|
15
|
-
},
|
|
16
|
-
});
|
|
17
|
-
await watcher.start();
|
|
18
|
-
api.log?.info?.(`[mindkeeper] Watching ${tracker.workDir} (debounce: ${tracker.getConfig().snapshot.debounceMs}ms)`);
|
|
19
|
-
},
|
|
20
|
-
async stop() {
|
|
21
|
-
if (watcher) {
|
|
22
|
-
await watcher.stop();
|
|
23
|
-
watcher = null;
|
|
24
|
-
api.log?.info?.("[mindkeeper] Watcher stopped.");
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
//# sourceMappingURL=service.js.map
|
package/dist/service.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../src/service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,OAAO,EAAE,MAAM,YAAY,CAAC;AAgB9C,MAAM,UAAU,oBAAoB,CAAC,OAAgB,EAAE,GAAc;IACnE,IAAI,OAAO,GAAmB,IAAI,CAAC;IAEnC,OAAO;QACL,IAAI,EAAE,oBAAoB;QAE1B,KAAK,CAAC,KAAK;YACT,MAAM,OAAO,CAAC,IAAI,EAAE,CAAC;YAErB,OAAO,GAAG,IAAI,OAAO,CAAC;gBACpB,OAAO;gBACP,UAAU,EAAE,CAAC,MAAM,EAAE,EAAE;oBACrB,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,CACb,8BAA8B,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,OAAO,EAAE,CAC1E,CAAC;gBACJ,CAAC;gBACD,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE;oBACf,GAAG,CAAC,GAAG,EAAE,KAAK,EAAE,CAAC,+BAA+B,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC;gBACjE,CAAC;aACF,CAAC,CAAC;YAEH,MAAM,OAAO,CAAC,KAAK,EAAE,CAAC;YACtB,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,CACb,yBAAyB,OAAO,CAAC,OAAO,eAAe,OAAO,CAAC,SAAS,EAAE,CAAC,QAAQ,CAAC,UAAU,KAAK,CACpG,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,IAAI;YACR,IAAI,OAAO,EAAE,CAAC;gBACZ,MAAM,OAAO,CAAC,IAAI,EAAE,CAAC;gBACrB,OAAO,GAAG,IAAI,CAAC;gBACf,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,CAAC,+BAA+B,CAAC,CAAC;YACnD,CAAC;QACH,CAAC;KACF,CAAC;AACJ,CAAC"}
|
package/dist/tools.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { Tracker } from "mindkeeper";
|
|
2
|
-
type RegisterTool = (tool: PluginTool, opts?: Record<string, unknown>) => void;
|
|
3
|
-
interface PluginTool {
|
|
4
|
-
name: string;
|
|
5
|
-
description: string;
|
|
6
|
-
parameters: Record<string, unknown>;
|
|
7
|
-
handler(args: Record<string, unknown>): Promise<unknown>;
|
|
8
|
-
}
|
|
9
|
-
export declare function registerTrackerTools(api: {
|
|
10
|
-
registerTool?: RegisterTool;
|
|
11
|
-
}, tracker: Tracker): void;
|
|
12
|
-
export {};
|
|
13
|
-
//# sourceMappingURL=tools.d.ts.map
|
package/dist/tools.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAyC,MAAM,YAAY,CAAC;AAEjF,KAAK,YAAY,GAAG,CAAC,IAAI,EAAE,UAAU,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;AAE/E,UAAU,UAAU;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACpC,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CAC1D;AAED,wBAAgB,oBAAoB,CAClC,GAAG,EAAE;IAAE,YAAY,CAAC,EAAE,YAAY,CAAA;CAAE,EACpC,OAAO,EAAE,OAAO,GACf,IAAI,CAmIN"}
|
package/dist/tools.js
DELETED
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
export function registerTrackerTools(api, tracker) {
|
|
2
|
-
if (!api.registerTool)
|
|
3
|
-
return;
|
|
4
|
-
api.registerTool({
|
|
5
|
-
name: "mind_history",
|
|
6
|
-
description: "View version history of agent context files. " +
|
|
7
|
-
"Optionally filter by a specific file. Returns commit hashes, dates, and messages.",
|
|
8
|
-
parameters: {
|
|
9
|
-
type: "object",
|
|
10
|
-
properties: {
|
|
11
|
-
file: {
|
|
12
|
-
type: "string",
|
|
13
|
-
description: "File path to filter history (e.g. 'SOUL.md'). Omit for all files.",
|
|
14
|
-
},
|
|
15
|
-
limit: {
|
|
16
|
-
type: "number",
|
|
17
|
-
description: "Maximum number of entries to return (default: 10).",
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
},
|
|
21
|
-
handler: async (args) => {
|
|
22
|
-
const commits = await tracker.history({
|
|
23
|
-
file: args.file,
|
|
24
|
-
limit: args.limit ?? 10,
|
|
25
|
-
});
|
|
26
|
-
return formatHistoryResult(commits);
|
|
27
|
-
},
|
|
28
|
-
});
|
|
29
|
-
api.registerTool({
|
|
30
|
-
name: "mind_diff",
|
|
31
|
-
description: "Compare two versions of an agent context file. " +
|
|
32
|
-
"Shows additions, deletions, and a unified diff.",
|
|
33
|
-
parameters: {
|
|
34
|
-
type: "object",
|
|
35
|
-
properties: {
|
|
36
|
-
file: { type: "string", description: "File path to compare (e.g. 'SOUL.md')." },
|
|
37
|
-
from: { type: "string", description: "Source commit hash." },
|
|
38
|
-
to: { type: "string", description: "Target commit hash (defaults to HEAD)." },
|
|
39
|
-
},
|
|
40
|
-
required: ["file", "from"],
|
|
41
|
-
},
|
|
42
|
-
handler: async (args) => {
|
|
43
|
-
const result = await tracker.diff({
|
|
44
|
-
file: args.file,
|
|
45
|
-
from: args.from,
|
|
46
|
-
to: args.to,
|
|
47
|
-
});
|
|
48
|
-
return formatDiffResult(result);
|
|
49
|
-
},
|
|
50
|
-
});
|
|
51
|
-
api.registerTool({
|
|
52
|
-
name: "mind_rollback",
|
|
53
|
-
description: "Rollback an agent context file to a previous version. " +
|
|
54
|
-
"First call with preview=true to see the diff, then call again without preview to execute.",
|
|
55
|
-
parameters: {
|
|
56
|
-
type: "object",
|
|
57
|
-
properties: {
|
|
58
|
-
file: { type: "string", description: "File path to rollback (e.g. 'SOUL.md')." },
|
|
59
|
-
to: { type: "string", description: "Commit hash to rollback to." },
|
|
60
|
-
preview: {
|
|
61
|
-
type: "boolean",
|
|
62
|
-
description: "If true, show diff preview without executing rollback. Default: true.",
|
|
63
|
-
},
|
|
64
|
-
},
|
|
65
|
-
required: ["file", "to"],
|
|
66
|
-
},
|
|
67
|
-
handler: async (args) => {
|
|
68
|
-
const file = args.file;
|
|
69
|
-
const to = args.to;
|
|
70
|
-
const preview = args.preview ?? true;
|
|
71
|
-
if (preview) {
|
|
72
|
-
const diff = await tracker.diff({ file, from: to, to: "HEAD" });
|
|
73
|
-
return {
|
|
74
|
-
preview: true,
|
|
75
|
-
diff: formatDiffResult(diff),
|
|
76
|
-
instruction: "Show this diff to the user. If they confirm, call mind_rollback again with preview=false.",
|
|
77
|
-
};
|
|
78
|
-
}
|
|
79
|
-
const commit = await tracker.rollback({ file, to });
|
|
80
|
-
return {
|
|
81
|
-
preview: false,
|
|
82
|
-
success: true,
|
|
83
|
-
commit: { oid: commit.oid.slice(0, 8), message: commit.message },
|
|
84
|
-
note: "Tell the user to run /new to apply the changes to the current session.",
|
|
85
|
-
};
|
|
86
|
-
},
|
|
87
|
-
});
|
|
88
|
-
api.registerTool({
|
|
89
|
-
name: "mind_snapshot",
|
|
90
|
-
description: "Create a named checkpoint of the current state of all agent context files. " +
|
|
91
|
-
"Useful before making significant changes.",
|
|
92
|
-
parameters: {
|
|
93
|
-
type: "object",
|
|
94
|
-
properties: {
|
|
95
|
-
name: { type: "string", description: "Snapshot name (e.g. 'personality-v2')." },
|
|
96
|
-
message: { type: "string", description: "Optional description of this snapshot." },
|
|
97
|
-
},
|
|
98
|
-
required: ["name"],
|
|
99
|
-
},
|
|
100
|
-
handler: async (args) => {
|
|
101
|
-
const commit = await tracker.snapshot({
|
|
102
|
-
name: args.name,
|
|
103
|
-
message: args.message,
|
|
104
|
-
});
|
|
105
|
-
return {
|
|
106
|
-
success: true,
|
|
107
|
-
snapshot: args.name,
|
|
108
|
-
commit: { oid: commit.oid.slice(0, 8), message: commit.message },
|
|
109
|
-
};
|
|
110
|
-
},
|
|
111
|
-
});
|
|
112
|
-
api.registerTool({
|
|
113
|
-
name: "mind_status",
|
|
114
|
-
description: "Show the current tracking status: tracked files, pending changes, and named snapshots.",
|
|
115
|
-
parameters: { type: "object", properties: {} },
|
|
116
|
-
handler: async () => {
|
|
117
|
-
const status = await tracker.status();
|
|
118
|
-
return formatStatusResult(status);
|
|
119
|
-
},
|
|
120
|
-
});
|
|
121
|
-
}
|
|
122
|
-
function formatHistoryResult(commits) {
|
|
123
|
-
return {
|
|
124
|
-
count: commits.length,
|
|
125
|
-
entries: commits.map((c) => ({
|
|
126
|
-
oid: c.oid.slice(0, 8),
|
|
127
|
-
date: c.date.toISOString().replace("T", " ").slice(0, 19),
|
|
128
|
-
message: c.message,
|
|
129
|
-
})),
|
|
130
|
-
};
|
|
131
|
-
}
|
|
132
|
-
function formatDiffResult(result) {
|
|
133
|
-
return {
|
|
134
|
-
file: result.file,
|
|
135
|
-
from: result.fromVersion,
|
|
136
|
-
to: result.toVersion,
|
|
137
|
-
additions: result.additions,
|
|
138
|
-
deletions: result.deletions,
|
|
139
|
-
unified: result.unified,
|
|
140
|
-
};
|
|
141
|
-
}
|
|
142
|
-
function formatStatusResult(status) {
|
|
143
|
-
return {
|
|
144
|
-
initialized: status.initialized,
|
|
145
|
-
workDir: status.workDir,
|
|
146
|
-
pendingChanges: status.pendingChanges.map((e) => ({
|
|
147
|
-
file: e.filepath,
|
|
148
|
-
status: e.status,
|
|
149
|
-
})),
|
|
150
|
-
snapshots: status.snapshots.map((s) => ({
|
|
151
|
-
name: s.name,
|
|
152
|
-
oid: s.oid.slice(0, 8),
|
|
153
|
-
})),
|
|
154
|
-
};
|
|
155
|
-
}
|
|
156
|
-
//# sourceMappingURL=tools.js.map
|
package/dist/tools.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"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"}
|