@manifesto-ai/lineage 3.1.0 → 3.1.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 CHANGED
@@ -9,9 +9,10 @@
9
9
  ## What This Package Owns
10
10
 
11
11
  - `withLineage(createManifesto(...), config).activate()`
12
- - lineage-aware `dispatchAsync` that seals before publication
12
+ - lineage-aware `commitAsync` that seals before publication
13
13
  - restore, head, branch, and world queries on the activated runtime
14
- - `LineageStore`, `LineageService`, and sealing substrate
14
+ - `getLineage()` for DAG inspection on the activated runtime
15
+ - sealing substrate and the internal provider surface
15
16
  - deterministic world identity, branch semantics, and restore normalization
16
17
 
17
18
  ## Canonical Path
@@ -25,7 +26,7 @@ const world = withLineage(manifesto, {
25
26
  store: createInMemoryLineageStore(),
26
27
  }).activate();
27
28
 
28
- await world.dispatchAsync(
29
+ await world.commitAsync(
29
30
  world.createIntent(world.MEL.actions.increment),
30
31
  );
31
32
 
@@ -37,7 +38,7 @@ if (head) {
37
38
 
38
39
  ## Low-Level Usage
39
40
 
40
- `LineageService` and `LineageStore` remain public. Use them directly when you need hashing, prepared commits, branch inspection, or custom persistence without the activated runtime wrapper.
41
+ Use `@manifesto-ai/lineage/internal` when you need `LineageService`, `LineageStore`, prepared commits, or custom persistence without the activated runtime wrapper.
41
42
 
42
43
  ## Docs
43
44