/** * get_project_status tool — Get rollup status of a project and all its sub-tasks. * * Shows: * - Overall progress (e.g. "3/7 tasks completed") * - Status breakdown (pending, in_progress, blocked, completed, failed) * - List of all sub-tasks with their current state * - Blockers and overdue tasks * - Active agents (who's working on what) */ import { z } from "zod"; import { Vault } from "../vault.js"; import { Config } from "../config.js"; export declare const getProjectStatusSchema: { project_id: z.ZodString; }; export declare const getProjectStatusHandler: (vault: Vault, config: Config) => (input: { project_id: string; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=get-project-status.d.ts.map