@heddleagent/execution-host-client 6.0.0-next.0 → 6.0.0
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 +6 -6
- package/package.json +2 -2
- package/spec/v1/README.md +4 -5
package/README.md
CHANGED
|
@@ -5,17 +5,17 @@ products that invoke a separately deployed Heddle Execution Host. It lets an
|
|
|
5
5
|
adopter keep its own language stack, authentication, database, product policy,
|
|
6
6
|
MCP tools, and UI while reusing the security-sensitive v1 contract machinery.
|
|
7
7
|
|
|
8
|
-
> **Current availability:** version `6.0.0
|
|
9
|
-
>
|
|
10
|
-
>
|
|
8
|
+
> **Current availability:** stable version `6.0.0`. The former
|
|
9
|
+
> `@roackb2/heddle-adopter@5.13.0` coordinate remains installable during
|
|
10
|
+
> migration. Heddle does not currently distribute
|
|
11
11
|
> the compatible Execution Host implementation or offer a hosted service. The
|
|
12
12
|
> public surface documents and tests the adopter boundary without implying a
|
|
13
13
|
> generally available deployment.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Install the package:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npm install @heddleagent/execution-host-client
|
|
18
|
+
npm install @heddleagent/execution-host-client
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
The package does **not** contain Heddle's agent loop, AgentCore deployment,
|
|
@@ -36,7 +36,7 @@ reference edges.
|
|
|
36
36
|
| `@heddleagent/execution-host-client/testing` | Node-only loopback v1 fixture plus durable-turn store conformance for real adapters |
|
|
37
37
|
| `@heddleagent/execution-host-client/node` | Optional Node JWKS/conversation HTTP edge plus safe local signing-key helpers |
|
|
38
38
|
|
|
39
|
-
Non-TypeScript adopters can consume the versioned
|
|
39
|
+
Non-TypeScript adopters can consume the versioned
|
|
40
40
|
[`spec/v1`](spec/v1/README.md) OpenAPI 3.1.1 document, JSON Schema bundle, and
|
|
41
41
|
golden conformance fixtures directly. The
|
|
42
42
|
[`Python v1 conformance reference`](conformance/reference-adopters/python-v1/README.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heddleagent/execution-host-client",
|
|
3
|
-
"version": "6.0.0
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Backend contracts, execution authority, lifecycle services, and clients for compatible Heddle Execution Hosts",
|
|
5
5
|
"author": "Jay / Fienna Liang <roackb2@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public",
|
|
11
|
-
"tag": "
|
|
11
|
+
"tag": "latest",
|
|
12
12
|
"registry": "https://registry.npmjs.org/"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
package/spec/v1/README.md
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
# Execution Host adopter contract v1
|
|
2
2
|
|
|
3
3
|
This directory is the language-neutral contract for an adopter backend which
|
|
4
|
-
invokes a Heddle-compatible Execution Host. It is included in
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
published on npm.
|
|
4
|
+
invokes a Heddle-compatible Execution Host. It is included in the published
|
|
5
|
+
`@heddleagent/execution-host-client` package, but consuming it does not require
|
|
6
|
+
JavaScript or TypeScript.
|
|
8
7
|
|
|
9
8
|
## Artifacts
|
|
10
9
|
|
|
@@ -32,7 +31,7 @@ CI and package builds use the non-writing drift check:
|
|
|
32
31
|
yarn execution-host-client:contract:verify
|
|
33
32
|
```
|
|
34
33
|
|
|
35
|
-
The checked-in JSON files are the
|
|
34
|
+
The checked-in JSON files are the versioned interoperability artifacts. The
|
|
36
35
|
TypeScript Zod schemas remain the reference implementation used to generate
|
|
37
36
|
them. A non-TypeScript adopter should implement the JSON/SSE/JWT contract and
|
|
38
37
|
run the golden fixtures; it should not port Heddle's agent loop.
|