(availableDecisions)
| 613 | commandOutputBytes: 0, |
| 614 | fileChanges: 0, |
| 615 | methods: {}, |
| 616 | }; |
| 617 | |
| 618 | for (const msg of lines) { |
| 619 | const method = msg.method || 'response'; |
| 620 | summary.methods[method] = (summary.methods[method] || 0) + 1; |
| 621 | const params = msg.params || {}; |
| 622 | const threadId = params.threadId || params.thread?.id || msg.result?.thread?.id; |
| 623 | const turnId = params.turnId || params.turn?.id || msg.result?.turn?.id; |
no outgoing calls
no test coverage detected