(kind: 'episode' | 'worklog' | 'fact', text: string, score: number, files?: string[])
| 3 | import type { ApproachMatch } from '../src/context/approach-recall.ts'; |
| 4 | |
| 5 | const M = (kind: 'episode' | 'worklog' | 'fact', text: string, score: number, files?: string[]): ApproachMatch => |
| 6 | ({ kind, text, when: '2d ago', score, files }); |
| 7 | |
| 8 | describe('termDiff', () => { |
| 9 | it('splits vocabulary into shared / added / missing, comparing by STEM but showing surface words', () => { |