(sessionId: UUID, aiTitle: string)
| 2665 | * where the AI title lands after a mid-flight user rename. |
| 2666 | */ |
| 2667 | export function saveAiGeneratedTitle(sessionId: UUID, aiTitle: string): void { |
| 2668 | appendEntryToFile(getTranscriptPathForSession(sessionId), { |
| 2669 | type: 'ai-title', |
| 2670 | aiTitle, |
| 2671 | sessionId, |
| 2672 | }) |
| 2673 | } |
| 2674 | |
| 2675 | /** |
| 2676 | * Append a periodic task summary for `claude ps`. Unlike ai-title this is |
no test coverage detected