(nuggets: Array<{ nugget: string; applies_to_signal_keys: string[]; applied_at?: string }>)
| 32 | }); |
| 33 | |
| 34 | function writeMemory(nuggets: Array<{ nugget: string; applies_to_signal_keys: string[]; applied_at?: string }>) { |
| 35 | fs.writeFileSync(path.join(stateRoot, 'free-text-memory.json'), JSON.stringify({ nuggets })); |
| 36 | } |
| 37 | |
| 38 | function runHook(stdin: object): { stdout: string; stderr: string; status: number; parsed: any } { |
| 39 | const env: Record<string, string> = {}; |
no outgoing calls
no test coverage detected