Skip to content
Open
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.28.0"
".": "1.29.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: 120
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-c1b0e0d2c2bf9d7888ddef0cfdfb390458875cd2c1feb48a06fcd06e92105326.yml
openapi_spec_hash: ec61cf6d205251b54e1a6d68d9dd9860
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-655842d2f92e9a3525185c38986cfe40c08b4bab35d39384d519bc502f415904.yml
openapi_spec_hash: fabc1067256c27f29fc1225c1ea871bf
config_hash: 6d102da8b9fcc3d0deb42d7a707e78c6
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 1.29.0 (2026-08-04)

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

### Features

* **broker:** plumb Pi protocol selection ([#10256](https://github.com/runloopai/api-client-ts/issues/10256)) ([84893cc](https://github.com/runloopai/api-client-ts/commit/84893cc2ca7e97176bb24c917b1fcd08c1cc2fd5))
* **converter:** add Helm chart, container image, and enable in dev ([#10405](https://github.com/runloopai/api-client-ts/issues/10405)) ([3d08f4d](https://github.com/runloopai/api-client-ts/commit/3d08f4d5771cb771101fb479d5bb8d72b62a2092))


### Bug Fixes

* **mcp:** remove stale createFromInspection metadata ([#811](https://github.com/runloopai/api-client-ts/issues/811)) ([0842f40](https://github.com/runloopai/api-client-ts/commit/0842f402cc4a7ddc73d89e4643c3a5984e1bdb4a))

## 1.28.0 (2026-07-29)

Full Changelog: [v1.27.0...v1.28.0](https://github.com/runloopai/api-client-ts/compare/v1.27.0...v1.28.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.28.0",
"version": "1.29.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.28.0",
"version": "1.29.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.28.0",
"version": "1.29.0",
"description": "The official MCP Server for the Runloop API",
"author": "Runloop <support@runloop.ai>",
"types": "dist/index.d.ts",
Expand Down
1 change: 0 additions & 1 deletion packages/mcp-server/src/code-tool-worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ const fuse = new Fuse(
'client.agents.list',
'client.agents.retrieve',
'client.blueprints.create',
'client.blueprints.createFromInspection',
'client.blueprints.delete',
'client.blueprints.list',
'client.blueprints.listPublic',
Expand Down
6 changes: 0 additions & 6 deletions packages/mcp-server/src/methods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,6 @@ export const sdkMethods: SdkMethod[] = [
httpMethod: 'post',
httpPath: '/v1/blueprints/{id}/delete',
},
{
clientCallName: 'client.blueprints.createFromInspection',
fullyQualifiedName: 'blueprints.createFromInspection',
httpMethod: 'post',
httpPath: '/v1/blueprints/create_from_inspection',
},
{
clientCallName: 'client.blueprints.listPublic',
fullyQualifiedName: 'blueprints.listPublic',
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.28.0',
version: '1.29.0',
},
{
instructions: await getInstructions(stainlessApiKey),
Expand Down
2 changes: 1 addition & 1 deletion src/resources/blueprints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ export interface BlueprintView {
/**
* The status of the Blueprint build.
*/
status: 'queued' | 'provisioning' | 'building' | 'failed' | 'build_complete';
status: 'queued' | 'provisioning' | 'building' | 'awaiting_upload' | 'failed' | 'build_complete';

/**
* The ID of the base Blueprint.
Expand Down
6 changes: 3 additions & 3 deletions src/resources/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,20 +162,20 @@ export interface BrokerMount {

/**
* Binary to launch the agent (e.g., 'opencode'). Used by protocols that launch a
* subprocess (acp, claude_json, codex_json).
* subprocess (acp, claude_json, codex_json, pi_json).
*/
agent_binary?: string | null;

/**
* Arguments to pass to the agent command (e.g., ['acp']). Used by protocols that
* launch a subprocess (acp, claude_json, codex_json).
* launch a subprocess (acp, claude_json, codex_json, pi_json).
*/
launch_args?: Array<string> | null;

/**
* The protocol used by the broker to deliver events to the agent.
*/
protocol?: 'acp' | 'claude_json' | 'codex_json' | null;
protocol?: 'acp' | 'claude_json' | 'codex_json' | 'pi_json' | null;

/**
* Working directory in which to launch the agent binary. Defaults to the home
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.28.0'; // x-release-please-version
export const VERSION = '1.29.0'; // x-release-please-version