@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 +7 -5
- package/dist/{chunk-WQWNIGVL.js → chunk-FSPKWOJD.js} +3 -3
- package/dist/index.js +3684 -3606
- package/dist/index.js.map +1 -1
- package/dist/{server-AXRCHDHW.js → server-P3WWLLJ3.js} +2 -2
- package/package.json +4 -4
- /package/dist/{chunk-WQWNIGVL.js.map → chunk-FSPKWOJD.js.map} +0 -0
- /package/dist/{server-AXRCHDHW.js.map → server-P3WWLLJ3.js.map} +0 -0
package/README.md
CHANGED
|
@@ -6,11 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
# @hivelore/cli
|
|
8
8
|
|
|
9
|
-
> **
|
|
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
|
|
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
|
-
|
|
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 `
|
|
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
|
-
>
|
|
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.
|
|
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.
|
|
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-
|
|
5616
|
+
//# sourceMappingURL=chunk-FSPKWOJD.js.map
|