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