/** * get_context tool — The "catch me up" tool for new sessions. * * Assembles a structured briefing from the vault's current state: * - Active projects with progress * - Recent task completions (configurable window) * - Unresolved blockers and failed tasks * - Recent decisions * - Recent discoveries * - Pinned context notes (from a configurable frontmatter field) * * This should be an agent's FIRST call in any new session. */ import { z } from "zod"; import { Vault } from "../vault.js"; import { Config } from "../config.js"; export declare const getContextSchema: { project_id: z.ZodOptional; hours: z.ZodDefault>; include_completed: z.ZodDefault>; }; export declare const getContextHandler: (vault: Vault, config: Config) => (input: { project_id?: string; hours?: number; include_completed?: boolean; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=get-context.d.ts.map