/** * Forgen Meta-Learning — Runner (Orchestrator) * * Coordinates execution of all meta-learning features at session end. * Called from auto-compound-runner.ts as Step 5. * * Design: * - Each feature is independently gated by config + cold-start check * - Failures in one feature do not block others (fail-open per feature) * - Session quality scoring always runs first (feeds other features) */ import { type MetaLearningConfig, type MetaLearningResult } from './types.js'; export declare function loadMetaLearningConfig(): MetaLearningConfig; export declare function runMetaLearning(sessionId: string, cwd: string): MetaLearningResult;