/** * suggest_assignee tool — Find the best agents for a given task. * * Reads the task's type and tags, scans all registered agents, and * uses capability-based matching to rank them. Returns the top 5 * suggestions with scores and reasons. */ import { z } from "zod"; import { Vault } from "../vault.js"; import { Config } from "../config.js"; export declare const suggestAssigneeSchema: { task_id: z.ZodString; }; export declare const suggestAssigneeHandler: (vault: Vault, config: Config) => (input: { task_id: string; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=suggest-assignee.d.ts.map