import type { KnowledgeProcessor } from "./types.js"; /** * Ordered list of knowledge processors. * * To add a new processor: * 1. Create src/knowledge-book/processors/.ts * 2. Export a KnowledgeProcessor const from it * 3. Import it here and append to this array * * Each processor receives bookSoFar — the accumulated sections from all * preceding processors. Use ctx.bookSoFar to cross-reference earlier content. */ export declare const KNOWLEDGE_PIPELINE: KnowledgeProcessor[]; //# sourceMappingURL=pipeline.d.ts.map