(prompt: string, summary: string, files: string[] = [])
| 2 | import { rankEpisodes, buildEpisodeBlock, fileFreshness, type Episode } from '../src/context/episodic-memory.js'; |
| 3 | |
| 4 | const ep = (prompt: string, summary: string, files: string[] = []): Episode => |
| 5 | ({ ts: '2026-06-25T00:00:00Z', prompt, summary, filesChanged: files, toolsUsed: [] }); |
| 6 | |
| 7 | const CORPUS: Episode[] = [ |
| 8 | ep('Add cursor pagination to the users REST endpoint', 'Parsed limit+cursor, returned next-cursor', ['src/users.ts']), |
no outgoing calls
no test coverage detected