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
fix(mcp): preserve default backend for cloud spawn
Use the configured default backend when spawn_cloud_agent has no runtime profile backend, and add a SQLite-backed MCP smoke test covering config bootstrap, dispatch, logs, and results.
Copy file name to clipboardExpand all lines: README.md
+14-11Lines changed: 14 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ A single MCP server exposes nine tools to your assistant:
48
48
49
49
| Tool | What it does |
50
50
| --- | --- |
51
-
|`spawn_cloud_agent`| The shortcut. One `instruction`, defaults from a runtime profile, returns a durable `task_id` and optional `cloud_agent` metadata. |
51
+
|`spawn_cloud_agent`| The shortcut. One `instruction`, defaults from a runtime profile, returns a durable `taskId` and optional `cloudAgent` metadata. |
52
52
|`dispatch_task`| The escape hatch. Full control over provider, capability, backend, target, and input. |
53
53
|`get_task_status`| Current status for a dispatched task. |
54
54
|`get_task_logs`| Paginated logs, cursor-based. |
@@ -62,7 +62,7 @@ The model side looks like this:
62
62
63
63
```ts
64
64
spawn_cloud_agent({ instruction: "Audit our S3 buckets for public read and report findings." })
0 commit comments