@osolmaz/pi-workflows 0.2.0 → 0.3.0
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/README.md +71 -5
- package/dist/builtins/monitor.workflow.d.ts +71 -0
- package/dist/builtins/monitor.workflow.js +234 -0
- package/dist/builtins/monitor.workflow.js.map +1 -0
- package/dist/controllers/conditions.d.ts +6 -0
- package/dist/controllers/conditions.js +68 -0
- package/dist/controllers/conditions.js.map +1 -0
- package/dist/controllers/definition.d.ts +6 -0
- package/dist/controllers/definition.js +45 -0
- package/dist/controllers/definition.js.map +1 -0
- package/dist/controllers/effects.d.ts +14 -0
- package/dist/controllers/effects.js +104 -0
- package/dist/controllers/effects.js.map +1 -0
- package/dist/controllers/errors.d.ts +12 -0
- package/dist/controllers/errors.js +25 -0
- package/dist/controllers/errors.js.map +1 -0
- package/dist/controllers/index.d.ts +13 -0
- package/dist/controllers/index.js +13 -0
- package/dist/controllers/index.js.map +1 -0
- package/dist/controllers/json.d.ts +5 -0
- package/dist/controllers/json.js +57 -0
- package/dist/controllers/json.js.map +1 -0
- package/dist/controllers/loader.d.ts +23 -0
- package/dist/controllers/loader.js +74 -0
- package/dist/controllers/loader.js.map +1 -0
- package/dist/controllers/manager.d.ts +58 -0
- package/dist/controllers/manager.js +399 -0
- package/dist/controllers/manager.js.map +1 -0
- package/dist/controllers/results.d.ts +5 -0
- package/dist/controllers/results.js +32 -0
- package/dist/controllers/results.js.map +1 -0
- package/dist/controllers/sqlite.d.ts +212 -0
- package/dist/controllers/sqlite.js +1009 -0
- package/dist/controllers/sqlite.js.map +1 -0
- package/dist/controllers/store.d.ts +112 -0
- package/dist/controllers/store.js +32 -0
- package/dist/controllers/store.js.map +1 -0
- package/dist/controllers/types.d.ts +159 -0
- package/dist/controllers/types.js +2 -0
- package/dist/controllers/types.js.map +1 -0
- package/dist/controllers/workflow-engine-scheduler.d.ts +25 -0
- package/dist/controllers/workflow-engine-scheduler.js +93 -0
- package/dist/controllers/workflow-engine-scheduler.js.map +1 -0
- package/dist/controllers/workflows.d.ts +27 -0
- package/dist/controllers/workflows.js +109 -0
- package/dist/controllers/workflows.js.map +1 -0
- package/dist/extension/controller-host.d.ts +47 -0
- package/dist/extension/controller-host.js +110 -0
- package/dist/extension/controller-host.js.map +1 -0
- package/dist/extension/executor.js +1 -1
- package/dist/extension/executor.js.map +1 -1
- package/dist/extension/index.d.ts +7 -0
- package/dist/extension/index.js +1053 -96
- package/dist/extension/index.js.map +1 -1
- package/dist/extension/recorder.d.ts +6 -0
- package/dist/extension/recorder.js +20 -8
- package/dist/extension/recorder.js.map +1 -1
- package/dist/extension/workflow-tool.d.ts +28 -0
- package/dist/extension/workflow-tool.js +33 -0
- package/dist/extension/workflow-tool.js.map +1 -0
- package/dist/host/processes.d.ts +24 -0
- package/dist/host/processes.js +114 -0
- package/dist/host/processes.js.map +1 -0
- package/dist/host/rpc-bridge.d.ts +9 -0
- package/dist/host/rpc-bridge.js +39 -0
- package/dist/host/rpc-bridge.js.map +1 -0
- package/dist/host/rpc-executor.d.ts +38 -0
- package/dist/host/rpc-executor.js +254 -0
- package/dist/host/rpc-executor.js.map +1 -0
- package/dist/host/runner.d.ts +49 -0
- package/dist/host/runner.js +350 -0
- package/dist/host/runner.js.map +1 -0
- package/dist/viewer/cli.d.ts +7 -3
- package/dist/viewer/cli.js +150 -19
- package/dist/viewer/cli.js.map +1 -1
- package/dist/workflows/engine.d.ts +36 -0
- package/dist/workflows/engine.js +244 -14
- package/dist/workflows/engine.js.map +1 -1
- package/dist/workflows/errors.d.ts +23 -0
- package/dist/workflows/errors.js +38 -0
- package/dist/workflows/errors.js.map +1 -1
- package/dist/workflows/graph.js +0 -5
- package/dist/workflows/graph.js.map +1 -1
- package/dist/workflows/loader.d.ts +5 -3
- package/dist/workflows/loader.js +10 -1
- package/dist/workflows/loader.js.map +1 -1
- package/dist/workflows/schema.js +1 -1
- package/dist/workflows/schema.js.map +1 -1
- package/dist/workflows/store.d.ts +50 -6
- package/dist/workflows/store.js +446 -51
- package/dist/workflows/store.js.map +1 -1
- package/dist/workflows/types.d.ts +10 -0
- package/docs/CONTROLLERS.md +215 -0
- package/docs/development.md +12 -9
- package/docs/plans/2026-08-04-controller-runtime-plan.md +169 -0
- package/docs/plans/2026-08-05-always-on-workflows-plan.md +125 -0
- package/docs/plans/2026-08-10-agent-managed-monitor-workflows-plan.md +184 -0
- package/docs/run-bundles.md +66 -27
- package/docs/workflows.md +131 -11
- package/examples/controllers/pull-request.controller.ts +215 -0
- package/package.json +10 -2
- package/src/builtins/monitor.workflow.ts +278 -0
- package/src/controllers/conditions.ts +110 -0
- package/src/controllers/definition.ts +65 -0
- package/src/controllers/effects.ts +123 -0
- package/src/controllers/errors.ts +27 -0
- package/src/controllers/index.ts +90 -0
- package/src/controllers/json.ts +62 -0
- package/src/controllers/loader.ts +104 -0
- package/src/controllers/manager.ts +533 -0
- package/src/controllers/results.ts +46 -0
- package/src/controllers/sqlite.ts +1427 -0
- package/src/controllers/store.ts +160 -0
- package/src/controllers/types.ts +183 -0
- package/src/controllers/workflow-engine-scheduler.ts +145 -0
- package/src/controllers/workflows.ts +152 -0
- package/src/extension/controller-host.ts +163 -0
- package/src/extension/executor.ts +1 -1
- package/src/extension/index.ts +1243 -117
- package/src/extension/recorder.ts +65 -36
- package/src/extension/workflow-tool.ts +59 -0
- package/src/host/processes.ts +119 -0
- package/src/host/rpc-bridge.ts +44 -0
- package/src/host/rpc-executor.ts +299 -0
- package/src/host/runner.ts +406 -0
- package/src/viewer/cli.ts +167 -21
- package/src/workflows/engine.ts +327 -13
- package/src/workflows/errors.ts +45 -0
- package/src/workflows/graph.ts +0 -5
- package/src/workflows/loader.ts +13 -3
- package/src/workflows/schema.ts +1 -1
- package/src/workflows/store.ts +555 -46
- package/src/workflows/types.ts +10 -0
package/dist/extension/index.js
CHANGED
|
@@ -1,16 +1,25 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { randomUUID } from "node:crypto";
|
|
2
|
+
import { projectControllerStorePath, SqliteControllerStore, } from "../controllers/index.js";
|
|
2
3
|
import { WorkflowEngine } from "../workflows/engine.js";
|
|
3
|
-
import { errorMessage } from "../workflows/errors.js";
|
|
4
|
-
import { discoverWorkflows, loadWorkflowFile, resolveWorkflowRef } from "../workflows/loader.js";
|
|
5
|
-
import { WorkflowRunStore, createDefinitionSnapshot } from "../workflows/store.js";
|
|
4
|
+
import { ClaimLostError, errorMessage, isClaimLostError } from "../workflows/errors.js";
|
|
5
|
+
import { discoverWorkflows, hashWorkflowSource, loadWorkflowFile, resolveWorkflowRef, } from "../workflows/loader.js";
|
|
6
|
+
import { createRunId, listRunBundles, readLastTraceEvent, readRunBundle, WorkflowRunStore, createDefinitionSnapshot, } from "../workflows/store.js";
|
|
7
|
+
import { PiControllerHost, parseControllerArgs, } from "./controller-host.js";
|
|
6
8
|
import { ConversationStepExecutor } from "./executor.js";
|
|
7
9
|
import { SessionRecorder } from "./recorder.js";
|
|
8
10
|
import { buildWidgetView } from "./widget.js";
|
|
11
|
+
import { WorkflowToolParameters } from "./workflow-tool.js";
|
|
12
|
+
const RUN_CLAIM_LEASE_MS = 30_000;
|
|
13
|
+
const RUN_CLAIM_RENEW_MS = 10_000;
|
|
14
|
+
const RUN_SYNC_POLL_MS = 3_000;
|
|
9
15
|
const WIDGET_KEY = "pi-workflows";
|
|
10
16
|
const PRESENTATION_MESSAGE_TYPE = "pi-workflows-presentation";
|
|
11
17
|
const FINAL_WIDGET_TTL_MS = 60_000;
|
|
12
18
|
const WIDGET_SCROLL_STEP = 3;
|
|
13
19
|
const MAX_PRESENTATION_RESULT_CHARS = 50_000;
|
|
20
|
+
const MAX_STATUS_ERROR_CHARS = 4_000;
|
|
21
|
+
const MAX_WORKFLOW_LIST_ITEMS = 50;
|
|
22
|
+
const MAX_WORKFLOW_LIST_NAME_CHARS = 3_500;
|
|
14
23
|
const PRESENTATION_TIMEOUT_MS = 30_000;
|
|
15
24
|
class PresentationSupersededError extends Error {
|
|
16
25
|
}
|
|
@@ -25,6 +34,49 @@ export function parseWorkflowArgs(args) {
|
|
|
25
34
|
if (trimmed === "cancel" || trimmed === "pause" || trimmed === "resume") {
|
|
26
35
|
return { kind: trimmed };
|
|
27
36
|
}
|
|
37
|
+
if (trimmed === "status") {
|
|
38
|
+
return { kind: "status" };
|
|
39
|
+
}
|
|
40
|
+
if (trimmed.startsWith("status ")) {
|
|
41
|
+
const runId = trimmed.slice("status".length).trim();
|
|
42
|
+
if (!/^[A-Za-z0-9][A-Za-z0-9._-]{0,199}$/.test(runId)) {
|
|
43
|
+
throw new Error("status requires one valid run id");
|
|
44
|
+
}
|
|
45
|
+
return { kind: "status", runId };
|
|
46
|
+
}
|
|
47
|
+
if (trimmed === "answer" || trimmed.startsWith("answer ")) {
|
|
48
|
+
let rest = trimmed === "answer" ? "" : trimmed.slice("answer".length).trim();
|
|
49
|
+
if (rest.length === 0) {
|
|
50
|
+
throw new Error('answer requires a JSON value or text, e.g. /workflow answer {"approved":true}');
|
|
51
|
+
}
|
|
52
|
+
// `/workflow answer <run-id> <json>` targets a specific waiting run,
|
|
53
|
+
// for example after a restart or for host-driven runs.
|
|
54
|
+
let runId;
|
|
55
|
+
const firstSpace = rest.search(/\s/);
|
|
56
|
+
if (firstSpace > 0) {
|
|
57
|
+
const candidate = rest.slice(0, firstSpace);
|
|
58
|
+
const remainder = rest.slice(firstSpace).trim();
|
|
59
|
+
if (/^[A-Za-z0-9][A-Za-z0-9._-]{0,199}$/.test(candidate) &&
|
|
60
|
+
remainder.length > 0 &&
|
|
61
|
+
(remainder.startsWith("{") || remainder.startsWith("["))) {
|
|
62
|
+
runId = candidate;
|
|
63
|
+
rest = remainder;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
try {
|
|
67
|
+
return {
|
|
68
|
+
kind: "answer",
|
|
69
|
+
input: JSON.parse(rest),
|
|
70
|
+
...(runId !== undefined ? { runId } : {}),
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
catch {
|
|
74
|
+
if (runId !== undefined) {
|
|
75
|
+
throw new Error("answer with a run id requires a JSON value");
|
|
76
|
+
}
|
|
77
|
+
return { kind: "answer", input: { answer: rest } };
|
|
78
|
+
}
|
|
79
|
+
}
|
|
28
80
|
const spaceIndex = trimmed.search(/\s/);
|
|
29
81
|
const ref = spaceIndex === -1 ? trimmed : trimmed.slice(0, spaceIndex);
|
|
30
82
|
const rest = spaceIndex === -1 ? "" : trimmed.slice(spaceIndex).trim();
|
|
@@ -40,8 +92,146 @@ export function parseWorkflowArgs(args) {
|
|
|
40
92
|
}
|
|
41
93
|
return { kind: "run", ref, input: rest.length > 0 ? { task: rest } : {} };
|
|
42
94
|
}
|
|
95
|
+
function workflowStateSummary(state) {
|
|
96
|
+
const error = state.error === undefined
|
|
97
|
+
? undefined
|
|
98
|
+
: state.error.length <= MAX_STATUS_ERROR_CHARS
|
|
99
|
+
? state.error
|
|
100
|
+
: `${state.error.slice(0, MAX_STATUS_ERROR_CHARS)}\n… [error truncated]`;
|
|
101
|
+
return {
|
|
102
|
+
active: state.status === "running",
|
|
103
|
+
runId: state.runId,
|
|
104
|
+
workflowName: state.workflowName,
|
|
105
|
+
status: state.status,
|
|
106
|
+
steps: state.steps.length,
|
|
107
|
+
...(state.currentNode !== undefined ? { currentNode: state.currentNode } : {}),
|
|
108
|
+
...(state.waitingOn !== undefined ? { waitingOn: state.waitingOn } : {}),
|
|
109
|
+
...(state.startedAt !== undefined ? { startedAt: state.startedAt } : {}),
|
|
110
|
+
...(state.finishedAt !== undefined ? { finishedAt: state.finishedAt } : {}),
|
|
111
|
+
...(error !== undefined ? { error } : {}),
|
|
112
|
+
};
|
|
113
|
+
}
|
|
43
114
|
export default function piWorkflows(pi) {
|
|
115
|
+
// One runner identity per session; it names this session in run claims.
|
|
116
|
+
const runnerId = randomUUID();
|
|
117
|
+
let runQueueStore = null;
|
|
118
|
+
const ensureRunQueueStore = (cwd) => {
|
|
119
|
+
runQueueStore ??= new SqliteControllerStore(projectControllerStorePath(cwd));
|
|
120
|
+
return runQueueStore;
|
|
121
|
+
};
|
|
122
|
+
// Session sync: a per-session watermark over the run event feed keeps this
|
|
123
|
+
// session's context current with runs other runners drove.
|
|
124
|
+
// The sync watermark is project-scoped: a reopened session catches up
|
|
125
|
+
// where the last one stopped, and two open sessions share one pointer.
|
|
126
|
+
const SYNC_WATERMARK_KEY = "project";
|
|
127
|
+
let syncArmed = false;
|
|
128
|
+
let runSyncTimer = null;
|
|
129
|
+
const recordRunEvent = (event) => {
|
|
130
|
+
try {
|
|
131
|
+
runQueueStore?.recordRunEvent({ ...event, runnerId });
|
|
132
|
+
}
|
|
133
|
+
catch {
|
|
134
|
+
// The event feed is best-effort; never fail a run for it.
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
const describeRunEvent = (event) => {
|
|
138
|
+
const label = `${event.workflowRef} run ${event.runId}`;
|
|
139
|
+
switch (event.type) {
|
|
140
|
+
case "waiting": {
|
|
141
|
+
const waitingOn = typeof event.payload.waitingOn === "string" ? event.payload.waitingOn : "a checkpoint";
|
|
142
|
+
return `${label} waits at checkpoint ${waitingOn} — answer with /workflow answer`;
|
|
143
|
+
}
|
|
144
|
+
case "parked":
|
|
145
|
+
return `${label} was parked and will resume when a runner is available`;
|
|
146
|
+
case "failed": {
|
|
147
|
+
const detail = typeof event.payload.error === "string" ? `: ${event.payload.error}` : "";
|
|
148
|
+
return `${label} failed${detail}`;
|
|
149
|
+
}
|
|
150
|
+
default:
|
|
151
|
+
return `${label} ${event.type}`;
|
|
152
|
+
}
|
|
153
|
+
};
|
|
154
|
+
const runSyncPass = async (ctx) => {
|
|
155
|
+
if (runQueueStore === null || !syncArmed) {
|
|
156
|
+
return;
|
|
157
|
+
}
|
|
158
|
+
try {
|
|
159
|
+
const watermark = runQueueStore.getSessionWatermark(SYNC_WATERMARK_KEY);
|
|
160
|
+
if (watermark === 0) {
|
|
161
|
+
// First sync ever for this project: never replay the feed (stale
|
|
162
|
+
// "waits at checkpoint" lines included). Fast-forward, then catch
|
|
163
|
+
// up from current state instead — what is parked, resuming, or
|
|
164
|
+
// waiting for an answer right now.
|
|
165
|
+
const latest = runQueueStore.latestRunEventSeq();
|
|
166
|
+
if (latest > 0) {
|
|
167
|
+
runQueueStore.setSessionWatermark(SYNC_WATERMARK_KEY, latest);
|
|
168
|
+
}
|
|
169
|
+
await sendStateSnapshot(ctx);
|
|
170
|
+
return;
|
|
171
|
+
}
|
|
172
|
+
const events = runQueueStore.listRunEventsAfter(watermark, { limit: 20 });
|
|
173
|
+
if (events.length === 0) {
|
|
174
|
+
return;
|
|
175
|
+
}
|
|
176
|
+
// Persist the watermark first. A crash after this point skips the
|
|
177
|
+
// message, but snapshots recompute from the store, so no information
|
|
178
|
+
// stays lost; a duplicated state line is the worst outcome.
|
|
179
|
+
runQueueStore.setSessionWatermark(SYNC_WATERMARK_KEY, events[events.length - 1]?.seq ?? 0);
|
|
180
|
+
const noteworthy = events.filter((event) => event.runnerId !== runnerId &&
|
|
181
|
+
["completed", "failed", "timed_out", "cancelled", "waiting", "parked"].includes(event.type));
|
|
182
|
+
if (noteworthy.length === 0) {
|
|
183
|
+
return;
|
|
184
|
+
}
|
|
185
|
+
const content = `Workflow run update:\n${noteworthy.map(describeRunEvent).join("\n")}`;
|
|
186
|
+
pi.sendMessage({ customType: "pi-workflows-run-sync", content, display: false }, { deliverAs: "steer", triggerTurn: false });
|
|
187
|
+
notify(ctx, noteworthy.map(describeRunEvent).join("; "));
|
|
188
|
+
}
|
|
189
|
+
catch {
|
|
190
|
+
// Sync is observational.
|
|
191
|
+
}
|
|
192
|
+
};
|
|
193
|
+
// The first-use catch-up: a snapshot of runs that need attention now.
|
|
194
|
+
const sendStateSnapshot = async (ctx) => {
|
|
195
|
+
if (runQueueStore === null) {
|
|
196
|
+
return;
|
|
197
|
+
}
|
|
198
|
+
const lines = [];
|
|
199
|
+
const rows = runQueueStore.listWorkflowRuns();
|
|
200
|
+
for (const row of rows) {
|
|
201
|
+
if (row.status === "parked") {
|
|
202
|
+
lines.push(`${row.workflowRef} run ${row.runId} is parked and will resume`);
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
const known = new Set(rows.map((row) => row.runId));
|
|
206
|
+
const continued = new Set(rows.map((row) => row.parentRunId).filter((parent) => parent !== null));
|
|
207
|
+
const bundles = await listRunBundles(new WorkflowRunStore().outputRoot);
|
|
208
|
+
for (const bundle of bundles) {
|
|
209
|
+
if (bundle.state.status === "waiting" &&
|
|
210
|
+
known.has(bundle.state.runId) &&
|
|
211
|
+
!continued.has(bundle.state.runId)) {
|
|
212
|
+
lines.push(`${bundle.state.workflowName} run ${bundle.state.runId} waits at checkpoint ${bundle.state.waitingOn ?? "?"} — answer with /workflow answer`);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
if (lines.length === 0) {
|
|
216
|
+
return;
|
|
217
|
+
}
|
|
218
|
+
const content = `Workflow runs needing attention:\n${lines.join("\n")}`;
|
|
219
|
+
pi.sendMessage({ customType: "pi-workflows-run-sync", content, display: false }, { deliverAs: "steer", triggerTurn: false });
|
|
220
|
+
notify(ctx, lines.join("; "));
|
|
221
|
+
};
|
|
222
|
+
const startRunSync = (ctx) => {
|
|
223
|
+
if (runSyncTimer !== null) {
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
226
|
+
ensureRunQueueStore(ctx.cwd);
|
|
227
|
+
void runSyncPass(ctx);
|
|
228
|
+
runSyncTimer = setInterval(() => void runSyncPass(ctx), RUN_SYNC_POLL_MS);
|
|
229
|
+
runSyncTimer.unref?.();
|
|
230
|
+
};
|
|
44
231
|
let activeRun = null;
|
|
232
|
+
let pendingToolLaunch = null;
|
|
233
|
+
// The interactive run currently parked at a checkpoint, if any.
|
|
234
|
+
let lastWaitingRunId = null;
|
|
45
235
|
let widgetTimer = null;
|
|
46
236
|
let widgetTicker = null;
|
|
47
237
|
// Manual widget scroll: null follows the active node; a number is the
|
|
@@ -55,6 +245,8 @@ export default function piWorkflows(pi) {
|
|
|
55
245
|
let runGeneration = 0;
|
|
56
246
|
let presentationAbort = null;
|
|
57
247
|
let presentationPending = null;
|
|
248
|
+
let controllerHost;
|
|
249
|
+
let controllerContext = null;
|
|
58
250
|
// UI updates are best-effort: a captured ctx becomes stale after session
|
|
59
251
|
// replacement or shutdown, and pi throws on any access (even `ctx.hasUI`).
|
|
60
252
|
// A workflow finishing right as the session goes away must not crash pi.
|
|
@@ -211,10 +403,58 @@ export default function piWorkflows(pi) {
|
|
|
211
403
|
}
|
|
212
404
|
}
|
|
213
405
|
};
|
|
214
|
-
|
|
406
|
+
// Release the queue claim exactly once. "done" marks the queue row
|
|
407
|
+
// terminal, "park" leaves it claimable for another runner, and "lost"
|
|
408
|
+
// leaves it for the new claim holder.
|
|
409
|
+
const releaseClaim = (run, outcome) => {
|
|
410
|
+
if (run.renewTimer !== undefined) {
|
|
411
|
+
clearInterval(run.renewTimer);
|
|
412
|
+
run.renewTimer = undefined;
|
|
413
|
+
}
|
|
414
|
+
if (run.claimToken === undefined || runQueueStore === null || outcome === "lost") {
|
|
415
|
+
return;
|
|
416
|
+
}
|
|
417
|
+
try {
|
|
418
|
+
if (outcome === "park") {
|
|
419
|
+
runQueueStore.parkWorkflowRun({ runId: run.runId, claimToken: run.claimToken });
|
|
420
|
+
}
|
|
421
|
+
else {
|
|
422
|
+
runQueueStore.completeWorkflowRun({ runId: run.runId, claimToken: run.claimToken });
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
catch {
|
|
426
|
+
// Queue bookkeeping is best-effort next to the durable bundle.
|
|
427
|
+
}
|
|
428
|
+
finally {
|
|
429
|
+
run.claimToken = undefined;
|
|
430
|
+
}
|
|
431
|
+
};
|
|
432
|
+
const finishRun = async (ctx, run, result) => {
|
|
215
433
|
if (activeRun === run) {
|
|
216
434
|
activeRun = null;
|
|
217
435
|
}
|
|
436
|
+
if (result.state.status === "running") {
|
|
437
|
+
// The run was parked for another runner; its bundle stays resumable
|
|
438
|
+
// and its queue row becomes claimable. The recorder drains first: its
|
|
439
|
+
// finalization writes share the fenced store, so the claim must stay
|
|
440
|
+
// valid until capture is complete. Nothing else to present.
|
|
441
|
+
await run.recorder?.stop().catch(() => undefined);
|
|
442
|
+
releaseClaim(run, "park");
|
|
443
|
+
recordRunEvent({ runId: run.runId, workflowRef: run.workflowName, type: "parked" });
|
|
444
|
+
stopWidgetTicker();
|
|
445
|
+
clearWidget(ctx);
|
|
446
|
+
return;
|
|
447
|
+
}
|
|
448
|
+
releaseClaim(run, "done");
|
|
449
|
+
recordRunEvent({
|
|
450
|
+
runId: run.runId,
|
|
451
|
+
workflowRef: run.workflowName,
|
|
452
|
+
type: result.state.status,
|
|
453
|
+
payload: {
|
|
454
|
+
...(result.state.error !== undefined ? { error: result.state.error } : {}),
|
|
455
|
+
...(result.state.waitingOn !== undefined ? { waitingOn: result.state.waitingOn } : {}),
|
|
456
|
+
},
|
|
457
|
+
});
|
|
218
458
|
// Normally already stopped via onRunFinishing; this covers observers of
|
|
219
459
|
// runs that ended without reaching that hook.
|
|
220
460
|
void run.recorder?.stop();
|
|
@@ -228,26 +468,107 @@ export default function piWorkflows(pi) {
|
|
|
228
468
|
widgetTimer = setTimeout(() => clearWidget(ctx), FINAL_WIDGET_TTL_MS);
|
|
229
469
|
widgetTimer.unref?.();
|
|
230
470
|
}
|
|
471
|
+
if (state.status === "waiting" && run.childKey === undefined) {
|
|
472
|
+
lastWaitingRunId = run.runId;
|
|
473
|
+
}
|
|
231
474
|
const summary = state.status === "waiting" && state.waitingOn
|
|
232
|
-
? `Workflow ${state.workflowName} parked at checkpoint ${state.waitingOn} —
|
|
475
|
+
? `Workflow ${state.workflowName} parked at checkpoint ${state.waitingOn} — answer with /workflow answer <json> (run ${state.runId})`
|
|
233
476
|
: `Workflow ${state.workflowName} ${state.status} (run ${state.runId})`;
|
|
234
477
|
notify(ctx, summary, state.status === "completed" ? "info" : "warning");
|
|
478
|
+
try {
|
|
479
|
+
const childResult = run.childKey !== undefined &&
|
|
480
|
+
(sessionClosed || run.interruptionRequested === true) &&
|
|
481
|
+
state.status === "cancelled"
|
|
482
|
+
? {
|
|
483
|
+
state: "interrupted",
|
|
484
|
+
runId: state.runId,
|
|
485
|
+
...(state.error !== undefined ? { error: state.error } : {}),
|
|
486
|
+
}
|
|
487
|
+
: workflowSchedulerResult(state);
|
|
488
|
+
run.onFinish?.(childResult);
|
|
489
|
+
}
|
|
490
|
+
catch (error) {
|
|
491
|
+
notify(ctx, `Could not record child workflow completion: ${errorMessage(error)}`, "warning");
|
|
492
|
+
}
|
|
235
493
|
void presentRun(ctx, run, state);
|
|
236
494
|
};
|
|
237
|
-
const startRun = async (ctx, ref, input) => {
|
|
495
|
+
const startRun = async (ctx, ref, input, options = {}) => {
|
|
496
|
+
if (options.signal?.aborted) {
|
|
497
|
+
throw options.signal.reason ?? new Error("Workflow startup aborted");
|
|
498
|
+
}
|
|
238
499
|
if (activeRun) {
|
|
239
|
-
|
|
240
|
-
|
|
500
|
+
if (!options.quiet) {
|
|
501
|
+
notify(ctx, `A workflow is already running: ${activeRun.workflowName}. Use /workflow cancel first.`, "error");
|
|
502
|
+
}
|
|
503
|
+
return undefined;
|
|
241
504
|
}
|
|
242
505
|
if (presentationPending !== null) {
|
|
243
|
-
|
|
244
|
-
|
|
506
|
+
if (!options.quiet) {
|
|
507
|
+
notify(ctx, "The previous workflow result is still being presented. Wait for it to finish.");
|
|
508
|
+
}
|
|
509
|
+
return undefined;
|
|
245
510
|
}
|
|
246
511
|
supersedePresentation();
|
|
247
512
|
const generation = runGeneration;
|
|
248
513
|
const resolved = await resolveWorkflowRef(ref, { cwd: ctx.cwd });
|
|
249
514
|
const workflow = await loadWorkflowFile(resolved.path);
|
|
515
|
+
if (options.signal?.aborted) {
|
|
516
|
+
throw options.signal.reason ?? new Error("Workflow startup aborted");
|
|
517
|
+
}
|
|
250
518
|
const snapshot = createDefinitionSnapshot(workflow);
|
|
519
|
+
const workflowHash = await hashWorkflowSource(resolved.path);
|
|
520
|
+
const runId = options.runId ?? createRunId(workflow.name);
|
|
521
|
+
// Continuations validate the parent before touching the queue: a
|
|
522
|
+
// refused continuation (edited source, missing parent) must not consume
|
|
523
|
+
// the parent's one-continuation slot.
|
|
524
|
+
if (options.parentRunId !== undefined) {
|
|
525
|
+
const parent = await readRunBundle(new WorkflowRunStore().runDirFor(options.parentRunId));
|
|
526
|
+
if (parent === null || parent.state.status !== "waiting") {
|
|
527
|
+
throw new Error(`Workflow run ${options.parentRunId} is not waiting at a checkpoint`);
|
|
528
|
+
}
|
|
529
|
+
if (parent.state.workflowHash !== undefined && parent.state.workflowHash !== workflowHash) {
|
|
530
|
+
throw new Error(`Workflow source changed since run ${options.parentRunId} started; revert the edit to answer its checkpoint`);
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
// Interactive runs are queued and claimed atomically, so this session
|
|
534
|
+
// owns the run from birth (origin affinity). Controller child runs keep
|
|
535
|
+
// their own scheduling and stay out of the run queue. A resume caller
|
|
536
|
+
// arrives with its claim already taken.
|
|
537
|
+
let claimToken = options.claimToken;
|
|
538
|
+
let queueStore = null;
|
|
539
|
+
if (options.childKey === undefined) {
|
|
540
|
+
queueStore = ensureRunQueueStore(ctx.cwd);
|
|
541
|
+
if (claimToken === undefined) {
|
|
542
|
+
const token = randomUUID();
|
|
543
|
+
queueStore.enqueueWorkflowRun({
|
|
544
|
+
runId,
|
|
545
|
+
workflowRef: ref,
|
|
546
|
+
workflowPath: resolved.path,
|
|
547
|
+
input,
|
|
548
|
+
runnerId,
|
|
549
|
+
claimToken: token,
|
|
550
|
+
leaseMs: RUN_CLAIM_LEASE_MS,
|
|
551
|
+
...(options.parentRunId !== undefined ? { parentRunId: options.parentRunId } : {}),
|
|
552
|
+
});
|
|
553
|
+
claimToken = token;
|
|
554
|
+
recordRunEvent({
|
|
555
|
+
runId,
|
|
556
|
+
workflowRef: ref,
|
|
557
|
+
type: "queued",
|
|
558
|
+
payload: options.parentRunId !== undefined ? { parentRunId: options.parentRunId } : {},
|
|
559
|
+
});
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
let fence;
|
|
563
|
+
if (queueStore !== null && claimToken !== undefined) {
|
|
564
|
+
const claimedStore = queueStore;
|
|
565
|
+
const token = claimToken;
|
|
566
|
+
fence = () => {
|
|
567
|
+
if (!claimedStore.verifyWorkflowRunClaim({ runId, claimToken: token })) {
|
|
568
|
+
throw new ClaimLostError(runId);
|
|
569
|
+
}
|
|
570
|
+
};
|
|
571
|
+
}
|
|
251
572
|
const executor = new ConversationStepExecutor({
|
|
252
573
|
sendPrompt: ({ prompt, streaming }) => {
|
|
253
574
|
pi.sendUserMessage(prompt, streaming ? { deliverAs: "steer" } : undefined);
|
|
@@ -259,8 +580,9 @@ export default function piWorkflows(pi) {
|
|
|
259
580
|
},
|
|
260
581
|
});
|
|
261
582
|
// The store is shared between the engine and the session recorder so the
|
|
262
|
-
// trace sequence stays single-writer (see docs/run-bundles.md).
|
|
263
|
-
|
|
583
|
+
// trace sequence stays single-writer (see docs/run-bundles.md). Queued
|
|
584
|
+
// runs are fenced: every write proves the claim is still ours first.
|
|
585
|
+
const store = new WorkflowRunStore(undefined, fence === undefined ? {} : { fenceProvider: () => fence });
|
|
264
586
|
const engine = new WorkflowEngine({
|
|
265
587
|
executor,
|
|
266
588
|
store,
|
|
@@ -284,59 +606,531 @@ export default function piWorkflows(pi) {
|
|
|
284
606
|
await run.recorder?.finish();
|
|
285
607
|
},
|
|
286
608
|
onEvent: (_event, state) => {
|
|
287
|
-
if (run.runId === null) {
|
|
288
|
-
run.runId = state.runId;
|
|
289
|
-
}
|
|
290
609
|
run.lastState = state;
|
|
291
610
|
updateWidget(ctx, state, snapshot);
|
|
292
611
|
},
|
|
293
612
|
});
|
|
294
613
|
const run = {
|
|
295
|
-
runId
|
|
614
|
+
runId,
|
|
296
615
|
workflowName: workflow.name,
|
|
297
616
|
engine,
|
|
298
617
|
executor,
|
|
299
618
|
recorder: null,
|
|
300
619
|
snapshot,
|
|
301
|
-
presentationPrompt: workflow.presentationPrompt,
|
|
620
|
+
presentationPrompt: options.presentation === false ? undefined : workflow.presentationPrompt,
|
|
302
621
|
generation,
|
|
303
622
|
lastState: null,
|
|
623
|
+
...(options.childKey !== undefined ? { childKey: options.childKey } : {}),
|
|
624
|
+
...(options.onFinish !== undefined ? { onFinish: options.onFinish } : {}),
|
|
625
|
+
...(claimToken !== undefined ? { claimToken } : {}),
|
|
626
|
+
...(options.resume === true ? { resume: true } : {}),
|
|
627
|
+
...(options.parentRunId !== undefined ? { parentRunId: options.parentRunId } : {}),
|
|
304
628
|
};
|
|
305
629
|
activeRun = run;
|
|
630
|
+
if (queueStore !== null && claimToken !== undefined) {
|
|
631
|
+
const store = queueStore;
|
|
632
|
+
const token = claimToken;
|
|
633
|
+
// Renew the claim while the run executes. If renewal says the claim is
|
|
634
|
+
// gone, cancel so the fence trips on the next write instead of letting
|
|
635
|
+
// this runner interleave with the new claim holder.
|
|
636
|
+
run.renewTimer = setInterval(() => {
|
|
637
|
+
try {
|
|
638
|
+
if (!store.renewWorkflowRunClaim({ runId, claimToken: token, leaseMs: RUN_CLAIM_LEASE_MS })) {
|
|
639
|
+
run.engine.cancel();
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
catch {
|
|
643
|
+
// Transient store errors leave fencing to decide ownership.
|
|
644
|
+
}
|
|
645
|
+
}, RUN_CLAIM_RENEW_MS);
|
|
646
|
+
run.renewTimer.unref?.();
|
|
647
|
+
}
|
|
306
648
|
clearWidgetTimer();
|
|
307
649
|
startWidgetTicker(ctx, run);
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
650
|
+
if (!options.quiet) {
|
|
651
|
+
notify(ctx, `Workflow ${workflow.name} started. Follow it live with: pi-workflows view`);
|
|
652
|
+
}
|
|
653
|
+
run.completion = (options.resume === true
|
|
654
|
+
? engine.resumeRun(workflow, runId, { workflowHash })
|
|
655
|
+
: options.parentRunId === undefined
|
|
656
|
+
? engine.run(workflow, input, { workflowPath: resolved.path, workflowHash, runId })
|
|
657
|
+
: engine.continueRun(workflow, options.parentRunId, input, {
|
|
658
|
+
workflowPath: resolved.path,
|
|
659
|
+
workflowHash,
|
|
660
|
+
runId,
|
|
661
|
+
}))
|
|
311
662
|
.then((result) => finishRun(ctx, run, result))
|
|
312
|
-
.catch((error) => {
|
|
663
|
+
.catch(async (error) => {
|
|
313
664
|
if (activeRun === run) {
|
|
314
665
|
activeRun = null;
|
|
315
666
|
}
|
|
667
|
+
const message = errorMessage(error);
|
|
668
|
+
// A resume that fails before executing (for example edited workflow
|
|
669
|
+
// source) must not strand the run: park it so it stays claimable
|
|
670
|
+
// once the cause is fixed, and say so in the feed.
|
|
671
|
+
let resumeFailed = run.resume === true && !isClaimLostError(error);
|
|
672
|
+
let terminalStatus;
|
|
673
|
+
// Re-parking only makes sense while the bundle is still resumable.
|
|
674
|
+
// A terminal or waiting bundle closes the queue row instead, or
|
|
675
|
+
// every session start would retry it forever — and the feed reports
|
|
676
|
+
// the bundle's real state, not a bogus failure.
|
|
677
|
+
if (resumeFailed) {
|
|
678
|
+
try {
|
|
679
|
+
const bundle = await readRunBundle(new WorkflowRunStore().runDirFor(runId));
|
|
680
|
+
if (bundle === null || bundle.state.status !== "running") {
|
|
681
|
+
resumeFailed = false;
|
|
682
|
+
terminalStatus = bundle?.state.status;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
catch {
|
|
686
|
+
// Unreadable bundles close the row too.
|
|
687
|
+
resumeFailed = false;
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
// A continuation that failed before its bundle exists frees the
|
|
691
|
+
// parent's continuation slot instead of consuming it forever.
|
|
692
|
+
let continuationSlotFreed = false;
|
|
693
|
+
if (run.parentRunId !== undefined &&
|
|
694
|
+
run.claimToken !== undefined &&
|
|
695
|
+
!isClaimLostError(error)) {
|
|
696
|
+
try {
|
|
697
|
+
const bundle = await readRunBundle(new WorkflowRunStore().runDirFor(runId));
|
|
698
|
+
if (bundle === null) {
|
|
699
|
+
continuationSlotFreed =
|
|
700
|
+
runQueueStore?.deleteWorkflowRun({ runId, claimToken: run.claimToken }) === true;
|
|
701
|
+
if (continuationSlotFreed) {
|
|
702
|
+
run.claimToken = undefined;
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
catch {
|
|
707
|
+
// The row may remain; a later cleanup pass can remove it.
|
|
708
|
+
}
|
|
709
|
+
}
|
|
710
|
+
releaseClaim(run, isClaimLostError(error) || continuationSlotFreed
|
|
711
|
+
? "lost"
|
|
712
|
+
: resumeFailed
|
|
713
|
+
? "park"
|
|
714
|
+
: "done");
|
|
316
715
|
void run.recorder?.stop();
|
|
317
716
|
stopWidgetTicker();
|
|
318
717
|
clearWidget(ctx);
|
|
319
|
-
|
|
718
|
+
if (isClaimLostError(error)) {
|
|
719
|
+
notify(ctx, `Workflow ${workflow.name} continues under another runner (run ${runId}).`);
|
|
720
|
+
return;
|
|
721
|
+
}
|
|
722
|
+
if (resumeFailed) {
|
|
723
|
+
recordRunEvent({ runId, workflowRef: workflow.name, type: "parked", payload: {} });
|
|
724
|
+
notify(ctx, `Could not resume workflow ${workflow.name}: ${message}. The run is parked again.`, "warning");
|
|
725
|
+
return;
|
|
726
|
+
}
|
|
727
|
+
if (terminalStatus !== undefined) {
|
|
728
|
+
recordRunEvent({ runId, workflowRef: workflow.name, type: terminalStatus, payload: {} });
|
|
729
|
+
notify(ctx, `Workflow ${workflow.name} ${terminalStatus} (run ${runId}).`);
|
|
730
|
+
return;
|
|
731
|
+
}
|
|
732
|
+
recordRunEvent({
|
|
733
|
+
runId,
|
|
734
|
+
workflowRef: workflow.name,
|
|
735
|
+
type: "failed",
|
|
736
|
+
payload: { error: message },
|
|
737
|
+
});
|
|
738
|
+
try {
|
|
739
|
+
run.onFinish?.({ state: "failed", runId, error: message });
|
|
740
|
+
}
|
|
741
|
+
catch {
|
|
742
|
+
// The original workflow failure remains the primary error.
|
|
743
|
+
}
|
|
744
|
+
notify(ctx, `Workflow ${workflow.name} crashed: ${message}`, "error");
|
|
320
745
|
});
|
|
746
|
+
return runId;
|
|
321
747
|
};
|
|
322
|
-
|
|
748
|
+
// Reclaim and resume a parked run when this session opens without an
|
|
749
|
+
// active run. The claim comes first; the engine resumes at the stopped
|
|
750
|
+
// node only after the queue proves ownership.
|
|
751
|
+
const resumeParkedRun = async (ctx) => {
|
|
752
|
+
if (activeRun !== null) {
|
|
753
|
+
return;
|
|
754
|
+
}
|
|
755
|
+
const queueStore = ensureRunQueueStore(ctx.cwd);
|
|
756
|
+
const claimToken = randomUUID();
|
|
757
|
+
const claimed = queueStore.claimNextWorkflowRun({
|
|
758
|
+
runnerId,
|
|
759
|
+
claimToken,
|
|
760
|
+
leaseMs: RUN_CLAIM_LEASE_MS,
|
|
761
|
+
});
|
|
762
|
+
if (claimed === undefined) {
|
|
763
|
+
return;
|
|
764
|
+
}
|
|
765
|
+
let started;
|
|
766
|
+
try {
|
|
767
|
+
started = await startRun(ctx, claimed.workflowPath, claimed.input, {
|
|
768
|
+
resume: true,
|
|
769
|
+
runId: claimed.runId,
|
|
770
|
+
claimToken,
|
|
771
|
+
});
|
|
772
|
+
}
|
|
773
|
+
catch (error) {
|
|
774
|
+
queueStore.parkWorkflowRun({ runId: claimed.runId, claimToken });
|
|
775
|
+
throw error;
|
|
776
|
+
}
|
|
777
|
+
if (started !== undefined) {
|
|
778
|
+
notify(ctx, `Resumed workflow run ${claimed.runId} (${claimed.workflowRef}).`);
|
|
779
|
+
}
|
|
780
|
+
else {
|
|
781
|
+
queueStore.parkWorkflowRun({ runId: claimed.runId, claimToken });
|
|
782
|
+
}
|
|
783
|
+
};
|
|
784
|
+
const startChild = async (request, signal, onComplete) => {
|
|
785
|
+
if (signal.aborted) {
|
|
786
|
+
throw signal.reason ?? new Error("Child workflow scheduling aborted");
|
|
787
|
+
}
|
|
788
|
+
const childKey = `${request.requestId}:${request.attempt}`;
|
|
789
|
+
if (activeRun !== null) {
|
|
790
|
+
if (activeRun.childKey !== childKey) {
|
|
791
|
+
return { state: "pending" };
|
|
792
|
+
}
|
|
793
|
+
return activeRun.lastState === null
|
|
794
|
+
? { state: "running", runId: activeRun.runId }
|
|
795
|
+
: workflowSchedulerResult(activeRun.lastState);
|
|
796
|
+
}
|
|
797
|
+
const store = new WorkflowRunStore();
|
|
798
|
+
const bundle = await readRunBundle(store.runDirFor(request.runId));
|
|
799
|
+
if (bundle !== null) {
|
|
800
|
+
const recovered = bundle.state.status === "running" ? await store.markRunInterrupted(request.runId) : bundle;
|
|
801
|
+
if (recovered !== null) {
|
|
802
|
+
const lastTraceEvent = await readLastTraceEvent(recovered.runDir, recovered.manifest.paths.trace);
|
|
803
|
+
return workflowSchedulerResult(recovered.state, lastTraceEvent?.type === "run_interrupted");
|
|
804
|
+
}
|
|
805
|
+
return { state: "pending" };
|
|
806
|
+
}
|
|
807
|
+
if (controllerContext === null) {
|
|
808
|
+
return { state: "pending" };
|
|
809
|
+
}
|
|
810
|
+
await store.quarantineIncompleteRun(request.runId);
|
|
811
|
+
const runId = await startRun(controllerContext, request.workflow, request.input, {
|
|
812
|
+
runId: request.runId,
|
|
813
|
+
childKey,
|
|
814
|
+
onFinish: onComplete,
|
|
815
|
+
presentation: false,
|
|
816
|
+
quiet: true,
|
|
817
|
+
signal,
|
|
818
|
+
});
|
|
819
|
+
return runId === undefined ? { state: "pending" } : { state: "running", runId };
|
|
820
|
+
};
|
|
821
|
+
const updateControllerStatus = (ctx) => {
|
|
822
|
+
if (controllerHost === undefined) {
|
|
823
|
+
ctx.ui.setStatus("pi-controllers", undefined);
|
|
824
|
+
return;
|
|
825
|
+
}
|
|
826
|
+
const count = controllerHost.store.listResources().length;
|
|
827
|
+
ctx.ui.setStatus("pi-controllers", `${count} controller resource${count === 1 ? "" : "s"}`);
|
|
828
|
+
};
|
|
829
|
+
const ensureControllerHost = async (ctx) => {
|
|
830
|
+
controllerContext = ctx;
|
|
831
|
+
if (controllerHost !== undefined) {
|
|
832
|
+
return controllerHost;
|
|
833
|
+
}
|
|
834
|
+
controllerHost = await PiControllerHost.create({ cwd: ctx.cwd, startChild });
|
|
835
|
+
controllerHost?.start();
|
|
836
|
+
updateControllerStatus(ctx);
|
|
837
|
+
return controllerHost;
|
|
838
|
+
};
|
|
839
|
+
const listWorkflowControl = async (ctx, offset = 0) => {
|
|
323
840
|
const discovered = await discoverWorkflows({ cwd: ctx.cwd });
|
|
324
841
|
if (discovered.length === 0) {
|
|
325
|
-
|
|
326
|
-
|
|
842
|
+
return {
|
|
843
|
+
message: "No workflows found. Put *.workflow.ts files in .pi/workflows/ or ~/.pi/agent/workflows/, or pass a path.",
|
|
844
|
+
details: { workflows: [], total: 0, offset: 0 },
|
|
845
|
+
level: "warning",
|
|
846
|
+
};
|
|
847
|
+
}
|
|
848
|
+
if (!Number.isInteger(offset) || offset < 0 || offset > discovered.length) {
|
|
849
|
+
throw new Error(`Workflow list offset must be an integer from 0 through ${discovered.length}.`);
|
|
850
|
+
}
|
|
851
|
+
const page = [];
|
|
852
|
+
let nameChars = 0;
|
|
853
|
+
for (const workflow of discovered.slice(offset)) {
|
|
854
|
+
const renderedName = `${workflow.name} (${workflow.source})`;
|
|
855
|
+
if (page.length >= MAX_WORKFLOW_LIST_ITEMS ||
|
|
856
|
+
nameChars + renderedName.length > MAX_WORKFLOW_LIST_NAME_CHARS) {
|
|
857
|
+
break;
|
|
858
|
+
}
|
|
859
|
+
page.push(workflow);
|
|
860
|
+
nameChars += renderedName.length;
|
|
861
|
+
}
|
|
862
|
+
const names = page.map((workflow) => `${workflow.name} (${workflow.source})`).join(", ");
|
|
863
|
+
const nextOffset = offset + page.length;
|
|
864
|
+
const omitted = discovered.length - nextOffset;
|
|
865
|
+
return {
|
|
866
|
+
message: [
|
|
867
|
+
`Workflows: ${names}.`,
|
|
868
|
+
omitted > 0 ? `${omitted} more omitted; list again with offset ${nextOffset}.` : "",
|
|
869
|
+
"Run one with /workflow <name> [task].",
|
|
870
|
+
]
|
|
871
|
+
.filter(Boolean)
|
|
872
|
+
.join(" "),
|
|
873
|
+
details: {
|
|
874
|
+
workflows: page.map((workflow) => ({
|
|
875
|
+
name: workflow.name,
|
|
876
|
+
source: workflow.source,
|
|
877
|
+
...(workflow.name === "monitor"
|
|
878
|
+
? {
|
|
879
|
+
description: "Repeatedly check a target, report requested changes, and stop on a condition.",
|
|
880
|
+
}
|
|
881
|
+
: {}),
|
|
882
|
+
})),
|
|
883
|
+
total: discovered.length,
|
|
884
|
+
offset,
|
|
885
|
+
omitted,
|
|
886
|
+
...(omitted > 0 ? { nextOffset } : {}),
|
|
887
|
+
},
|
|
888
|
+
};
|
|
889
|
+
};
|
|
890
|
+
const listWorkflows = async (ctx) => {
|
|
891
|
+
const result = await listWorkflowControl(ctx);
|
|
892
|
+
notify(ctx, result.message, result.level);
|
|
893
|
+
};
|
|
894
|
+
const cancelWorkflowControl = (ctx) => {
|
|
895
|
+
if (activeRun) {
|
|
896
|
+
const workflowName = activeRun.workflowName;
|
|
897
|
+
const runId = activeRun.runId;
|
|
898
|
+
activeRun.engine.cancel();
|
|
899
|
+
return {
|
|
900
|
+
message: `Cancelling workflow ${workflowName}…`,
|
|
901
|
+
details: { action: "cancel", workflowName, runId },
|
|
902
|
+
};
|
|
903
|
+
}
|
|
904
|
+
if (pendingToolLaunch !== null) {
|
|
905
|
+
const ref = pendingToolLaunch.ref;
|
|
906
|
+
pendingToolLaunch = null;
|
|
907
|
+
return {
|
|
908
|
+
message: `Cancelled the queued workflow launch for ${ref}.`,
|
|
909
|
+
details: { action: "cancel", workflow: ref, queued: false },
|
|
910
|
+
};
|
|
911
|
+
}
|
|
912
|
+
if (widgetSource) {
|
|
913
|
+
const { state } = widgetSource;
|
|
914
|
+
clearWidgetTimer();
|
|
915
|
+
clearWidget(ctx);
|
|
916
|
+
const detail = state.status === "waiting" && state.waitingOn
|
|
917
|
+
? `already ended at checkpoint ${state.waitingOn}`
|
|
918
|
+
: `already ${state.status}`;
|
|
919
|
+
return {
|
|
920
|
+
message: `Workflow ${state.workflowName} ${detail}; cleared its widget.`,
|
|
921
|
+
details: { action: "clear", workflowName: state.workflowName, runId: state.runId },
|
|
922
|
+
};
|
|
923
|
+
}
|
|
924
|
+
return {
|
|
925
|
+
message: "No workflow is running.",
|
|
926
|
+
details: { action: "cancel", active: false },
|
|
927
|
+
level: "warning",
|
|
928
|
+
};
|
|
929
|
+
};
|
|
930
|
+
const pauseWorkflowControl = (ctx) => {
|
|
931
|
+
if (!activeRun) {
|
|
932
|
+
return {
|
|
933
|
+
message: "No workflow is running.",
|
|
934
|
+
details: { action: "pause", active: false },
|
|
935
|
+
level: "warning",
|
|
936
|
+
};
|
|
937
|
+
}
|
|
938
|
+
if (runHeld()) {
|
|
939
|
+
return {
|
|
940
|
+
message: `Workflow ${activeRun.workflowName} is already pausing or paused.`,
|
|
941
|
+
details: {
|
|
942
|
+
action: "pause",
|
|
943
|
+
workflowName: activeRun.workflowName,
|
|
944
|
+
runId: activeRun.runId,
|
|
945
|
+
paused: true,
|
|
946
|
+
},
|
|
947
|
+
};
|
|
948
|
+
}
|
|
949
|
+
activeRun.engine.pause();
|
|
950
|
+
renderWidget(ctx);
|
|
951
|
+
return {
|
|
952
|
+
message: `Pausing workflow ${activeRun.workflowName}; the current step will finish before the run holds.`,
|
|
953
|
+
details: {
|
|
954
|
+
action: "pause",
|
|
955
|
+
workflowName: activeRun.workflowName,
|
|
956
|
+
runId: activeRun.runId,
|
|
957
|
+
paused: true,
|
|
958
|
+
},
|
|
959
|
+
};
|
|
960
|
+
};
|
|
961
|
+
const resumeWorkflowControl = (ctx) => {
|
|
962
|
+
if (!activeRun) {
|
|
963
|
+
return {
|
|
964
|
+
message: "No workflow is running.",
|
|
965
|
+
details: { action: "resume", active: false },
|
|
966
|
+
level: "warning",
|
|
967
|
+
};
|
|
968
|
+
}
|
|
969
|
+
if (!runHeld()) {
|
|
970
|
+
return {
|
|
971
|
+
message: `Workflow ${activeRun.workflowName} is not paused.`,
|
|
972
|
+
details: {
|
|
973
|
+
action: "resume",
|
|
974
|
+
workflowName: activeRun.workflowName,
|
|
975
|
+
runId: activeRun.runId,
|
|
976
|
+
paused: false,
|
|
977
|
+
},
|
|
978
|
+
level: "warning",
|
|
979
|
+
};
|
|
980
|
+
}
|
|
981
|
+
activeRun.engine.resume();
|
|
982
|
+
activeRun.executor.release();
|
|
983
|
+
renderWidget(ctx);
|
|
984
|
+
return {
|
|
985
|
+
message: `Workflow ${activeRun.workflowName} resumed.`,
|
|
986
|
+
details: {
|
|
987
|
+
action: "resume",
|
|
988
|
+
workflowName: activeRun.workflowName,
|
|
989
|
+
runId: activeRun.runId,
|
|
990
|
+
paused: false,
|
|
991
|
+
},
|
|
992
|
+
};
|
|
993
|
+
};
|
|
994
|
+
const statusWorkflowControl = async (ctx, runId) => {
|
|
995
|
+
if (runId !== undefined) {
|
|
996
|
+
const bundle = await readRunBundle(new WorkflowRunStore().runDirFor(runId));
|
|
997
|
+
if (bundle === null) {
|
|
998
|
+
throw new Error(`Workflow run not found: ${runId}`);
|
|
999
|
+
}
|
|
1000
|
+
const { state } = bundle;
|
|
1001
|
+
return {
|
|
1002
|
+
message: `Workflow ${state.workflowName} is ${state.status} (run ${state.runId}).`,
|
|
1003
|
+
details: workflowStateSummary(state),
|
|
1004
|
+
};
|
|
1005
|
+
}
|
|
1006
|
+
const state = activeRun?.lastState ?? widgetSource?.state;
|
|
1007
|
+
if ((state === undefined || state === null) && pendingToolLaunch !== null) {
|
|
1008
|
+
return {
|
|
1009
|
+
message: `Workflow ${pendingToolLaunch.ref} is queued until the current turn finishes.`,
|
|
1010
|
+
details: { active: false, queued: true, workflow: pendingToolLaunch.ref },
|
|
1011
|
+
};
|
|
1012
|
+
}
|
|
1013
|
+
if (state === undefined || state === null) {
|
|
1014
|
+
return {
|
|
1015
|
+
message: "No workflow run is active or displayed.",
|
|
1016
|
+
details: { active: false },
|
|
1017
|
+
level: "warning",
|
|
1018
|
+
};
|
|
1019
|
+
}
|
|
1020
|
+
return {
|
|
1021
|
+
message: `Workflow ${state.workflowName} is ${state.status} (run ${state.runId}).`,
|
|
1022
|
+
details: workflowStateSummary(state),
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
const resolveWaitingWorkflow = async (ctx, requestedRunId) => {
|
|
1026
|
+
let parentRunId = requestedRunId ?? lastWaitingRunId;
|
|
1027
|
+
if (parentRunId === null) {
|
|
1028
|
+
const rows = ensureRunQueueStore(ctx.cwd).listWorkflowRuns();
|
|
1029
|
+
const known = new Set(rows.map((row) => row.runId));
|
|
1030
|
+
const continued = new Set(rows.map((row) => row.parentRunId).filter((parent) => parent !== null));
|
|
1031
|
+
const bundles = await listRunBundles(new WorkflowRunStore().outputRoot);
|
|
1032
|
+
parentRunId =
|
|
1033
|
+
bundles.find((bundle) => bundle.state.status === "waiting" &&
|
|
1034
|
+
known.has(bundle.state.runId) &&
|
|
1035
|
+
!continued.has(bundle.state.runId))?.state.runId ?? null;
|
|
1036
|
+
}
|
|
1037
|
+
if (parentRunId === null) {
|
|
1038
|
+
throw new Error("No workflow is waiting for an answer.");
|
|
1039
|
+
}
|
|
1040
|
+
const parent = await readRunBundle(new WorkflowRunStore().runDirFor(parentRunId));
|
|
1041
|
+
if (parent === null ||
|
|
1042
|
+
parent.state.status !== "waiting" ||
|
|
1043
|
+
parent.state.workflowPath === undefined) {
|
|
1044
|
+
if (parentRunId === lastWaitingRunId) {
|
|
1045
|
+
lastWaitingRunId = null;
|
|
1046
|
+
}
|
|
1047
|
+
throw new Error(`Workflow run ${parentRunId} is no longer waiting.`);
|
|
1048
|
+
}
|
|
1049
|
+
return { parentRunId, workflowPath: parent.state.workflowPath };
|
|
1050
|
+
};
|
|
1051
|
+
const answerWorkflowControl = async (ctx, input, requestedRunId) => {
|
|
1052
|
+
const waiting = await resolveWaitingWorkflow(ctx, requestedRunId);
|
|
1053
|
+
const continued = await startRun(ctx, waiting.workflowPath, input, {
|
|
1054
|
+
parentRunId: waiting.parentRunId,
|
|
1055
|
+
});
|
|
1056
|
+
if (continued === undefined) {
|
|
1057
|
+
throw new Error("Could not start the checkpoint continuation.");
|
|
1058
|
+
}
|
|
1059
|
+
lastWaitingRunId = null;
|
|
1060
|
+
return {
|
|
1061
|
+
message: `Answered checkpoint ${waiting.parentRunId}; continuation ${continued} started.`,
|
|
1062
|
+
details: {
|
|
1063
|
+
action: "answer",
|
|
1064
|
+
parentRunId: waiting.parentRunId,
|
|
1065
|
+
runId: continued,
|
|
1066
|
+
},
|
|
1067
|
+
};
|
|
1068
|
+
};
|
|
1069
|
+
const startWorkflowControl = async (ctx, ref, input) => {
|
|
1070
|
+
if (activeRun !== null) {
|
|
1071
|
+
throw new Error(`A workflow is already running: ${activeRun.workflowName}.`);
|
|
1072
|
+
}
|
|
1073
|
+
if (pendingToolLaunch !== null) {
|
|
1074
|
+
throw new Error("A workflow launch is already waiting for the current turn to finish.");
|
|
1075
|
+
}
|
|
1076
|
+
if (presentationPending !== null) {
|
|
1077
|
+
throw new Error("The previous workflow result is still being presented.");
|
|
1078
|
+
}
|
|
1079
|
+
const runId = await startRun(ctx, ref, input);
|
|
1080
|
+
if (runId === undefined) {
|
|
1081
|
+
throw new Error("The workflow could not start.");
|
|
1082
|
+
}
|
|
1083
|
+
return {
|
|
1084
|
+
message: `Workflow ${ref} started (run ${runId}).`,
|
|
1085
|
+
details: { action: "start", workflow: ref, runId },
|
|
1086
|
+
};
|
|
1087
|
+
};
|
|
1088
|
+
const queueToolLaunch = async (ctx, ref, input, options = {}) => {
|
|
1089
|
+
if (activeRun !== null) {
|
|
1090
|
+
throw new Error(`A workflow is already running: ${activeRun.workflowName}. Cancel it before starting another.`);
|
|
1091
|
+
}
|
|
1092
|
+
if (pendingToolLaunch !== null) {
|
|
1093
|
+
throw new Error("A workflow launch is already waiting for the current turn to finish.");
|
|
1094
|
+
}
|
|
1095
|
+
if (presentationPending !== null) {
|
|
1096
|
+
throw new Error("The previous workflow result is still being presented.");
|
|
1097
|
+
}
|
|
1098
|
+
const reservation = { ctx, ref, input, options };
|
|
1099
|
+
pendingToolLaunch = reservation;
|
|
1100
|
+
try {
|
|
1101
|
+
const resolved = await resolveWorkflowRef(ref, { cwd: ctx.cwd });
|
|
1102
|
+
const workflow = await loadWorkflowFile(resolved.path);
|
|
1103
|
+
if (pendingToolLaunch !== reservation) {
|
|
1104
|
+
throw new Error("The queued workflow launch was cancelled before validation finished.");
|
|
1105
|
+
}
|
|
1106
|
+
return {
|
|
1107
|
+
message: `Workflow ${workflow.name} will start after this turn finishes.`,
|
|
1108
|
+
details: {
|
|
1109
|
+
action: "start",
|
|
1110
|
+
workflow: workflow.name,
|
|
1111
|
+
source: resolved.source,
|
|
1112
|
+
queued: true,
|
|
1113
|
+
},
|
|
1114
|
+
};
|
|
1115
|
+
}
|
|
1116
|
+
catch (error) {
|
|
1117
|
+
if (pendingToolLaunch === reservation) {
|
|
1118
|
+
pendingToolLaunch = null;
|
|
1119
|
+
}
|
|
1120
|
+
throw error;
|
|
327
1121
|
}
|
|
328
|
-
const names = discovered.map((workflow) => `${workflow.name} (${workflow.source})`).join(", ");
|
|
329
|
-
notify(ctx, `Workflows: ${names}. Run one with /workflow <name> [task].`);
|
|
330
1122
|
};
|
|
331
1123
|
pi.registerCommand("workflow", {
|
|
332
|
-
description: "Run a workflow: /workflow <name-or-path> [task | --input-json {…}]; also: pause, resume, cancel",
|
|
1124
|
+
description: "Run or manage a workflow: /workflow <name-or-path> [task | --input-json {…}]; also: status, pause, resume, cancel, answer",
|
|
333
1125
|
getArgumentCompletions: async (prefix) => {
|
|
334
1126
|
const discovered = await discoverWorkflows({ cwd: process.cwd() });
|
|
335
1127
|
const items = [
|
|
336
1128
|
...discovered.map((workflow) => ({ value: workflow.name, label: workflow.name })),
|
|
1129
|
+
{ value: "status", label: "status" },
|
|
337
1130
|
{ value: "pause", label: "pause" },
|
|
338
1131
|
{ value: "resume", label: "resume" },
|
|
339
1132
|
{ value: "cancel", label: "cancel" },
|
|
1133
|
+
{ value: "answer", label: "answer" },
|
|
340
1134
|
].filter((item) => item.value.startsWith(prefix));
|
|
341
1135
|
return items.length > 0 ? items : null;
|
|
342
1136
|
},
|
|
@@ -354,96 +1148,174 @@ export default function piWorkflows(pi) {
|
|
|
354
1148
|
return;
|
|
355
1149
|
}
|
|
356
1150
|
if (parsed.kind === "cancel") {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
notify(ctx, `Cancelling workflow ${activeRun.workflowName}…`);
|
|
360
|
-
return;
|
|
361
|
-
}
|
|
362
|
-
// No live run, but a parked (waiting) or recently finished run may
|
|
363
|
-
// still occupy the widget; cancel clears it.
|
|
364
|
-
if (widgetSource) {
|
|
365
|
-
const { state } = widgetSource;
|
|
366
|
-
clearWidgetTimer();
|
|
367
|
-
clearWidget(ctx);
|
|
368
|
-
const detail = state.status === "waiting" && state.waitingOn
|
|
369
|
-
? `already ended at checkpoint ${state.waitingOn}`
|
|
370
|
-
: `already ${state.status}`;
|
|
371
|
-
notify(ctx, `Workflow ${state.workflowName} ${detail}; cleared its widget.`);
|
|
372
|
-
return;
|
|
373
|
-
}
|
|
374
|
-
notify(ctx, "No workflow is running.", "warning");
|
|
1151
|
+
const result = cancelWorkflowControl(ctx);
|
|
1152
|
+
notify(ctx, result.message, result.level);
|
|
375
1153
|
return;
|
|
376
1154
|
}
|
|
377
1155
|
if (parsed.kind === "pause") {
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
1156
|
+
const result = pauseWorkflowControl(ctx);
|
|
1157
|
+
notify(ctx, result.message, result.level);
|
|
1158
|
+
return;
|
|
1159
|
+
}
|
|
1160
|
+
if (parsed.kind === "resume") {
|
|
1161
|
+
const result = resumeWorkflowControl(ctx);
|
|
1162
|
+
notify(ctx, result.message, result.level);
|
|
1163
|
+
return;
|
|
1164
|
+
}
|
|
1165
|
+
if (parsed.kind === "status") {
|
|
1166
|
+
try {
|
|
1167
|
+
const result = await statusWorkflowControl(ctx, parsed.runId);
|
|
1168
|
+
notify(ctx, result.message, result.level);
|
|
381
1169
|
}
|
|
382
|
-
|
|
383
|
-
notify(ctx,
|
|
384
|
-
return;
|
|
1170
|
+
catch (error) {
|
|
1171
|
+
notify(ctx, errorMessage(error), "error");
|
|
385
1172
|
}
|
|
386
|
-
activeRun.engine.pause();
|
|
387
|
-
renderWidget(ctx);
|
|
388
|
-
notify(ctx, `Pausing workflow ${activeRun.workflowName} — the current step finishes, then the run holds. /workflow resume to continue.`);
|
|
389
1173
|
return;
|
|
390
1174
|
}
|
|
391
|
-
if (parsed.kind === "
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
1175
|
+
if (parsed.kind === "answer") {
|
|
1176
|
+
try {
|
|
1177
|
+
const result = await answerWorkflowControl(ctx, parsed.input, parsed.runId);
|
|
1178
|
+
notify(ctx, result.message, result.level);
|
|
395
1179
|
}
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
1180
|
+
catch (error) {
|
|
1181
|
+
const message = errorMessage(error);
|
|
1182
|
+
notify(ctx, /workflow_run_queue_parent/.test(message)
|
|
1183
|
+
? "That checkpoint was already answered; see its continuation run."
|
|
1184
|
+
: `Could not continue workflow: ${message}`, "error");
|
|
399
1185
|
}
|
|
400
|
-
activeRun.engine.resume();
|
|
401
|
-
activeRun.executor.release();
|
|
402
|
-
renderWidget(ctx);
|
|
403
|
-
notify(ctx, `Workflow ${activeRun.workflowName} resumed.`);
|
|
404
1186
|
return;
|
|
405
1187
|
}
|
|
406
1188
|
try {
|
|
407
|
-
await
|
|
1189
|
+
const result = await startWorkflowControl(ctx, parsed.ref, parsed.input);
|
|
1190
|
+
notify(ctx, result.message, result.level);
|
|
408
1191
|
}
|
|
409
1192
|
catch (error) {
|
|
410
1193
|
notify(ctx, `Could not start workflow: ${errorMessage(error)}`, "error");
|
|
411
1194
|
}
|
|
412
1195
|
},
|
|
413
1196
|
});
|
|
1197
|
+
pi.registerCommand("controller", {
|
|
1198
|
+
description: "Manage durable controllers: list, get, apply, reconcile, delete, start, or stop",
|
|
1199
|
+
getArgumentCompletions: async (prefix) => {
|
|
1200
|
+
const items = ["list", "get", "apply", "reconcile", "delete", "start", "stop"]
|
|
1201
|
+
.filter((value) => value.startsWith(prefix))
|
|
1202
|
+
.map((value) => ({ value, label: value }));
|
|
1203
|
+
return items.length > 0 ? items : null;
|
|
1204
|
+
},
|
|
1205
|
+
handler: async (args, ctx) => {
|
|
1206
|
+
let parsed;
|
|
1207
|
+
try {
|
|
1208
|
+
parsed = parseControllerArgs(args);
|
|
1209
|
+
}
|
|
1210
|
+
catch (error) {
|
|
1211
|
+
notify(ctx, errorMessage(error), "error");
|
|
1212
|
+
return;
|
|
1213
|
+
}
|
|
1214
|
+
const host = await ensureControllerHost(ctx);
|
|
1215
|
+
if (host === undefined) {
|
|
1216
|
+
notify(ctx, "No controllers found. Put *.controller.ts files in .pi/controllers/ or ~/.pi/agent/controllers/.", "warning");
|
|
1217
|
+
return;
|
|
1218
|
+
}
|
|
1219
|
+
try {
|
|
1220
|
+
switch (parsed.kind) {
|
|
1221
|
+
case "list":
|
|
1222
|
+
notify(ctx, host.list());
|
|
1223
|
+
break;
|
|
1224
|
+
case "get":
|
|
1225
|
+
notify(ctx, host.get(parsed.controller, parsed.key));
|
|
1226
|
+
break;
|
|
1227
|
+
case "apply": {
|
|
1228
|
+
const resource = host.apply(parsed.controller, parsed.key, parsed.spec);
|
|
1229
|
+
updateControllerStatus(ctx);
|
|
1230
|
+
notify(ctx, `Applied ${resource.metadata.controller}/${resource.metadata.key} generation ${resource.metadata.generation}.`);
|
|
1231
|
+
break;
|
|
1232
|
+
}
|
|
1233
|
+
case "reconcile":
|
|
1234
|
+
host.reconcile(parsed.controller, parsed.key);
|
|
1235
|
+
notify(ctx, `Queued ${parsed.controller}/${parsed.key}.`);
|
|
1236
|
+
break;
|
|
1237
|
+
case "delete":
|
|
1238
|
+
host.delete(parsed.controller, parsed.key);
|
|
1239
|
+
notify(ctx, `Requested deletion of ${parsed.controller}/${parsed.key}.`);
|
|
1240
|
+
break;
|
|
1241
|
+
case "start":
|
|
1242
|
+
host.start();
|
|
1243
|
+
notify(ctx, "Controller workers started.");
|
|
1244
|
+
break;
|
|
1245
|
+
case "stop":
|
|
1246
|
+
if (activeRun?.childKey !== undefined) {
|
|
1247
|
+
activeRun.interruptionRequested = true;
|
|
1248
|
+
activeRun.engine.cancel();
|
|
1249
|
+
}
|
|
1250
|
+
await host.stop();
|
|
1251
|
+
notify(ctx, "Controller workers stopped.");
|
|
1252
|
+
break;
|
|
1253
|
+
}
|
|
1254
|
+
}
|
|
1255
|
+
catch (error) {
|
|
1256
|
+
notify(ctx, `Controller command failed: ${errorMessage(error)}`, "error");
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
});
|
|
414
1260
|
pi.registerTool({
|
|
415
1261
|
name: "workflow",
|
|
416
1262
|
label: "Workflow",
|
|
417
1263
|
description: [
|
|
418
|
-
"
|
|
419
|
-
"
|
|
420
|
-
"
|
|
1264
|
+
"List, start, inspect, pause, resume, cancel, answer, or complete Pi Workflows runs.",
|
|
1265
|
+
"When the user asks to monitor, watch, poll, or check something repeatedly, start the built-in monitor workflow with input keys task, everyMinutes, reportWhen, stopWhen, and optional maxChecks.",
|
|
1266
|
+
"Use submit only when a workflow step contract asks for it, and pass the exact step and attempt ids.",
|
|
1267
|
+
"Do not start repeated work without the user's request, and keep monitoring observation-only unless the user authorizes mutations.",
|
|
421
1268
|
].join(" "),
|
|
422
|
-
parameters:
|
|
423
|
-
step: Type.String({ description: "The step id from the workflow step contract" }),
|
|
424
|
-
attempt: Type.String({ description: "The attempt id from the workflow step contract" }),
|
|
425
|
-
output: Type.Unknown({ description: "The step output, matching the expected output shape" }),
|
|
426
|
-
}),
|
|
1269
|
+
parameters: WorkflowToolParameters,
|
|
427
1270
|
async execute(_toolCallId, params, _signal, _onUpdate, ctx) {
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
1271
|
+
let control;
|
|
1272
|
+
switch (params.action) {
|
|
1273
|
+
case "list":
|
|
1274
|
+
control = await listWorkflowControl(ctx, params.offset);
|
|
1275
|
+
break;
|
|
1276
|
+
case "start":
|
|
1277
|
+
control = await queueToolLaunch(ctx, params.workflow, params.input ?? {});
|
|
1278
|
+
break;
|
|
1279
|
+
case "status":
|
|
1280
|
+
control = await statusWorkflowControl(ctx, params.runId);
|
|
1281
|
+
break;
|
|
1282
|
+
case "pause":
|
|
1283
|
+
control = pauseWorkflowControl(ctx);
|
|
1284
|
+
break;
|
|
1285
|
+
case "resume":
|
|
1286
|
+
control = resumeWorkflowControl(ctx);
|
|
1287
|
+
break;
|
|
1288
|
+
case "cancel":
|
|
1289
|
+
control = cancelWorkflowControl(ctx);
|
|
1290
|
+
break;
|
|
1291
|
+
case "answer": {
|
|
1292
|
+
const waiting = await resolveWaitingWorkflow(ctx, params.runId);
|
|
1293
|
+
control = await queueToolLaunch(ctx, waiting.workflowPath, params.input, {
|
|
1294
|
+
parentRunId: waiting.parentRunId,
|
|
1295
|
+
});
|
|
1296
|
+
break;
|
|
1297
|
+
}
|
|
1298
|
+
case "submit": {
|
|
1299
|
+
if (!activeRun) {
|
|
1300
|
+
throw new Error("No workflow step is waiting for output.");
|
|
1301
|
+
}
|
|
1302
|
+
// Flush the conversation into the bundle before accepting, so the
|
|
1303
|
+
// attempt range includes the assistant message carrying this call.
|
|
1304
|
+
await activeRun.recorder?.record(ctx).catch(() => undefined);
|
|
1305
|
+
await activeRun.recorder?.synchronize(ctx).catch(() => undefined);
|
|
1306
|
+
const result = await activeRun.executor.submit(params.step, params.attempt, params.output);
|
|
1307
|
+
if (!result.accepted) {
|
|
1308
|
+
throw new Error(result.message);
|
|
1309
|
+
}
|
|
1310
|
+
return {
|
|
1311
|
+
content: [{ type: "text", text: result.message }],
|
|
1312
|
+
details: { action: "submit", step: params.step, accepted: true },
|
|
1313
|
+
};
|
|
1314
|
+
}
|
|
443
1315
|
}
|
|
444
1316
|
return {
|
|
445
|
-
content: [{ type: "text", text:
|
|
446
|
-
details:
|
|
1317
|
+
content: [{ type: "text", text: control.message }],
|
|
1318
|
+
details: control.details,
|
|
447
1319
|
};
|
|
448
1320
|
},
|
|
449
1321
|
});
|
|
@@ -455,6 +1327,29 @@ export default function piWorkflows(pi) {
|
|
|
455
1327
|
description: "Scroll the workflow widget down",
|
|
456
1328
|
handler: (ctx) => scrollWidget(ctx, WIDGET_SCROLL_STEP),
|
|
457
1329
|
});
|
|
1330
|
+
pi.on("session_start", async (_event, ctx) => {
|
|
1331
|
+
sessionClosed = false;
|
|
1332
|
+
controllerContext = ctx;
|
|
1333
|
+
try {
|
|
1334
|
+
syncArmed = true;
|
|
1335
|
+
startRunSync(ctx);
|
|
1336
|
+
}
|
|
1337
|
+
catch {
|
|
1338
|
+
// Session sync is best-effort; runs themselves never depend on it.
|
|
1339
|
+
}
|
|
1340
|
+
try {
|
|
1341
|
+
await resumeParkedRun(ctx);
|
|
1342
|
+
}
|
|
1343
|
+
catch (error) {
|
|
1344
|
+
notify(ctx, `Could not resume a parked workflow: ${errorMessage(error)}`, "warning");
|
|
1345
|
+
}
|
|
1346
|
+
try {
|
|
1347
|
+
await ensureControllerHost(ctx);
|
|
1348
|
+
}
|
|
1349
|
+
catch (error) {
|
|
1350
|
+
notify(ctx, `Could not start controller workers: ${errorMessage(error)}`, "warning");
|
|
1351
|
+
}
|
|
1352
|
+
});
|
|
458
1353
|
pi.on("agent_start", () => {
|
|
459
1354
|
if (!activeRun && presentationPending === null && presentationAbort) {
|
|
460
1355
|
// A normal user turn started while an async presentation prompt was
|
|
@@ -509,6 +1404,23 @@ export default function piWorkflows(pi) {
|
|
|
509
1404
|
activeRun?.recorder?.handleToolEnd(event);
|
|
510
1405
|
});
|
|
511
1406
|
pi.on("agent_settled", async (_event, ctx) => {
|
|
1407
|
+
if (activeRun === null && pendingToolLaunch !== null) {
|
|
1408
|
+
const launch = pendingToolLaunch;
|
|
1409
|
+
pendingToolLaunch = null;
|
|
1410
|
+
try {
|
|
1411
|
+
const runId = await startRun(launch.ctx, launch.ref, launch.input, launch.options);
|
|
1412
|
+
if (runId === undefined) {
|
|
1413
|
+
notify(launch.ctx, "The queued workflow could not start.", "error");
|
|
1414
|
+
}
|
|
1415
|
+
else if (launch.options?.parentRunId !== undefined) {
|
|
1416
|
+
lastWaitingRunId = null;
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
catch (error) {
|
|
1420
|
+
notify(launch.ctx, `Could not start queued workflow: ${errorMessage(error)}`, "error");
|
|
1421
|
+
}
|
|
1422
|
+
return;
|
|
1423
|
+
}
|
|
512
1424
|
const run = activeRun;
|
|
513
1425
|
if (!run) {
|
|
514
1426
|
presentationPending = null;
|
|
@@ -519,13 +1431,33 @@ export default function piWorkflows(pi) {
|
|
|
519
1431
|
run.executor.setStreaming(false);
|
|
520
1432
|
run.executor.handleAgentSettled();
|
|
521
1433
|
});
|
|
522
|
-
pi.on("session_shutdown", () => {
|
|
1434
|
+
pi.on("session_shutdown", async () => {
|
|
523
1435
|
sessionClosed = true;
|
|
524
1436
|
supersedePresentation();
|
|
525
1437
|
const run = activeRun;
|
|
526
|
-
run
|
|
527
|
-
|
|
1438
|
+
if (run !== null && run.claimToken !== undefined) {
|
|
1439
|
+
// Queued interactive runs park: no terminal event, no recorded partial
|
|
1440
|
+
// attempt, and the claim releases so another runner can resume.
|
|
1441
|
+
run.engine.park();
|
|
1442
|
+
}
|
|
1443
|
+
else {
|
|
1444
|
+
run?.engine.cancel();
|
|
1445
|
+
}
|
|
1446
|
+
await run?.recorder?.stop().catch(() => undefined);
|
|
1447
|
+
await run?.completion?.catch(() => undefined);
|
|
528
1448
|
activeRun = null;
|
|
1449
|
+
pendingToolLaunch = null;
|
|
1450
|
+
lastWaitingRunId = null;
|
|
1451
|
+
if (runSyncTimer !== null) {
|
|
1452
|
+
clearInterval(runSyncTimer);
|
|
1453
|
+
runSyncTimer = null;
|
|
1454
|
+
}
|
|
1455
|
+
syncArmed = false;
|
|
1456
|
+
await controllerHost?.close().catch(() => undefined);
|
|
1457
|
+
controllerHost = undefined;
|
|
1458
|
+
controllerContext = null;
|
|
1459
|
+
runQueueStore?.close();
|
|
1460
|
+
runQueueStore = null;
|
|
529
1461
|
presentationPending = null;
|
|
530
1462
|
clearWidgetTimer();
|
|
531
1463
|
stopWidgetTicker();
|
|
@@ -533,6 +1465,31 @@ export default function piWorkflows(pi) {
|
|
|
533
1465
|
widgetScroll = null;
|
|
534
1466
|
});
|
|
535
1467
|
}
|
|
1468
|
+
function workflowSchedulerResult(state, interrupted = false) {
|
|
1469
|
+
if (interrupted) {
|
|
1470
|
+
return {
|
|
1471
|
+
state: "interrupted",
|
|
1472
|
+
runId: state.runId,
|
|
1473
|
+
...(state.error !== undefined ? { error: state.error } : {}),
|
|
1474
|
+
};
|
|
1475
|
+
}
|
|
1476
|
+
switch (state.status) {
|
|
1477
|
+
case "running":
|
|
1478
|
+
return { state: "running", runId: state.runId };
|
|
1479
|
+
case "waiting":
|
|
1480
|
+
return { state: "waiting", runId: state.runId };
|
|
1481
|
+
case "completed":
|
|
1482
|
+
return { state: "succeeded", runId: state.runId };
|
|
1483
|
+
case "failed":
|
|
1484
|
+
case "timed_out":
|
|
1485
|
+
case "cancelled":
|
|
1486
|
+
return {
|
|
1487
|
+
state: "failed",
|
|
1488
|
+
runId: state.runId,
|
|
1489
|
+
...(state.error !== undefined ? { error: state.error } : {}),
|
|
1490
|
+
};
|
|
1491
|
+
}
|
|
1492
|
+
}
|
|
536
1493
|
async function resolvePresentationPrompt(buildPrompt, state, signal) {
|
|
537
1494
|
const snapshot = structuredClone(state);
|
|
538
1495
|
return await Promise.race([
|