(sessionId: UUID, summary: string)
| 2680 | * recent one from the tail. |
| 2681 | */ |
| 2682 | export function saveTaskSummary(sessionId: UUID, summary: string): void { |
| 2683 | appendEntryToFile(getTranscriptPathForSession(sessionId), { |
| 2684 | type: 'task-summary', |
| 2685 | summary, |
| 2686 | sessionId, |
| 2687 | timestamp: new Date().toISOString(), |
| 2688 | }) |
| 2689 | } |
| 2690 | |
| 2691 | export async function saveTag(sessionId: UUID, tag: string, fullPath?: string) { |
| 2692 | // Fall back to computed path if fullPath is not provided |
nothing calls this directly
no test coverage detected