/** * MCP tool: vf_bootstrap * * Returns everything an agent needs at session start in a single call: * project context, coding conventions, current errors, and server status. */ import type { InferSchema } from "../../../src/extensions/schema/index.js"; import type { MCPTool } from "../../../src/mcp/index.js"; import type { DevError } from "../../../src/observability/index.js"; import { vfGetProjectContext } from "./project-tools.js"; import { vfGetConventions } from "./scaffold-tools.js"; declare const getBootstrapInput: () => import("../../../src/internal-agents/schema.js").Schema; }>>; type BootstrapInput = InferSchema>; interface BootstrapResult { project: Awaited>; conventions: Awaited>; errors: { total: number; items: DevError[]; }; status: { running: boolean; }; } export declare const vfBootstrap: MCPTool; export {}; //# sourceMappingURL=bootstrap-tool.d.ts.map