engramx 0.2.1 → 0.3.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 +122 -30
- package/dist/{chunk-YQ3FPGPC.js → chunk-IYO4HETA.js} +1 -1
- package/dist/{chunk-22ADJYQ5.js → chunk-RGDHLGWQ.js} +213 -2
- package/dist/cli.js +1661 -3
- package/dist/{core-HWOM7GSU.js → core-2TWPNHRQ.js} +5 -1
- package/dist/index.js +2 -2
- package/dist/serve.js +1 -1
- package/package.json +13 -9
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
benchmark,
|
|
3
|
+
computeKeywordIDF,
|
|
3
4
|
getDbPath,
|
|
5
|
+
getFileContext,
|
|
4
6
|
getStore,
|
|
5
7
|
godNodes,
|
|
6
8
|
init,
|
|
@@ -9,10 +11,12 @@ import {
|
|
|
9
11
|
path,
|
|
10
12
|
query,
|
|
11
13
|
stats
|
|
12
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-RGDHLGWQ.js";
|
|
13
15
|
export {
|
|
14
16
|
benchmark,
|
|
17
|
+
computeKeywordIDF,
|
|
15
18
|
getDbPath,
|
|
19
|
+
getFileContext,
|
|
16
20
|
getStore,
|
|
17
21
|
godNodes,
|
|
18
22
|
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-IYO4HETA.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-RGDHLGWQ.js";
|
|
27
27
|
export {
|
|
28
28
|
GraphStore,
|
|
29
29
|
SUPPORTED_EXTENSIONS,
|
package/dist/serve.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "engramx",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "AI
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "The structural code graph your AI agent can't forget to use. A Claude Code hook layer that intercepts Read/Edit/Write/Bash and replaces file contents with ~300-token structural graph summaries. 82% measured token reduction. Context rot is empirically solved — cite Chroma. Local SQLite, zero LLM cost, zero cloud, zero native deps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"engram": "dist/cli.js",
|
|
@@ -17,16 +17,20 @@
|
|
|
17
17
|
"prepublishOnly": "npm run build"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"context",
|
|
24
|
-
"tree-sitter",
|
|
20
|
+
"structural-code-graph",
|
|
21
|
+
"claude-code-hooks",
|
|
22
|
+
"ai-coding",
|
|
23
|
+
"context-engineering",
|
|
25
24
|
"knowledge-graph",
|
|
25
|
+
"ast",
|
|
26
26
|
"mcp",
|
|
27
|
-
"claude",
|
|
27
|
+
"claude-code",
|
|
28
28
|
"cursor",
|
|
29
|
-
"token-
|
|
29
|
+
"token-reduction",
|
|
30
|
+
"context-rot",
|
|
31
|
+
"local-first",
|
|
32
|
+
"agent-memory",
|
|
33
|
+
"hook-interception"
|
|
30
34
|
],
|
|
31
35
|
"author": "Nicholas Ashkar",
|
|
32
36
|
"license": "Apache-2.0",
|