From 00ccec0f78fc22762e97c2a052ccf71bec485984 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 01:07:13 +0000 Subject: [PATCH] Version Packages --- .changeset/child-task-event.md | 9 --------- .changeset/cli-bridge-continuation-honesty.md | 7 ------- .changeset/environment-creation-verdict.md | 7 ------- packages/agent-interface/CHANGELOG.md | 10 ++++++++++ packages/agent-interface/package.json | 2 +- packages/agent-provider-cli-bridge/CHANGELOG.md | 11 +++++++++++ packages/agent-provider-cli-bridge/package.json | 4 ++-- packages/agent-provider-computesdk/package.json | 2 +- packages/agent-provider-daytona/package.json | 2 +- packages/agent-provider-e2b/package.json | 2 +- packages/agent-provider-tangle/CHANGELOG.md | 8 ++++++++ packages/agent-provider-tangle/package.json | 4 ++-- packages/agent-provider-testkit/CHANGELOG.md | 8 ++++++++ packages/agent-provider-testkit/package.json | 4 ++-- 14 files changed, 47 insertions(+), 33 deletions(-) delete mode 100644 .changeset/child-task-event.md delete mode 100644 .changeset/cli-bridge-continuation-honesty.md delete mode 100644 .changeset/environment-creation-verdict.md diff --git a/.changeset/child-task-event.md b/.changeset/child-task-event.md deleted file mode 100644 index 61530d1..0000000 --- a/.changeset/child-task-event.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@tangle-network/agent-interface": minor ---- - -Add the `child-task` stream event that reports a provider-native child task lifecycle with a stable `childId`, an optional `parentChildId`, a status, start and update times, optional runner, model, usage, and terminal reason, and a `sourceEventId` for replay deduplication. -The runtime schema validates it as a member of `CanonicalStreamEventSchema` and `RuntimeEventEnvelope`. - -Add the optional `AgentEnvironment.creation` verdict (`created` | `replayed`) reporting what the create call that returned the object did. -The shared idempotency helper now returns a `replayed` view for every same-key call after the first, so a caller can decide whether a failed follow-up may destroy the environment. diff --git a/.changeset/cli-bridge-continuation-honesty.md b/.changeset/cli-bridge-continuation-honesty.md deleted file mode 100644 index 7212ea7..0000000 --- a/.changeset/cli-bridge-continuation-honesty.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@tangle-network/agent-provider-cli-bridge": patch ---- - -State which call can add a turn to a reconstructed environment. -The README carries the two-tier continuation rule, one refusal replaces three near-copies of the same rule, and the message names `session.continueNative` and the capability it needs. -The contract test covers the `already_resolved_different`, `already_resolved_same`, and `cancelled` interaction acknowledgements against the real Bridge. diff --git a/.changeset/environment-creation-verdict.md b/.changeset/environment-creation-verdict.md deleted file mode 100644 index c6b26a8..0000000 --- a/.changeset/environment-creation-verdict.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@tangle-network/agent-provider-tangle": patch -"@tangle-network/agent-provider-cli-bridge": patch -"@tangle-network/agent-provider-testkit": patch ---- - -Report the `AgentEnvironment.creation` verdict: the Tangle provider maps the platform create receipt, the CLI Bridge provider states `created` for the call that builds the environment handle, and the provider conformance rejects a same-key replay that claims it created the environment. diff --git a/packages/agent-interface/CHANGELOG.md b/packages/agent-interface/CHANGELOG.md index e9be4ec..668d2e1 100644 --- a/packages/agent-interface/CHANGELOG.md +++ b/packages/agent-interface/CHANGELOG.md @@ -1,5 +1,15 @@ # @tangle-network/agent-interface +## 1.4.0 + +### Minor Changes + +- c1ca2fc: Add the `child-task` stream event that reports a provider-native child task lifecycle with a stable `childId`, an optional `parentChildId`, a status, start and update times, optional runner, model, usage, and terminal reason, and a `sourceEventId` for replay deduplication. + The runtime schema validates it as a member of `CanonicalStreamEventSchema` and `RuntimeEventEnvelope`. + + Add the optional `AgentEnvironment.creation` verdict (`created` | `replayed`) reporting what the create call that returned the object did. + The shared idempotency helper now returns a `replayed` view for every same-key call after the first, so a caller can decide whether a failed follow-up may destroy the environment. + ## 1.3.0 ### Minor Changes diff --git a/packages/agent-interface/package.json b/packages/agent-interface/package.json index 079ebfc..ced1e03 100644 --- a/packages/agent-interface/package.json +++ b/packages/agent-interface/package.json @@ -1,6 +1,6 @@ { "name": "@tangle-network/agent-interface", - "version": "1.3.0", + "version": "1.4.0", "type": "module", "sideEffects": false, "license": "MIT", diff --git a/packages/agent-provider-cli-bridge/CHANGELOG.md b/packages/agent-provider-cli-bridge/CHANGELOG.md index 5f6616e..f01cdf5 100644 --- a/packages/agent-provider-cli-bridge/CHANGELOG.md +++ b/packages/agent-provider-cli-bridge/CHANGELOG.md @@ -1,5 +1,16 @@ # @tangle-network/agent-provider-cli-bridge +## 0.9.5 + +### Patch Changes + +- 07cc02e: State which call can add a turn to a reconstructed environment. + The README carries the two-tier continuation rule, one refusal replaces three near-copies of the same rule, and the message names `session.continueNative` and the capability it needs. + The contract test covers the `already_resolved_different`, `already_resolved_same`, and `cancelled` interaction acknowledgements against the real Bridge. +- c1ca2fc: Report the `AgentEnvironment.creation` verdict: the Tangle provider maps the platform create receipt, the CLI Bridge provider states `created` for the call that builds the environment handle, and the provider conformance rejects a same-key replay that claims it created the environment. +- Updated dependencies [c1ca2fc] + - @tangle-network/agent-interface@1.4.0 + ## 0.9.4 ### Patch Changes diff --git a/packages/agent-provider-cli-bridge/package.json b/packages/agent-provider-cli-bridge/package.json index 9302f29..89e341f 100644 --- a/packages/agent-provider-cli-bridge/package.json +++ b/packages/agent-provider-cli-bridge/package.json @@ -1,6 +1,6 @@ { "name": "@tangle-network/agent-provider-cli-bridge", - "version": "0.9.4", + "version": "0.9.5", "description": "AgentEnvironmentProvider adapter for cli-bridge retained sessions and one-shot turns", "type": "module", "license": "MIT", @@ -75,7 +75,7 @@ "test:integration": "test -n \"$CLI_BRIDGE_INTEGRATION_ROOT\" || { echo 'CLI_BRIDGE_INTEGRATION_ROOT is required; see README' >&2; exit 1; }; vitest run tests/cli-bridge.integration.test.ts" }, "dependencies": { - "@tangle-network/agent-interface": "^1.3.0", + "@tangle-network/agent-interface": "^1.4.0", "undici": "catalog:" }, "devDependencies": { diff --git a/packages/agent-provider-computesdk/package.json b/packages/agent-provider-computesdk/package.json index 646f1a4..1a4ca9f 100644 --- a/packages/agent-provider-computesdk/package.json +++ b/packages/agent-provider-computesdk/package.json @@ -44,7 +44,7 @@ "test": "vitest run" }, "dependencies": { - "@tangle-network/agent-interface": "^1.0.1" + "@tangle-network/agent-interface": "^1.4.0" }, "peerDependencies": { "computesdk": "^4.1.3" diff --git a/packages/agent-provider-daytona/package.json b/packages/agent-provider-daytona/package.json index ec04a5f..ba24127 100644 --- a/packages/agent-provider-daytona/package.json +++ b/packages/agent-provider-daytona/package.json @@ -44,7 +44,7 @@ "test": "vitest run" }, "dependencies": { - "@tangle-network/agent-interface": "^1.0.1" + "@tangle-network/agent-interface": "^1.4.0" }, "peerDependencies": { "@daytonaio/sdk": "^0.192.0" diff --git a/packages/agent-provider-e2b/package.json b/packages/agent-provider-e2b/package.json index 0d97bd0..513ddc5 100644 --- a/packages/agent-provider-e2b/package.json +++ b/packages/agent-provider-e2b/package.json @@ -44,7 +44,7 @@ "test": "vitest run" }, "dependencies": { - "@tangle-network/agent-interface": "^1.0.1" + "@tangle-network/agent-interface": "^1.4.0" }, "peerDependencies": { "e2b": "^2.31.0" diff --git a/packages/agent-provider-tangle/CHANGELOG.md b/packages/agent-provider-tangle/CHANGELOG.md index 7abd0b2..2c220bd 100644 --- a/packages/agent-provider-tangle/CHANGELOG.md +++ b/packages/agent-provider-tangle/CHANGELOG.md @@ -1,5 +1,13 @@ # @tangle-network/agent-provider-tangle +## 0.13.1 + +### Patch Changes + +- c1ca2fc: Report the `AgentEnvironment.creation` verdict: the Tangle provider maps the platform create receipt, the CLI Bridge provider states `created` for the call that builds the environment handle, and the provider conformance rejects a same-key replay that claims it created the environment. +- Updated dependencies [c1ca2fc] + - @tangle-network/agent-interface@1.4.0 + ## 0.13.0 ### Minor Changes diff --git a/packages/agent-provider-tangle/package.json b/packages/agent-provider-tangle/package.json index 0e09ba5..646fa06 100644 --- a/packages/agent-provider-tangle/package.json +++ b/packages/agent-provider-tangle/package.json @@ -1,6 +1,6 @@ { "name": "@tangle-network/agent-provider-tangle", - "version": "0.13.0", + "version": "0.13.1", "description": "AgentEnvironmentProvider adapter for Tangle sandboxes", "type": "module", "license": "MIT", @@ -100,7 +100,7 @@ "test": "vitest run src" }, "dependencies": { - "@tangle-network/agent-interface": "^1.0.1" + "@tangle-network/agent-interface": "^1.4.0" }, "peerDependencies": { "@tangle-network/sandbox": ">=0.30.1 <1.0.0" diff --git a/packages/agent-provider-testkit/CHANGELOG.md b/packages/agent-provider-testkit/CHANGELOG.md index 1b6a4f2..7d4e448 100644 --- a/packages/agent-provider-testkit/CHANGELOG.md +++ b/packages/agent-provider-testkit/CHANGELOG.md @@ -1,5 +1,13 @@ # @tangle-network/agent-provider-testkit +## 0.8.4 + +### Patch Changes + +- c1ca2fc: Report the `AgentEnvironment.creation` verdict: the Tangle provider maps the platform create receipt, the CLI Bridge provider states `created` for the call that builds the environment handle, and the provider conformance rejects a same-key replay that claims it created the environment. +- Updated dependencies [c1ca2fc] + - @tangle-network/agent-interface@1.4.0 + ## 0.8.3 ### Patch Changes diff --git a/packages/agent-provider-testkit/package.json b/packages/agent-provider-testkit/package.json index 7badb1a..1075b73 100644 --- a/packages/agent-provider-testkit/package.json +++ b/packages/agent-provider-testkit/package.json @@ -1,6 +1,6 @@ { "name": "@tangle-network/agent-provider-testkit", - "version": "0.8.3", + "version": "0.8.4", "description": "Framework-neutral conformance checks for AgentEnvironmentProvider implementations", "type": "module", "license": "MIT", @@ -68,7 +68,7 @@ "test": "vitest run src" }, "dependencies": { - "@tangle-network/agent-interface": "^1.0.1" + "@tangle-network/agent-interface": "^1.4.0" }, "devDependencies": { "@types/node": "catalog:",