@hivelore/mcp 0.53.0 → 0.53.1

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/README.md CHANGED
@@ -10,13 +10,17 @@
10
10
 
11
11
  The MCP server is how agents load team policy before changing code. By default it exposes a small harness-oriented tool surface: briefing, relevant memories, failed-attempt capture, anchor verification, code-map lookup, and pre-commit checks. Larger maintenance and experimental surfaces are opt-in via `HAIVE_TOOL_PROFILE`.
12
12
 
13
- Hivelore is not just a memory database. The MCP layer participates in context policy: state-changing Hivelore tools require `get_briefing` or `mem_relevant_to` first, so agents cannot silently skip team context while using Hivelore.
13
+ Hivelore is not just a memory database. The MCP layer participates in context policy: state-changing Hivelore tools require `get_briefing` or `mem_relevant_to` first, so agents cannot silently skip team context while using Hivelore. A lesson captured here (`mem_tried`) can attach a **validated guard** that Git hooks and CI then use to refuse any diff reintroducing the documented mistake — same diff, same verdict, on every machine.
14
+
15
+ <p align="center">
16
+ <img src="https://raw.githubusercontent.com/Doucs91/hivelore/main/docs/demo/hivelore-demo.gif" alt="A captured lesson attaches a validated guard; the commit that reintroduces the mistake is refused" width="720" />
17
+ </p>
14
18
 
15
19
  ---
16
20
 
17
21
  ## Install
18
22
 
19
- **Recommended:** install only `@hivelore/cli`. The MCP server is **bundled** inside `haive` — configure clients with `command: "hivelore"` and `args: ["mcp", "--stdio"]` (see `@hivelore/cli` README).
23
+ **Recommended:** install only `@hivelore/cli`. The MCP server is **bundled** inside the `hivelore` binary — configure clients with `command: "hivelore"` and `args: ["mcp", "--stdio"]` (see `@hivelore/cli` README).
20
24
 
21
25
  Standalone package (legacy / advanced):
22
26
 
@@ -88,7 +92,7 @@ Add to `~/.cursor/mcp.json`:
88
92
  ### VS Code
89
93
 
90
94
  ```bash
91
- code --add-mcp '{"name":"haive","command":"haive","args":["mcp","--stdio","--root","/absolute/path/to/project"]}'
95
+ code --add-mcp '{"name":"hivelore","command":"hivelore","args":["mcp","--stdio","--root","/absolute/path/to/project"]}'
92
96
  ```
93
97
 
94
98
  ### Project-scoped (auto-detected)
package/dist/index.js CHANGED
@@ -3237,7 +3237,7 @@ function oneLine(value) {
3237
3237
  return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
3238
3238
  }
3239
3239
  function serverVersion() {
3240
- return true ? "0.53.0" : "dev";
3240
+ return true ? "0.53.1" : "dev";
3241
3241
  }
3242
3242
 
3243
3243
  // src/tools/code-map.ts
@@ -4702,7 +4702,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
4702
4702
  // src/server.ts
4703
4703
  import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
4704
4704
  var SERVER_NAME = "hivelore";
4705
- var SERVER_VERSION = "0.53.0";
4705
+ var SERVER_VERSION = "0.53.1";
4706
4706
  function jsonResult(data) {
4707
4707
  return {
4708
4708
  content: [
package/dist/server.js CHANGED
@@ -3243,7 +3243,7 @@ function oneLine(value) {
3243
3243
  return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
3244
3244
  }
3245
3245
  function serverVersion() {
3246
- return true ? "0.53.0" : "dev";
3246
+ return true ? "0.53.1" : "dev";
3247
3247
  }
3248
3248
 
3249
3249
  // src/tools/code-map.ts
@@ -4708,7 +4708,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
4708
4708
  // src/server.ts
4709
4709
  import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
4710
4710
  var SERVER_NAME = "hivelore";
4711
- var SERVER_VERSION = "0.53.0";
4711
+ var SERVER_VERSION = "0.53.1";
4712
4712
  function jsonResult(data) {
4713
4713
  return {
4714
4714
  content: [
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@hivelore/mcp",
3
- "version": "0.53.0",
3
+ "version": "0.53.1",
4
+ "mcpName": "io.github.Doucs91/hivelore",
4
5
  "description": "Hivelore MCP server - policy-aware briefing and memory tools for coding-agent harnesses",
5
6
  "license": "Apache-2.0",
6
7
  "repository": {
@@ -48,10 +49,10 @@
48
49
  "dependencies": {
49
50
  "@modelcontextprotocol/sdk": "^1.29.0",
50
51
  "zod": "^3.23.8",
51
- "@hivelore/core": "0.53.0"
52
+ "@hivelore/core": "0.53.1"
52
53
  },
53
54
  "devDependencies": {
54
- "@hivelore/embeddings": "0.53.0"
55
+ "@hivelore/embeddings": "0.53.1"
55
56
  },
56
57
  "peerDependencies": {
57
58
  "@hivelore/embeddings": "*"