MCPcopy Create free account
hub / github.com/bearlyai/OpenADE / notifyWorkingTasks

Function notifyWorkingTasks

projects/openade-module/src/node.ts:191–201  ·  view source on GitHub ↗
(server: RuntimeServer | undefined)

Source from the content-addressed store, hash-verified

189}
190
191function notifyWorkingTasks(server: RuntimeServer | undefined): void {
192 if (!server) return
193 publishOpenADECompanionEvent(server, {
194 type: "working_tasks",
195 taskIds: server.supervisor
196 .list({ ownerType: "openade-task" })
197 .filter((runtime) => runtime.scope.ownerId && (runtime.status === "starting" || runtime.status === "running"))
198 .map((runtime) => runtime.scope.ownerId as string),
199 at: new Date().toISOString(),
200 })
201}
202
203async function reconcileCheckpointedOpenADEActionEvents({
204 server,

Callers 5

stopActiveOpenADERuntimeFunction · 0.85
startTurnFunction · 0.85
startReviewFunction · 0.85
startHyperPlanFunction · 0.85
finalizeFunction · 0.85

Calls 2

listMethod · 0.65

Tested by

no test coverage detected