MCPcopy Index your code
hub / github.com/codeaashu/claude-code / saveTaskSummary

Function saveTaskSummary

src/utils/sessionStorage.ts:2681–2688  ·  view source on GitHub ↗
(sessionId: UUID, summary: string)

Source from the content-addressed store, hash-verified

2679 * recent one from the tail.
2680 */
2681export 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
2690export async function saveTag(sessionId: UUID, tag: string, fullPath?: string) {
2691 // Fall back to computed path if fullPath is not provided

Callers

nothing calls this directly

Calls 2

appendEntryToFileFunction · 0.85

Tested by

no test coverage detected