/** * TASKS substrate adapter for the Living Brain API. * * Queries tasks.db and returns BrainNodes/BrainEdges for tasks and sessions. * Prioritises critical/high priority tasks and active sessions. * * Node IDs are prefixed with "tasks:" to prevent collisions. */ import type { BrainEdge, BrainNode, BrainQueryOptions } from '../types.js'; /** * Returns all BrainNodes and BrainEdges sourced from tasks.db. * * Fetches tasks ordered by priority, plus recent sessions. * Synthesizes parent→child, dependency, and relation edges. * * @param options - Query options (limit, minWeight). * @returns Nodes and edges from the TASKS substrate. */ export declare function getTasksSubstrate(options?: BrainQueryOptions): { nodes: BrainNode[]; edges: BrainEdge[]; }; //# sourceMappingURL=tasks.d.ts.map