pi-vault-mind 0.9.5 → 0.9.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/src/commands.js +3 -1
- package/package.json +1 -1
package/dist/src/commands.js
CHANGED
|
@@ -1388,8 +1388,10 @@ const handleSetup = async (args, ctx, pi) => {
|
|
|
1388
1388
|
}
|
|
1389
1389
|
const hasCliArgs = cliArgs.vault || cliArgs.remoteUrl || cliArgs.localUrl || cliArgs.model || cliArgs.workspace;
|
|
1390
1390
|
await setupWizard(ctx, hasCliArgs ? cliArgs : undefined);
|
|
1391
|
+
// Scaffold collections, .gitignore, and project config if not already present
|
|
1392
|
+
await handleInit("", ctx, pi);
|
|
1391
1393
|
if (ctx.hasUI) {
|
|
1392
|
-
ctx.ui.notify("
|
|
1394
|
+
ctx.ui.notify("Running personalization (system.md + AGENTS.md)...", "info");
|
|
1393
1395
|
await runPersonalize(ctx, pi);
|
|
1394
1396
|
}
|
|
1395
1397
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-vault-mind",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.7",
|
|
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
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|