(record *AgentContextRecord)
| 452 | } |
| 453 | |
| 454 | func agentContextBundle(record *AgentContextRecord) outputBundle { |
| 455 | return outputBundle{ |
| 456 | jsonValue: record, |
| 457 | human: func() (string, error) { |
| 458 | return renderJSONPreview(record) |
| 459 | }, |
| 460 | toon: func() (string, error) { |
| 461 | return renderJSONPreview(record) |
| 462 | }, |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | func agentChannelsBundle(channels []AgentChannelRecord) outputBundle { |
| 467 | return listBundle( |
no test coverage detected