engramx 0.5.1 → 0.5.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -341,7 +341,7 @@ Each view picks a different set of sections with different limits. For example,
341
341
 
342
342
  | | engram | Mem0 | Graphify | aider repo-map | CLAUDE.md |
343
343
  |---|---|---|---|---|---|
344
- | **Code structure** | AST extraction (10 langs) | No | Yes (tree-sitter) | Yes (tree-sitter) | No |
344
+ | **Code structure** | Heuristic extraction (10 langs) | No | Yes (tree-sitter) | Yes (tree-sitter) | No |
345
345
  | **Persistent memory** | SQLite graph, survives sessions | Yes (vector + graph) | Static snapshot | Per-session only | Manual text file |
346
346
  | **Session learning** | Mines decisions, patterns, mistakes | Generic facts | No | No | You write it by hand |
347
347
  | **Universal** | MCP + CLI + auto-gen | API only | Claude Code only | aider only | Claude Code only |
@@ -382,12 +382,12 @@ engram hooks status # Check installation
382
382
  engram hooks uninstall # Remove hooks
383
383
  ```
384
384
 
385
- Code changes trigger an instant AST rebuild (no LLM, <50ms). The graph stays fresh without manual re-runs.
385
+ Code changes trigger an instant graph rebuild (no LLM, <50ms). The graph stays fresh without manual re-runs.
386
386
 
387
387
  ## Programmatic API
388
388
 
389
389
  ```typescript
390
- import { init, query, godNodes, stats } from "engram";
390
+ import { init, query, godNodes, stats } from "engramx";
391
391
 
392
392
  // Build the graph
393
393
  const result = await init("./my-project");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "engramx",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "The context spine for AI coding agents. 6 providers assembled into rich context packets per Read interception. Up to 90% session-level token savings. Local SQLite, zero native deps, zero cloud.",
5
5
  "repository": {
6
6
  "type": "git",