@heddleagent/execution-host-client 6.6.0 → 6.6.1

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 +12 -6
  2. package/package.json +17 -6
package/README.md CHANGED
@@ -5,13 +5,13 @@ 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:** `6.6.0` is the latest published version as of
9
- > 2026-08-25; repository source may be ahead of that release. The former
8
+ > **Current availability:** `6.6.1` is the current package version as of
9
+ > 2026-08-26. The former
10
10
  > `@roackb2/heddle-adopter@5.13.0` coordinate is deprecated and remains
11
- > installable only for existing consumers. Heddle does not currently distribute
12
- > the compatible Execution Host implementation or offer a hosted service. The
13
- > public surface documents and tests the adopter boundary without implying a
14
- > generally available deployment.
11
+ > installable only for existing consumers. The compatible Execution Host source
12
+ > is maintained in this private-first repository; Heddle does not yet offer a
13
+ > generally available hosted service. Public package availability does not imply
14
+ > access to a managed deployment.
15
15
 
16
16
  Install the package:
17
17
 
@@ -19,6 +19,12 @@ Install the package:
19
19
  npm install @heddleagent/execution-host-client
20
20
  ```
21
21
 
22
+ The canonical source now lives in the private-first Heddle Execution Host
23
+ repository. The npm package remains public and requires no repository access;
24
+ the source visibility governs complete self-host inspection and operation, not
25
+ package installation. Public support remains at the Heddle issue tracker linked
26
+ from the package metadata.
27
+
22
28
  The package does **not** contain Heddle's agent loop, AgentCore Runtime
23
29
  deployment, Terraform, product MCP tools, or product logic. It uses the
24
30
  modular AWS SDK for its AgentCore transport and the official MCP SDK, plus
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heddleagent/execution-host-client",
3
- "version": "6.6.0",
3
+ "version": "6.6.1",
4
4
  "description": "Contracts, execution authority, lifecycle services, and adopter clients for compatible Heddle Execution Hosts",
5
5
  "author": "Jay / Fienna Liang <roackb2@gmail.com>",
6
6
  "license": "MIT",
@@ -11,11 +11,6 @@
11
11
  "tag": "latest",
12
12
  "registry": "https://registry.npmjs.org/"
13
13
  },
14
- "repository": {
15
- "type": "git",
16
- "url": "git+https://github.com/roackb2/heddle.git",
17
- "directory": "packages/execution-host-client"
18
- },
19
14
  "homepage": "https://heddleagent.com",
20
15
  "bugs": {
21
16
  "url": "https://github.com/roackb2/heddle/issues"
@@ -106,6 +101,16 @@
106
101
  "sdk",
107
102
  "streaming"
108
103
  ],
104
+ "scripts": {
105
+ "build": "yarn clean && yarn contract:verify && tsc -p tsconfig.build.json",
106
+ "clean": "node ../../scripts/clean-dist.mjs execution-host-client",
107
+ "conformance:python-v1": "python3 -m ruff check conformance/reference-adopters/python-v1 && python3 -m ruff format --check conformance/reference-adopters/python-v1 && python3 -m pytest conformance/reference-adopters/python-v1",
108
+ "contract:generate": "tsx scripts/generate-contract-artifacts.ts",
109
+ "contract:verify": "tsx scripts/generate-contract-artifacts.ts --check",
110
+ "example:node-control-plane": "yarn build && tsx examples/node-control-plane.ts",
111
+ "test": "vitest run --config vitest.config.ts",
112
+ "typecheck": "tsc -p tsconfig.test.json --noEmit"
113
+ },
109
114
  "dependencies": {
110
115
  "@aws-sdk/client-bedrock-agentcore": "^3.1107.0",
111
116
  "@modelcontextprotocol/sdk": "^1.29.0",
@@ -114,5 +119,11 @@
114
119
  "eventsource-parser": "^3.1.0",
115
120
  "jose": "^6.2.8",
116
121
  "zod": "^4.3.6"
122
+ },
123
+ "devDependencies": {
124
+ "@types/node": "^22.13.10",
125
+ "tsx": "^4.19.3",
126
+ "typescript": "^5.9.3",
127
+ "vitest": "^4.1.2"
117
128
  }
118
129
  }