You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Alpha — subject to change.** This SDK is in early development. APIs, interfaces, and behavior may change without notice between versions.
10
10
11
-
TypeScript SDK for connecting to coding agents (Claude Code, OpenCode, etc.) running inside [Runloop](https://runloop.ai) devboxes via the Axon event bus.
11
+
TypeScript SDK for connecting applications to Runloop-hosted remote agents (Claude Code, OpenCode, etc.) via the Axon event bus.
12
12
13
13
## Key Concepts
14
14
@@ -38,7 +38,7 @@ In short: **Runloop** hosts **devboxes** where agents run; a **broker mount** co
|**ACP**|`@runloop/agent-axon-client/acp`|[Agent Client Protocol](https://agentclientprotocol.com) (JSON-RPC 2.0) | Using OpenCode, or Claude via ACP |
94
-
|**Claude**|`@runloop/agent-axon-client/claude`| Claude Code SDK wire format | Using Claude Code with native SDK message types |
93
+
|**ACP**|`@runloop/remote-agents-sdk/acp`|[Agent Client Protocol](https://agentclientprotocol.com) (JSON-RPC 2.0) | Using OpenCode, or Claude via ACP |
94
+
|**Claude**|`@runloop/remote-agents-sdk/claude`| Claude Code SDK wire format | Using Claude Code with native SDK message types |
95
95
96
96
97
97
### Which module should I use?
@@ -115,7 +115,7 @@ The SDK has two independent modules — pick the one that matches your agent's p
@@ -278,7 +278,7 @@ for await (const event of agent.receiveTimelineEvents()) {
278
278
279
279
See the [SDK documentation](sdk/README.md#custom-events-via-publish-and-tryparsetimelinepayload) for more on custom events, and the [full timeline API reference](sdk/README.md#timeline-events) for replay behavior and `afterSequence`.
280
280
281
-
See the [SDK documentation](sdk/README.md) for the full API reference, or browse the [hosted API docs](https://runloopai.github.io/agent-axon-client-ts/).
281
+
See the [SDK documentation](sdk/README.md) for the full API reference, or browse the [hosted API docs](https://runloopai.github.io/remote-agents-sdk/).
282
282
283
283
## Getting Agents onto the Devbox
284
284
@@ -292,7 +292,7 @@ The standalone examples (hello-world, CLI, combined-app) use a pre-baked **bluep
292
292
## Repository Structure
293
293
294
294
```
295
-
sdk/ → @runloop/agent-axon-client (the published npm package)
295
+
sdk/ → @runloop/remote-agents-sdk (the published npm package)
296
296
examples/
297
297
blueprint/ → Builds the shared `axon-agents` blueprint (run this first)
0 commit comments