pi-vault-mind 0.9.5 → 0.9.8

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.
@@ -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("Vault configured. Running personalization as part of onboarding...", "info");
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.5",
3
+ "version": "0.9.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
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",