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

Function actionHarnessId

projects/openade-module/src/node.ts:117–120  ·  view source on GitHub ↗
(event: Record<string, unknown> | undefined, fallback: string)

Source from the content-addressed store, hash-verified

115}
116
117function actionHarnessId(event: Record<string, unknown> | undefined, fallback: string): string {
118 const execution = eventRecord(event?.execution)
119 return typeof execution?.harnessId === "string" ? execution.harnessId : fallback
120}
121
122function taskReviewThreadXml(task: OpenADETask): string {
123 const events = task.events.filter((event) => eventRecord(event)?.type !== "snapshot")

Callers 1

startReviewFunction · 0.85

Calls 1

eventRecordFunction · 0.70

Tested by

no test coverage detected