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

Function eventRecord

projects/openade-module/src/node.ts:93–95  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

91}
92
93function eventRecord(value: unknown): Record<string, unknown> | null {
94 return typeof value === "object" && value !== null && !Array.isArray(value) ? (value as Record<string, unknown>) : null
95}
96
97function latestCompletedPlanEventId(events: unknown[]): string | undefined {
98 return latestCompletedPlanEvent(events)?.id as string | undefined

Callers 5

latestCompletedPlanEventFunction · 0.70
executionEventsFunction · 0.70
actionHarnessIdFunction · 0.70
taskReviewThreadXmlFunction · 0.70
recentSnapshotFilesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected