causantic 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.
- package/README.md +2 -1
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
[](https://github.com/Entrolution/causantic/actions/workflows/ci.yml)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://nodejs.org)
|
|
7
|
+
[](https://docs.anthropic.com/en/docs/claude-code)
|
|
7
8
|
[](https://www.typescriptlang.org/)
|
|
8
9
|
|
|
9
10
|
**Long-term memory for Claude Code — local-first, graph-augmented, self-benchmarking.**
|
|
@@ -304,7 +305,7 @@ The name reflects how the causal graph's value is **structural ordering** — wh
|
|
|
304
305
|
- **Initial ingestion time**: Large session histories take time to parse, embed, and cluster. This is a one-time cost.
|
|
305
306
|
- **Edge quality dependency**: Chain walking depends on connected edges. Sparse or orphaned chunks fall back to ranked search results.
|
|
306
307
|
- **Collection size effects**: Benchmark scores improve as more sessions are ingested. Small collections (<100 chunks) won't benefit much from chain walking or clustering.
|
|
307
|
-
- **Claude Code
|
|
308
|
+
- **Claude Code 5.1+ required**: Hooks use `async` mode which requires Claude Code 5.1 or later. The parser assumes Claude Code session format (JSONL transcripts). Not a general-purpose memory system.
|
|
308
309
|
- **Local compute**: Embedding inference runs on your hardware. Apple Silicon (CoreML) and NVIDIA GPUs are supported; CPU-only is slower.
|
|
309
310
|
|
|
310
311
|
## Maintenance
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "causantic",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Long-term memory for Claude Code — local-first, graph-augmented, self-benchmarking",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"src/dashboard/client/package-lock.json"
|
|
49
49
|
],
|
|
50
50
|
"scripts": {
|
|
51
|
-
"prepublishOnly": "npm run build && npm test",
|
|
52
51
|
"build": "tsc && cp src/storage/schema.sql dist/storage/ && cd src/dashboard/client && npm install --ignore-scripts && npm run build",
|
|
53
52
|
"build:server": "tsc && cp src/storage/schema.sql dist/storage/",
|
|
54
53
|
"build:client": "cd src/dashboard/client && npm install --ignore-scripts && npm run build",
|