( content: string, )
| 4614 | } |
| 4615 | |
| 4616 | export function createCommandInputMessage( |
| 4617 | content: string, |
| 4618 | ): SystemLocalCommandMessage { |
| 4619 | return { |
| 4620 | type: 'system', |
| 4621 | subtype: 'local_command', |
| 4622 | content, |
| 4623 | level: 'info', |
| 4624 | timestamp: new Date().toISOString(), |
| 4625 | uuid: randomUUID(), |
| 4626 | isMeta: false, |
| 4627 | } |
| 4628 | } |
| 4629 | |
| 4630 | export function createCompactBoundaryMessage( |
| 4631 | trigger: 'manual' | 'auto', |
no test coverage detected