@remnic/belief-ledger 9.6.24 → 9.6.25

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 +13 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -5,6 +5,15 @@ predictions, and opinions as structured Remnic facts, retrieves prior claims tha
5
5
  may conflict, asks a host LLM to classify the relationship, and tracks prediction
6
6
  calibration over time.
7
7
 
8
+ Part of [Remnic](https://github.com/joshuaswarren/remnic), the open-source,
9
+ local-first memory and context layer for AI agents.
10
+
11
+ ## Install
12
+
13
+ ```bash
14
+ npm install @remnic/belief-ledger
15
+ ```
16
+
8
17
  This package is intentionally host-neutral:
9
18
 
10
19
  - It depends on `@remnic/core` public APIs.
@@ -68,3 +77,7 @@ path. For OpenClaw-backed Remnic runtimes, pass the existing gateway-backed
68
77
  verdict source or return a user-verdict prompt.
69
78
  - `reflect`: compute calibration summaries, Brier score, flipped claims, and
70
79
  dormant topics.
80
+
81
+ ## License
82
+
83
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/belief-ledger",
3
- "version": "9.6.24",
3
+ "version": "9.6.25",
4
4
  "description": "Belief and prediction ledger library built on Remnic memory primitives",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,13 +20,13 @@
20
20
  "provenance": true
21
21
  },
22
22
  "peerDependencies": {
23
- "@remnic/core": "^9.6.24"
23
+ "@remnic/core": "^9.6.25"
24
24
  },
25
25
  "devDependencies": {
26
26
  "tsup": "^8.0.0",
27
27
  "tsx": "^4.0.0",
28
28
  "typescript": "^5.7.0",
29
- "@remnic/core": "9.6.24"
29
+ "@remnic/core": "9.6.25"
30
30
  },
31
31
  "license": "MIT",
32
32
  "repository": {