#!/usr/bin/env node /** * Hook handler for summarizing conversations and storing them in Nori Profiles * * This script is called by Claude Code hooks on SessionEnd and PreCompact events. * It summarizes the conversation context and stores it using the backend API. */ /** * Check if transcript is empty (contains no meaningful conversation) * A transcript is meaningful only if it has at least one user message with actual content. * @param args - Configuration arguments * @param args.content - Raw transcript content * * @returns True if transcript has no meaningful messages, false otherwise */ export declare const isEmptyTranscript: (args: { content: string; }) => boolean; //# sourceMappingURL=summarize.d.ts.map