( writtenPaths: string[], )
| 4458 | } |
| 4459 | |
| 4460 | export function createMemorySavedMessage( |
| 4461 | writtenPaths: string[], |
| 4462 | ): SystemMemorySavedMessage { |
| 4463 | return { |
| 4464 | type: 'system', |
| 4465 | subtype: 'memory_saved', |
| 4466 | writtenPaths, |
| 4467 | timestamp: new Date().toISOString(), |
| 4468 | uuid: randomUUID(), |
| 4469 | isMeta: false, |
| 4470 | } |
| 4471 | } |
| 4472 | |
| 4473 | export function createAgentsKilledMessage(): SystemAgentsKilledMessage { |
| 4474 | return { |
no outgoing calls
no test coverage detected