(entries: readonly LedgerEntry[], operationId: string)
| 147 | const ledger = (instance: Emulator) => Effect.promise(() => instance.ledger.list()); |
| 148 | |
| 149 | const entryFor = (entries: readonly LedgerEntry[], operationId: string): LedgerEntry | undefined => |
| 150 | entries.find((entry) => entry.operationId === operationId); |
| 151 | |
| 152 | // Sandbox code for the agent path: one addressed MCP tool call, with the |
| 153 | // ToolResult envelope returned as a value (tool failures are values here). |
no outgoing calls
no test coverage detected