@aletheia-labs/dynamics 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,6 +4,13 @@ Deterministic memory dynamics for Aletheia.
4
4
 
5
5
  > **Status**: `0.1.0` public baseline. Dynamics engine, deterministic sleep-cycle reports, explicit multi-cycle runs, and human-confirmed reconsolidation apply are live.
6
6
 
7
+ ## Requirements
8
+
9
+ - Node 20+.
10
+ - ESM-only. Add `"type": "module"` to your `package.json`, use `.mjs`, or use
11
+ a build tool/runtime that handles ESM. CommonJS `require()` is not shipped in
12
+ `0.1.x`.
13
+
7
14
  ## Quickstart
8
15
 
9
16
  ```bash
@@ -167,3 +174,10 @@ pnpm -F @aletheia-labs/dynamics typecheck
167
174
  pnpm -F @aletheia-labs/dynamics test
168
175
  pnpm -F @aletheia-labs/dynamics build
169
176
  ```
177
+
178
+ ## Specs
179
+
180
+ This package implements:
181
+
182
+ - `specs/memory-dynamics-v0.md` — lifecycle dynamics, decay, recall evidence, sleep-cycle, and reconsolidation.
183
+ - `specs/aletheia-memory-authority-v0.md` — how dynamics fits the broader authority protocol.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aletheia-labs/dynamics",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Deterministic memory dynamics for Aletheia: decay, promotion, and conflict revisits.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -19,7 +19,7 @@
19
19
  "LICENSE"
20
20
  ],
21
21
  "dependencies": {
22
- "@aletheia-labs/core": "0.1.0"
22
+ "@aletheia-labs/core": "0.1.1"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/node": "^22.10.0",