engramx 0.2.0 → 0.3.0
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 +100 -31
- package/dist/{chunk-QKCPFSVU.js → chunk-7KYR4SPZ.js} +1 -1
- package/dist/{chunk-D53DRZZL.js → chunk-NYFDM4FR.js} +210 -4
- package/dist/cli.js +1376 -3
- package/dist/{core-H72MM256.js → core-MPNNCPFW.js} +3 -1
- package/dist/index.js +2 -2
- package/dist/serve.js +2 -2
- package/package.json +2 -2
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
benchmark,
|
|
3
3
|
getDbPath,
|
|
4
|
+
getFileContext,
|
|
4
5
|
getStore,
|
|
5
6
|
godNodes,
|
|
6
7
|
init,
|
|
@@ -9,10 +10,11 @@ import {
|
|
|
9
10
|
path,
|
|
10
11
|
query,
|
|
11
12
|
stats
|
|
12
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-NYFDM4FR.js";
|
|
13
14
|
export {
|
|
14
15
|
benchmark,
|
|
15
16
|
getDbPath,
|
|
17
|
+
getFileContext,
|
|
16
18
|
getStore,
|
|
17
19
|
godNodes,
|
|
18
20
|
init,
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
generateSummary,
|
|
5
5
|
install,
|
|
6
6
|
uninstall
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-7KYR4SPZ.js";
|
|
8
8
|
import {
|
|
9
9
|
GraphStore,
|
|
10
10
|
SUPPORTED_EXTENSIONS,
|
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
sliceGraphemeSafe,
|
|
24
24
|
stats,
|
|
25
25
|
truncateGraphemeSafe
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-NYFDM4FR.js";
|
|
27
27
|
export {
|
|
28
28
|
GraphStore,
|
|
29
29
|
SUPPORTED_EXTENSIONS,
|
package/dist/serve.js
CHANGED
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
query,
|
|
9
9
|
stats,
|
|
10
10
|
truncateGraphemeSafe
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-NYFDM4FR.js";
|
|
12
12
|
|
|
13
13
|
// src/serve.ts
|
|
14
14
|
function clampInt(value, defaultValue, min, max) {
|
|
@@ -174,7 +174,7 @@ async function handleRequest(req) {
|
|
|
174
174
|
result: {
|
|
175
175
|
protocolVersion: "2024-11-05",
|
|
176
176
|
capabilities: { tools: {} },
|
|
177
|
-
serverInfo: { name: "engram", version: "0.2.
|
|
177
|
+
serverInfo: { name: "engram", version: "0.2.1" }
|
|
178
178
|
}
|
|
179
179
|
};
|
|
180
180
|
case "tools/list":
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "engramx",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "AI coding
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Context as infra for AI coding tools — a Claude Code hook layer that intercepts Read/Edit/Grep and replaces file reads with structural graph summaries. Persistent, local, zero LLM cost.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"engram": "dist/cli.js",
|