@hivelore/cli 0.52.1 → 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
@@ -6,11 +6,13 @@
6
6
 
7
7
  # @hivelore/cli
8
8
 
9
- > **Hivelore** - repo-native memory and context policy for coding-agent harnesses.
9
+ > **The deterministic policy gate for agent-written code** it refuses the commit that repeats a mistake your team already paid for.
10
10
 
11
- Hivelore makes your team knowledge enforceable inside the harness around AI coding agents. It gives agents a required briefing before work starts, stores decisions/gotchas/failed attempts as version-controlled Markdown, and adds MCP, Git, CI, and wrapper gates so AI-generated changes cannot quietly bypass project policy.
11
+ Hivelore is the **enforcement layer** inside an AI coding-agent harness. A failed approach or gotcha captured via MCP (`mem_tried`) becomes a **validated guard** a regex, an [ast-grep](https://ast-grep.github.io) structural pattern, or a command/test oracle routing your own test — trusted to block only after it is proven silent on the correct code and firing on the mistake. Git hooks and a CI entrypoint then refuse any diff that reintroduces the documented mistake — **same diff, same verdict, on every machine**. The knowledge lives as repo-native Markdown in `.ai/`, versioned with your code and briefed to any agent over MCP; it complements tests, linters, and evals rather than replacing them.
12
12
 
13
- The memory system is the mechanism. The CLI is the control plane: initialize context policy, run agents inside Hivelore, check the repo, and block unsafe workflow states. Hivelore complements tests, linters, evals, and observability by carrying the repo-specific knowledge they cannot infer.
13
+ <p align="center">
14
+ <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 — same diff, same verdict on every machine" width="720" />
15
+ </p>
14
16
 
15
17
  ---
16
18
 
@@ -20,11 +22,11 @@ The memory system is the mechanism. The CLI is the control plane: initialize con
20
22
  npm install -g @hivelore/cli
21
23
  ```
22
24
 
23
- This installs the `haive` command globally. **The MCP server is bundled** — use `hivelore mcp --stdio` in your AI client (no separate `@hivelore/mcp` install required for normal use).
25
+ This installs the `hivelore` command globally. **The MCP server is bundled** — use `hivelore mcp --stdio` in your AI client (no separate `@hivelore/mcp` install required for normal use).
24
26
 
25
27
  > **Semantic search** (optional): install `@hivelore/embeddings` for local embedding-based search (no data leaves your machine).
26
28
 
27
- > Legacy configs may still use the standalone `haive-mcp` binary from `@hivelore/mcp`; prefer `haive` so CLI and MCP versions always match.
29
+ > Repos installed before the `haive`→`hivelore` rename are migrated automatically on the next `hivelore init` / `hivelore enforce install`; if an old git hook still calls the removed `haive` binary, `hivelore doctor --fix` regenerates it.
28
30
 
29
31
  ---
30
32
 
@@ -3257,7 +3257,7 @@ function oneLine(value) {
3257
3257
  return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
3258
3258
  }
3259
3259
  function serverVersion() {
3260
- return true ? "0.52.1" : "dev";
3260
+ return true ? "0.53.1" : "dev";
3261
3261
  }
3262
3262
  var CodeMapInputSchema = {
3263
3263
  file: z21.string().optional().describe("Filter to files whose path contains this substring"),
@@ -4620,7 +4620,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
4620
4620
  };
4621
4621
  }
4622
4622
  var SERVER_NAME = "hivelore";
4623
- var SERVER_VERSION = "0.52.1";
4623
+ var SERVER_VERSION = "0.53.1";
4624
4624
  function jsonResult(data) {
4625
4625
  return {
4626
4626
  content: [
@@ -5613,4 +5613,4 @@ export {
5613
5613
  runHaiveMcpStdio,
5614
5614
  writeMcpRuntimeMarker
5615
5615
  };
5616
- //# sourceMappingURL=chunk-WQWNIGVL.js.map
5616
+ //# sourceMappingURL=chunk-FSPKWOJD.js.map