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