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

Function executionEvents

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

Source from the content-addressed store, hash-verified

109}
110
111function executionEvents(event: Record<string, unknown> | undefined): Array<Record<string, unknown>> {
112 const execution = eventRecord(event?.execution)
113 const events = Array.isArray(execution?.events) ? execution.events : []
114 return events.filter((candidate): candidate is Record<string, unknown> => eventRecord(candidate) !== null)
115}
116
117function actionHarnessId(event: Record<string, unknown> | undefined, fallback: string): string {
118 const execution = eventRecord(event?.execution)

Callers 1

startReviewFunction · 0.85

Calls 1

eventRecordFunction · 0.70

Tested by

no test coverage detected