/** * Two-stage proactive intelligence pipeline — stable public facade. * * Implementation lives in ./proactive/: triggers (trigger detection + live * JSONL tailing), context (situational + dossier context loading), gate * (Stage-1 Groq gpt-oss-120b triage), actor (Stage-2 smart-model message + * actions), inject (transcript injection), pipeline (eval loop + service * lifecycle), and state (sleep + kill-switches). */ export { setProactiveSleep, isProactiveSleeping } from "./proactive/state.js"; export { startProactiveEval } from "./proactive/pipeline.js";