@agentplat/mesh-sim-local 0.3.0-beta.4 → 0.3.0-beta.7

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 +2 -2
package/README.md CHANGED
@@ -4,6 +4,19 @@ Node.js local storage adapter for statistical campaign evidence. It stores bytes
4
4
  in an immutable SHA-256 content-addressed store, publishes slot commits without
5
5
  overwrite, and exposes campaign locks that are never broken automatically.
6
6
 
7
+ ## Installation (developer preview)
8
+
9
+ Install the coordinated preview explicitly:
10
+
11
+ ```sh
12
+ npm install @agentplat/mesh-sim-local@next
13
+ ```
14
+
15
+ Keep all `@agentplat/*` packages on the same release version. npm's default
16
+ `latest` tag can point to an older preview. See the
17
+ [release channels](https://github.com/Agentplat/agentplat/blob/main/docs/release-channels.md)
18
+ for distribution status and version selection.
19
+
7
20
  The caller supplies an explicit absolute root. Logical artifact paths are never
8
21
  used as filesystem paths. `readBundleV1` and `readCurrentBundleV1` require a
9
22
  caller-provided verifier; use the campaign bundle verifier from `mesh-sim` for
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentplat/mesh-sim-local",
3
- "version": "0.3.0-beta.4",
3
+ "version": "0.3.0-beta.7",
4
4
  "description": "Local content-addressed evidence store for Agentplat Mesh simulation campaigns.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -18,7 +18,7 @@
18
18
  "README.md"
19
19
  ],
20
20
  "dependencies": {
21
- "@agentplat/mesh-sim": "^0.3.0-beta.4"
21
+ "@agentplat/mesh-sim": "^0.3.0-beta.7"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/node": "^20.10.0"