// Custom modules for moreminimore-vibe // This file exports all custom functionality to make imports easier // Custom hooks export { useSmartContextMeta, useRetrieveSmartContext, useUpsertSmartContextSnippets, useUpdateRollingSummary } from './hooks/useSmartContext'; // Custom IPC handlers (these will need to be imported and registered in the main process) export { registerSmartContextHandlers } from './ipc/smart_context_handlers'; // Custom utilities export * from './utils/smart_context_store'; // Re-export types that might be needed export type { SmartContextMeta, SmartContextSnippet, SmartContextRetrieveResult, } from '../ipc/ipc_types';