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
11 changes: 0 additions & 11 deletions .changeset/agent-tools-orchestration.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/facet-schedules.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/native-context-facet-bootstrap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/think-send-reasoning.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/think-telemetry.md

This file was deleted.

12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions packages/agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @cloudflare/agents

## 0.12.0

### Minor Changes

- [#1421](https://github.com/cloudflare/agents/pull/1421) [`1b65ff5`](https://github.com/cloudflare/agents/commit/1b65ff5550f904e2a59bd6015703f82b02f85e4f) Thanks [@threepointone](https://github.com/threepointone)! - Add agent tool orchestration for running Think and AIChatAgent sub-agents as
retained, streaming tools from a parent agent. The new surface includes
`runAgentTool`, `agentTool`, parent-side run replay and cleanup, Think and
AIChatAgent child adapter support, and headless React/client event state
helpers.

### Patch Changes

- [#1418](https://github.com/cloudflare/agents/pull/1418) [`8de0ce3`](https://github.com/cloudflare/agents/commit/8de0ce39495e16e5b25bece9113f591934663cc8) Thanks [@threepointone](https://github.com/threepointone)! - Allow sub-agents to use alarm-backed APIs by delegating the physical Durable Object alarm to the top-level parent while executing logical work inside the owning sub-agent. This enables `schedule()`, `scheduleEvery()`, `cancelSchedule()`, `getScheduleById()`, `listSchedules()`, `keepAlive()`, `keepAliveWhile()`, `runFiber()`, and Think chat recovery inside sub-agents.

Sub-agent schedules are scoped to the calling child, so sibling sub-agents cannot cancel each other's schedules by id. The deprecated synchronous `getSchedule()` and `getSchedules()` APIs now throw inside sub-agents; use the async alternatives instead. Destroying a sub-agent now delegates cleanup through the parent so parent-owned schedules and descendant fiber recovery leases are removed consistently.

- [#1425](https://github.com/cloudflare/agents/pull/1425) [`6471cbd`](https://github.com/cloudflare/agents/commit/6471cbd8113df5431aa1d2aabcbcc8f32f5c8cf7) Thanks [@threepointone](https://github.com/threepointone)! - Clear request, WebSocket, and email native context handles when switching Agent instances and suppress protocol broadcasts during sub-agent facet bootstrap.

## 0.11.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/agents/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"durable objects"
],
"type": "module",
"version": "0.11.9",
"version": "0.12.0",
"license": "MIT",
"repository": {
"directory": "packages/agents",
Expand Down
10 changes: 10 additions & 0 deletions packages/ai-chat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @cloudflare/ai-chat

## 0.6.0

### Minor Changes

- [#1421](https://github.com/cloudflare/agents/pull/1421) [`1b65ff5`](https://github.com/cloudflare/agents/commit/1b65ff5550f904e2a59bd6015703f82b02f85e4f) Thanks [@threepointone](https://github.com/threepointone)! - Add agent tool orchestration for running Think and AIChatAgent sub-agents as
retained, streaming tools from a parent agent. The new surface includes
`runAgentTool`, `agentTool`, parent-side run replay and cleanup, Think and
AIChatAgent child adapter support, and headless React/client event state
helpers.

## 0.5.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/ai-chat/package.json
Comment thread
devin-ai-integration[bot] marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/ai-chat",
"version": "0.5.4",
"version": "0.6.0",
"description": "Cloudflare Agents (x) AI SDK Chat",
"keywords": [
"cloudflare",
Expand Down Expand Up @@ -28,7 +28,7 @@
},
"peerDependencies": {
"@ai-sdk/react": "^3.0.0",
"agents": ">=0.11.7 <1.0.0",
"agents": ">=0.12.0 <1.0.0",
"ai": "^6.0.0",
"react": "^19.0.0",
"zod": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/hono-agents/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"description": "Add Cloudflare Agents to your Hono app",
"devDependencies": {
"agents": "^0.11.7",
"agents": "^0.12.0",
"hono": "^4.12.15"
},
"publishConfig": {
Expand Down
17 changes: 17 additions & 0 deletions packages/think/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @cloudflare/think

## 0.5.0

### Minor Changes

- [#1421](https://github.com/cloudflare/agents/pull/1421) [`1b65ff5`](https://github.com/cloudflare/agents/commit/1b65ff5550f904e2a59bd6015703f82b02f85e4f) Thanks [@threepointone](https://github.com/threepointone)! - Add agent tool orchestration for running Think and AIChatAgent sub-agents as
retained, streaming tools from a parent agent. The new surface includes
`runAgentTool`, `agentTool`, parent-side run replay and cleanup, Think and
AIChatAgent child adapter support, and headless React/client event state
helpers.

### Patch Changes

- [#1424](https://github.com/cloudflare/agents/pull/1424) [`58ca2fc`](https://github.com/cloudflare/agents/commit/58ca2fc1edda0f8a91ddce853014f8a7c8662f64) Thanks [@threepointone](https://github.com/threepointone)! - Add `sendReasoning` controls to Think. Subclasses can set an instance-wide default, and `beforeTurn` can return a per-turn override to include or suppress reasoning chunks in UI message streams.

- [#1423](https://github.com/cloudflare/agents/pull/1423) [`0ed42a9`](https://github.com/cloudflare/agents/commit/0ed42a908ed28181d12dfaa9c97e182e831d0218) Thanks [@threepointone](https://github.com/threepointone)! - Forward `TurnConfig.experimental_telemetry` to Think's internal AI SDK
`streamText()` call so applications can configure per-turn LLM observability.

## 0.4.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/think/package.json
Comment thread
devin-ai-integration[bot] marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"tools"
],
"type": "module",
"version": "0.4.2",
"version": "0.5.0",
"license": "MIT",
"repository": {
"directory": "packages/think",
Expand All @@ -28,7 +28,7 @@
"peerDependencies": {
"@cloudflare/codemode": ">=0.3.4 <1.0.0",
"@cloudflare/shell": ">=0.3.4 <1.0.0",
"agents": ">=0.11.7 <1.0.0",
"agents": ">=0.12.0 <1.0.0",
"ai": "^6.0.0",
"zod": "^4.0.0"
},
Expand Down
Loading