@ours.network/fleet 0.10.2 → 0.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/session/acp.js +5 -1
- package/package.json +1 -1
package/dist/session/acp.js
CHANGED
|
@@ -118,7 +118,11 @@ export class AcpSession {
|
|
|
118
118
|
throw new SessionControlError('offline', this.lastError ?? 'ACP session is offline');
|
|
119
119
|
if (options.interrupt)
|
|
120
120
|
await this.interrupt();
|
|
121
|
-
|
|
121
|
+
// Interrupting delivery must still use steering when supported. With no
|
|
122
|
+
// live turn, the extension starts one and acknowledges `startedNewTurn`
|
|
123
|
+
// immediately; a normal session/prompt would keep the monitor blocked until
|
|
124
|
+
// the entire wake-triggered turn terminated.
|
|
125
|
+
if (options.steer && this.steeringSupported) {
|
|
122
126
|
const promptId = randomUUID();
|
|
123
127
|
return { promptId, queuedBehind: 0, completion: this.steerPrompt(text) };
|
|
124
128
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/fleet",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
4
4
|
"description": "Harness-agnostic fleet of persistent, identity-bound AI agents. Declarative fleet.yaml, tmux or ACP sessions, supervision, and ours.network messaging.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "FSL-1.1-Apache-2.0",
|