/** * Brief domain — read + write tools. * * Two tools, workflow-shaped: * * - `brief_inspect` (read) discriminates on `verb` so a single entry * point covers list-briefs, get-brief-by-id, list/get-brief-types, * list-todos (tenant-wide or per-brief), and list-comments. * - `brief_manage` (write) discriminates on `resource` + `verb`: * `brief-type` create/update/delete, `brief` create/update/delete * (status moves go through `update` with a `status` field), and * `comment` create. Brief-type writes verified 2026-05-15 against the * agents tenant; brief delete uses the verified SDK `deleteBrief`; * comment create is wired UNVERIFIED (best-guess body). */ import type { McpRegistry } from "../registry.js"; export declare const registerBriefTools: (registry: McpRegistry) => void;