Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/child-task-event.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/cli-bridge-continuation-honesty.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/environment-creation-verdict.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/agent-interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-interface/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tangle-network/agent-interface",
"version": "1.3.0",
"version": "1.4.0",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down
11 changes: 11 additions & 0 deletions packages/agent-provider-cli-bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/agent-provider-cli-bridge/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-provider-computesdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-provider-daytona/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-provider-e2b/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 8 additions & 0 deletions packages/agent-provider-tangle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/agent-provider-tangle/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
Expand Down
8 changes: 8 additions & 0 deletions packages/agent-provider-testkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/agent-provider-testkit/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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:",
Expand Down