pi-vault-mind 0.8.3 → 0.8.4
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.
|
@@ -13,10 +13,7 @@
|
|
|
13
13
|
* for the Manager session.
|
|
14
14
|
*/
|
|
15
15
|
export function enableACM(pi) {
|
|
16
|
-
pi.sendUserMessage("/acm
|
|
17
|
-
"Use context_checkpoint to mark major dispatch milestones. " +
|
|
18
|
-
"Use context_timeline to review progress. " +
|
|
19
|
-
"Use context_compact when context is full.", { deliverAs: "followUp" });
|
|
16
|
+
pi.sendUserMessage("/acm", { deliverAs: "followUp" });
|
|
20
17
|
}
|
|
21
18
|
// ── Checkpoint instructions for agent task prompts ────────────────────────────
|
|
22
19
|
/**
|
package/dist/src/index.js
CHANGED
|
@@ -25,7 +25,13 @@ export default function (pi) {
|
|
|
25
25
|
/* expose skills directory — event listener only, safe during load */
|
|
26
26
|
pi.on("resources_discover", async (_event) => {
|
|
27
27
|
const skillsDir = path.join(EXT_ROOT, "skills");
|
|
28
|
-
|
|
28
|
+
const piContextSkills = path.join(EXT_ROOT, "..", "pi-context", "skills");
|
|
29
|
+
const paths = [];
|
|
30
|
+
if (fs.existsSync(skillsDir))
|
|
31
|
+
paths.push(skillsDir);
|
|
32
|
+
if (fs.existsSync(piContextSkills))
|
|
33
|
+
paths.push(piContextSkills);
|
|
34
|
+
return paths.length > 0 ? { skillPaths: paths } : {};
|
|
29
35
|
});
|
|
30
36
|
/* Defer all action-method calls to session_start.
|
|
31
37
|
* pi 0.79.9+ rejects pi.registerCommand/registerTool/registerShortcut
|
package/package.json
CHANGED
|
@@ -1,89 +1,87 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
}
|
|
2
|
+
"name": "pi-vault-mind",
|
|
3
|
+
"version": "0.8.4",
|
|
4
|
+
"description": "Passive Obsidian vault extension for pi. Watches @agent markers, dispatches forked subagents (Miner, Broadcaster, Heavy-Lifter), stores in LanceDB with vector + FTS + graph. Multi-agent 'Drop & Forget' workflow for the pi agent ecosystem.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"files": ["dist", "agents", "skills", "scripts", "CHANGELOG.md", "README.md", "LICENSE"],
|
|
9
|
+
"keywords": [
|
|
10
|
+
"pi-package",
|
|
11
|
+
"pi-extension",
|
|
12
|
+
"pi-skills",
|
|
13
|
+
"vault-mind",
|
|
14
|
+
"jsonl",
|
|
15
|
+
"lance",
|
|
16
|
+
"lancedb",
|
|
17
|
+
"search",
|
|
18
|
+
"knowledge-base",
|
|
19
|
+
"agent-tools",
|
|
20
|
+
"hitl",
|
|
21
|
+
"semantic-search",
|
|
22
|
+
"obsidian",
|
|
23
|
+
"obsidian-vault",
|
|
24
|
+
"subagent",
|
|
25
|
+
"subagents",
|
|
26
|
+
"passive",
|
|
27
|
+
"file-watcher",
|
|
28
|
+
"graph",
|
|
29
|
+
"knowledge-graph",
|
|
30
|
+
"notebooklm",
|
|
31
|
+
"pkm"
|
|
32
|
+
],
|
|
33
|
+
"author": "Kyle Brodeur",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/kylebrodeur/pi-vault-mind.git"
|
|
38
|
+
},
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/kylebrodeur/pi-vault-mind/issues"
|
|
41
|
+
},
|
|
42
|
+
"homepage": "https://github.com/kylebrodeur/pi-vault-mind#readme",
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=20.6.0"
|
|
45
|
+
},
|
|
46
|
+
"pi": {
|
|
47
|
+
"extensions": ["./dist/index.js"],
|
|
48
|
+
"skills": ["./skills"]
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"prepare": "husky",
|
|
52
|
+
"check": "biome check --write . && tsc --noEmit",
|
|
53
|
+
"build": "tsc && tsc -p tsconfig.test.json",
|
|
54
|
+
"dev": "tsc --watch",
|
|
55
|
+
"test": "node --test dist/test/*.test.js",
|
|
56
|
+
"e2e:ws": "node scripts/e2e-ws.mjs",
|
|
57
|
+
"e2e:modal": "node scripts/modal-e2e-smoke.mjs"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@lancedb/lancedb": "latest",
|
|
61
|
+
"@xenova/transformers": "latest",
|
|
62
|
+
"apache-arrow": "^21.1.0",
|
|
63
|
+
"ws": "^8.21.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"@earendil-works/pi-coding-agent": ">=0.75.0 <1.0.0"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@biomejs/biome": "^1.9.0",
|
|
70
|
+
"@earendil-works/pi-coding-agent": "^0.79.0",
|
|
71
|
+
"@earendil-works/pi-tui": "^0.79.0",
|
|
72
|
+
"@types/node": "^20.0.0",
|
|
73
|
+
"@types/ws": "^8.18.1",
|
|
74
|
+
"husky": "^9.1.6",
|
|
75
|
+
"typebox": "^1.1.0",
|
|
76
|
+
"typescript": "^5.0.0"
|
|
77
|
+
},
|
|
78
|
+
"pnpm": {
|
|
79
|
+
"overrides": {
|
|
80
|
+
"fast-xml-parser": ">=5.7.0",
|
|
81
|
+
"brace-expansion": ">=5.0.6",
|
|
82
|
+
"ws@>=8": ">=8.20.1",
|
|
83
|
+
"protobufjs": ">=8.0.0",
|
|
84
|
+
"undici": "7.28.0"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
package/scripts/check-deps.sh
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|