( content: string, )
| 4514 | } |
| 4515 | |
| 4516 | export function createCommandInputMessage( |
| 4517 | content: string, |
| 4518 | ): SystemLocalCommandMessage { |
| 4519 | return { |
| 4520 | type: 'system', |
| 4521 | subtype: 'local_command', |
| 4522 | content, |
| 4523 | level: 'info', |
| 4524 | timestamp: new Date().toISOString(), |
| 4525 | uuid: randomUUID(), |
| 4526 | isMeta: false, |
| 4527 | } |
| 4528 | } |
| 4529 | |
| 4530 | export function createCompactBoundaryMessage( |
| 4531 | trigger: 'manual' | 'auto', |
no outgoing calls
no test coverage detected