(sessionId: UUID, summary: string)
| 2718 | * recent one from the tail. |
| 2719 | */ |
| 2720 | export function saveTaskSummary(sessionId: UUID, summary: string): void { |
| 2721 | appendEntryToFile(getTranscriptPathForSession(sessionId), { |
| 2722 | type: 'task-summary', |
| 2723 | summary, |
| 2724 | sessionId, |
| 2725 | timestamp: new Date().toISOString(), |
| 2726 | }) |
| 2727 | } |
| 2728 | |
| 2729 | export async function saveTag(sessionId: UUID, tag: string, fullPath?: string) { |
| 2730 | // Fall back to computed path if fullPath is not provided |
nothing calls this directly
no test coverage detected