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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
{
"packages/sandbox": "0.1.0",
"packages/agent": "0.1.0",
"packages/agent": "0.2.0",
"packages/provider": "0.2.0"
}
14 changes: 14 additions & 0 deletions packages/agent/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.2.0](https://github.com/coder/ai-sdk/compare/agent-v0.1.0...agent-v0.2.0) (2026-06-24)

Adds cancellation, timeouts, typed errors, and lifecycle helpers for more robust agent control. Also introduces file upload support for chat attachments and workspace files.

### Highlights

- Agents now support cancellation, timeouts, typed errors, and lifecycle helpers for finer-grained control over execution. ([#13](https://github.com/coder/ai-sdk/pull/13))
- Added file upload support, covering both chat attachments and workspace files. ([#10](https://github.com/coder/ai-sdk/pull/10))

### Features

* **agent:** add file uploads (chat attachments + workspace files) ([#10](https://github.com/coder/ai-sdk/issues/10)) ([cfc5dd9](https://github.com/coder/ai-sdk/commit/cfc5dd9290ee435442dc91a58867526cfde2542f))
* **agent:** cancellation, timeouts, typed errors, and lifecycle helpers ([#13](https://github.com/coder/ai-sdk/issues/13)) ([08fa1dd](https://github.com/coder/ai-sdk/commit/08fa1ddacdd38934ec103a6d4bef2523255a81f4))

## [0.1.0](https://github.com/coder/ai-sdk/compare/agent-v0.1.0...agent-v0.1.0) (2026-06-18)

Initial release of the agent package, migrated into the coder/ai-sdk monorepo. Documentation has been cleaned up to remove internal naming and point at the new repository.
Expand Down
2 changes: 1 addition & 1 deletion packages/agent/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@coder/ai-sdk-agent",
"version": "0.1.0",
"version": "0.2.0",
"description": "A Vercel AI SDK-compliant agent backed by Coder Agents, Coder's server-side agent runtime. `new CoderAgent()` returns a real AI SDK Agent (generate/stream).",
"keywords": [
"agent",
Expand Down