@agentplat/mesh-sim-postgres 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.
- package/README.md +13 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -5,6 +5,19 @@ hosts. The adapter provides revision compare-and-swap, immutable slot commits,
|
|
|
5
5
|
content-addressed artifacts, atomic lease-fence validation and a restart-durable
|
|
6
6
|
head store for scalable team-vs-team evaluation.
|
|
7
7
|
|
|
8
|
+
## Installation (developer preview)
|
|
9
|
+
|
|
10
|
+
Install the coordinated preview explicitly:
|
|
11
|
+
|
|
12
|
+
```sh
|
|
13
|
+
npm install @agentplat/mesh-sim-postgres@next
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Keep all `@agentplat/*` packages on the same release version. npm's default
|
|
17
|
+
`latest` tag can point to an older preview. See the
|
|
18
|
+
[release channels](https://github.com/Agentplat/agentplat/blob/main/docs/release-channels.md)
|
|
19
|
+
for distribution status and version selection.
|
|
20
|
+
|
|
8
21
|
The caller supplies a scoped namespace and owns the `pg` pool lifecycle. Apply
|
|
9
22
|
the packaged migration before opening the store:
|
|
10
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentplat/mesh-sim-postgres",
|
|
3
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"version": "0.3.0-beta.7",
|
|
4
4
|
"description": "PostgreSQL campaign custody, fenced execution, and restart-durable scalable evaluation checkpoints for AgentPlat Mesh simulation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"README.md"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"@agentplat/collective-planning": "^0.3.0-beta.7",
|
|
23
|
+
"@agentplat/mesh-sim": "^0.3.0-beta.7",
|
|
24
|
+
"@agentplat/postgres": "^0.3.0-beta.7",
|
|
22
25
|
"@types/node": "^20.10.0",
|
|
23
26
|
"@types/pg": "^8.11.10",
|
|
24
|
-
"pg": "^8.13.1"
|
|
25
|
-
"@agentplat/mesh-sim": "^0.3.0-beta.4",
|
|
26
|
-
"@agentplat/postgres": "^0.3.0-beta.4",
|
|
27
|
-
"@agentplat/collective-planning": "^0.3.0-beta.4"
|
|
27
|
+
"pg": "^8.13.1"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=20.19.3"
|