@agentplat/mesh-conformance 0.3.0-beta.5 → 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.
- package/README.md +13 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -4,6 +4,19 @@ Provider-neutral compatibility runners for Agentplat Mesh implementations and
|
|
|
4
4
|
adapters. The package performs no work on import, reads no ambient credentials
|
|
5
5
|
and never creates or destroys resources without a caller factory.
|
|
6
6
|
|
|
7
|
+
## Installation (developer preview)
|
|
8
|
+
|
|
9
|
+
Install the coordinated preview explicitly:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install @agentplat/mesh-conformance@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 root export owns the closed capability, case and report contracts.
|
|
8
21
|
`./protocol`, `./transport`, `./durability`, `./rooms`, `./control` and
|
|
9
22
|
`./planning` expose bounded runners. A passing report describes only the exact
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentplat/mesh-conformance",
|
|
3
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"version": "0.3.0-beta.7",
|
|
4
4
|
"description": "Provider-neutral compatibility runners for Agentplat Mesh adapters.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"README.md"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@agentplat/collective-control": "^0.3.0-beta.
|
|
46
|
-
"@agentplat/
|
|
47
|
-
"@agentplat/
|
|
48
|
-
"@agentplat/mesh
|
|
49
|
-
"@agentplat/
|
|
50
|
-
"@agentplat/
|
|
45
|
+
"@agentplat/collective-control": "^0.3.0-beta.7",
|
|
46
|
+
"@agentplat/collective-planning": "^0.3.0-beta.7",
|
|
47
|
+
"@agentplat/inference-control": "^0.3.0-beta.7",
|
|
48
|
+
"@agentplat/mesh": "^0.3.0-beta.7",
|
|
49
|
+
"@agentplat/mesh-protocol": "^0.3.0-beta.7",
|
|
50
|
+
"@agentplat/rooms-mesh": "^0.3.0-beta.7"
|
|
51
51
|
},
|
|
52
52
|
"engines": {
|
|
53
53
|
"node": ">=20.19.3"
|