@automatalabs/pi-acp 0.6.1 → 0.6.3
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 +3 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -100,6 +100,8 @@ re-issue is safe). A query for an unknown session is the standard `unknown_sessi
|
|
|
100
100
|
|
|
101
101
|
The `pnpm test` script intentionally runs `tsc -p tsconfig.type-tests.json` before the runtime test suite. This is a small deviation from the test-script example in the frozen specification and ensures the T2b public type-contract check is enforced in local and CI test runs.
|
|
102
102
|
|
|
103
|
+
Run `node scripts/smoke-pi-package.mjs` from the repository root after changing Pi dependencies. It packs this adapter and checks its public SDK import in fresh npm and pnpm installations. The adapter explicitly supplies `@earendil-works/pi-server`: Pi 0.85.0's public SDK imports that runtime but omits it from its published dependency list.
|
|
104
|
+
|
|
103
105
|
## Built on pi — THIRD-PARTY notice
|
|
104
106
|
|
|
105
|
-
This package depends on and embeds `@earendil-works/pi-coding-agent`, `@earendil-works/pi-agent-core`, and `@earendil-works/pi-
|
|
107
|
+
This package depends on and embeds `@earendil-works/pi-coding-agent`, `@earendil-works/pi-agent-core`, `@earendil-works/pi-ai`, and `@earendil-works/pi-server` version 0.85.0. pi is Copyright Earendil Inc., Mario Zechner, and Armin Ronacher and is distributed under the MIT License. The dependency packages retain the full MIT copyright and license text. pi-acp itself is Apache-2.0.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automatalabs/pi-acp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.19.0"
|
|
@@ -31,13 +31,14 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@agentclientprotocol/sdk": "1.4.0",
|
|
34
|
-
"@earendil-works/pi-ai": "0.
|
|
35
|
-
"@earendil-works/pi-coding-agent": "0.
|
|
34
|
+
"@earendil-works/pi-ai": "0.85.0",
|
|
35
|
+
"@earendil-works/pi-coding-agent": "0.85.0",
|
|
36
|
+
"@earendil-works/pi-server": "0.85.0",
|
|
36
37
|
"@modelcontextprotocol/sdk": "1.30.0",
|
|
37
38
|
"typebox": "1.3.2"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
40
|
-
"@earendil-works/pi-agent-core": "0.
|
|
41
|
+
"@earendil-works/pi-agent-core": "0.85.0"
|
|
41
42
|
},
|
|
42
43
|
"scripts": {
|
|
43
44
|
"build": "tsc -b",
|