@plur-ai/mcp 0.7.0 → 0.7.3

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 CHANGED
@@ -4,7 +4,7 @@
4
4
  import { existsSync, readFileSync, writeFileSync, mkdirSync } from "fs";
5
5
  import { join } from "path";
6
6
  import { homedir } from "os";
7
- var VERSION = "0.7.0";
7
+ var VERSION = "0.7.3";
8
8
  var HELP = `plur-mcp v${VERSION} \u2014 persistent memory for AI agents
9
9
 
10
10
  Usage:
@@ -47,6 +47,9 @@ var PLUR_HOOKS = {
47
47
  ],
48
48
  SubagentStart: [
49
49
  { matcher: ".*", hooks: [{ type: "command", command: `${CLI} hook-inject --event subagent`, timeout: 10 }] }
50
+ ],
51
+ Stop: [
52
+ { matcher: "*", hooks: [{ type: "command", command: `${CLI} hook-learn-check`, timeout: 2 }] }
50
53
  ]
51
54
  };
52
55
  var CLAUDE_MD_SECTION = `## PLUR Memory
@@ -223,7 +226,7 @@ if (arg === "init") {
223
226
  process.exit(0);
224
227
  }
225
228
  if (arg === "serve" || arg === void 0) {
226
- const { runStdio } = await import("./server-2UMO2VDB.js");
229
+ const { runStdio } = await import("./server-SMDNVIN5.js");
227
230
  runStdio().catch((err) => {
228
231
  console.error("Failed to start PLUR MCP server:", err);
229
232
  process.exit(1);
@@ -975,7 +975,7 @@ Include at least one engram_suggestion if ANYTHING was learned. An empty suggest
975
975
 
976
976
  // src/server.ts
977
977
  import { z } from "zod";
978
- var VERSION = "0.7.0";
978
+ var VERSION = "0.7.3";
979
979
  var INSTRUCTIONS = `PLUR is your persistent memory. Corrections, preferences, and conventions persist across sessions as engrams.
980
980
 
981
981
  REQUIRED at session boundaries:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plur-ai/mcp",
3
- "version": "0.7.0",
3
+ "version": "0.7.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "plur-mcp": "dist/index.js"
@@ -12,7 +12,7 @@
12
12
  "dependencies": {
13
13
  "@modelcontextprotocol/sdk": "^1.12.0",
14
14
  "zod": "^3.23.0",
15
- "@plur-ai/core": "0.7.0"
15
+ "@plur-ai/core": "0.7.3"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/node": "^25.5.0"