brain-cache 0.3.1 → 0.3.2
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/cli.js +1 -1
- package/dist/mcp.js +1 -1
- package/package.json +2 -1
package/dist/cli.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
|
|
6
6
|
// src/cli/index.ts
|
|
7
7
|
import { Command } from "commander";
|
|
8
|
-
var version = "0.3.
|
|
8
|
+
var version = "0.3.2";
|
|
9
9
|
var program = new Command();
|
|
10
10
|
program.name("brain-cache").description("Local AI runtime \u2014 GPU cache layer for Claude").version(version);
|
|
11
11
|
program.command("init").description("Detect hardware, pull embedding model, create config directory").action(async () => {
|
package/dist/mcp.js
CHANGED
|
@@ -1146,7 +1146,7 @@ async function runBuildContext(query, opts) {
|
|
|
1146
1146
|
}
|
|
1147
1147
|
|
|
1148
1148
|
// src/mcp/index.ts
|
|
1149
|
-
var version = "0.3.
|
|
1149
|
+
var version = "0.3.2";
|
|
1150
1150
|
var log9 = childLogger("mcp");
|
|
1151
1151
|
var server = new McpServer({ name: "brain-cache", version });
|
|
1152
1152
|
server.registerTool(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brain-cache",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Local MCP-first context engine for Claude. Index your codebase, retrieve only what matters, and cut token usage.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"scripts": {
|
|
27
27
|
"dev": "tsx src/cli/index.ts",
|
|
28
28
|
"build": "tsup",
|
|
29
|
+
"prepare": "npm run build",
|
|
29
30
|
"link": "npm link",
|
|
30
31
|
"test": "vitest run",
|
|
31
32
|
"test:watch": "vitest"
|