( content: string, )
| 4553 | } |
| 4554 | |
| 4555 | export function createCommandInputMessage( |
| 4556 | content: string, |
| 4557 | ): SystemLocalCommandMessage { |
| 4558 | return { |
| 4559 | type: 'system', |
| 4560 | subtype: 'local_command', |
| 4561 | content, |
| 4562 | level: 'info', |
| 4563 | timestamp: new Date().toISOString(), |
| 4564 | uuid: randomUUID(), |
| 4565 | isMeta: false, |
| 4566 | } |
| 4567 | } |
| 4568 | |
| 4569 | export function createCompactBoundaryMessage( |
| 4570 | trigger: 'manual' | 'auto', |
no outgoing calls
no test coverage detected