/** * Wake-Up Primer — auto-generated, importance-scored, token-budgeted * context injected at session start. * * 4-layer structure: * - L0 Profile (~15%): Project profile * - L1 Critical (~40%): Top knowledge entries by combined score * - L2 Recent (~30%): Last session decisions + open TODOs * - L3 Entities (~15%): Top entities by relationship count */ import type { StoragePlugin } from './types.js'; export interface WakeUpPayload { l0_profile: string; l1_critical: string; l2_recent: string; l3_entities: string; total_tokens: number; } export interface WakeUpConfig { total_budget_tokens?: number; } /** * Assemble a wake-up primer from the database. */ export declare function assembleWakeUp(storage: StoragePlugin, config?: WakeUpConfig): WakeUpPayload; //# sourceMappingURL=wake-up.d.ts.map