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 number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.19.0"
".": "1.20.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 115
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-5b536a11a713dd4e47b270c130368dbfdf1f30282f262c160cd0411fcd291806.yml
openapi_spec_hash: f94d993a7f34461ebde7d0186e8e3c3a
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-406ebae7a9b8525a70a6400f4119209fc0230f73c93f56b63ee27b43cf7e5085.yml
openapi_spec_hash: 7ad158db2a73b2a9c31fce2f7f8f935a
config_hash: 12de9459ff629b6a3072a75b236b7b70
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.20.0 (2026-04-14)

Full Changelog: [v1.19.0...v1.20.0](https://github.com/runloopai/api-client-ts/compare/v1.19.0...v1.20.0)

### Features

* add OO SDK support for new Agent API calls ([#780](https://github.com/runloopai/api-client-ts/issues/780)) ([cb107b1](https://github.com/runloopai/api-client-ts/commit/cb107b1b5b0a35b2670ae8cfb09092695e6575d7))
* **axon:** add working directory / directory to launch agent ([#8689](https://github.com/runloopai/api-client-ts/issues/8689)) ([72a0357](https://github.com/runloopai/api-client-ts/commit/72a0357139ffee91b61cc0f176f5a8412a894bcd))

## 1.19.0 (2026-04-13)

Full Changelog: [v1.18.1...v1.19.0](https://github.com/runloopai/api-client-ts/compare/v1.18.1...v1.19.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runloop/api-client",
"version": "1.19.0",
"version": "1.20.0",
"description": "The official TypeScript library for the Runloop API",
"author": "Runloop <support@runloop.ai>",
"types": "dist/sdk.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dxt_version": "0.2",
"name": "@runloop/api-client-mcp",
"version": "1.19.0",
"version": "1.20.0",
"description": "The official MCP Server for the Runloop API",
"author": {
"name": "Runloop",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runloop/api-client-mcp",
"version": "1.19.0",
"version": "1.20.0",
"description": "The official MCP Server for the Runloop API",
"author": "Runloop <support@runloop.ai>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
new McpServer(
{
name: 'runloop_api_client_api',
version: '1.19.0',
version: '1.20.0',
},
{
instructions: await getInstructions(stainlessApiKey),
Expand Down
6 changes: 6 additions & 0 deletions src/resources/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,12 @@ export interface BrokerMount {
* The protocol used by the broker to deliver events to the agent.
*/
protocol?: 'acp' | 'claude_json' | null;

/**
* Working directory in which to launch the agent binary. Defaults to the home
* directory if not specified.
*/
working_directory?: string | null;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.19.0'; // x-release-please-version
export const VERSION = '1.20.0'; // x-release-please-version