(ctx: WalkContext)
| 520 | } |
| 521 | |
| 522 | function* walkAllSources(ctx: WalkContext): Generator<{ path: string; type: MemoryType }> { |
| 523 | if (ctx.args.sources.has("transcript")) { |
| 524 | yield* walkClaudeCodeProjects(ctx); |
| 525 | yield* walkCodexSessions(ctx); |
| 526 | } |
| 527 | yield* walkGstackArtifacts(ctx); |
| 528 | } |
| 529 | |
| 530 | // ── Renderers ────────────────────────────────────────────────────────────── |
| 531 |
no test coverage detected