(command: string)
| 21 | |
| 22 | const read = (fp: string): ToolCallLike => ({ tool: 'Read', input: { file_path: fp }, output: '' }); |
| 23 | const bash = (command: string): ToolCallLike => ({ tool: 'Bash', input: { command }, output: '' }); |
| 24 | |
| 25 | describe('extractSectionReads', () => { |
| 26 | test('picks up section reads via the /sections/<file>.md segment', () => { |
no outgoing calls
no test coverage detected