/** * `agent-catalog` command adapter. * * The catalog projection was re-homed out of the composition root (ADR-0084) * so `@opensip-cli/mcp` can serve the same surface: the `AgentCatalog` / * `CommandTier` TYPES live in `@opensip-cli/contracts`, and the content * builder + transport-parity assembler live in `@opensip-cli/shared-analysis` * (Plan 09 Phase 7). This module re-exports both for existing call * sites/tests and keeps the host rendering wrapper (`executeAgentCatalog`). */ import { type ToolRegistry } from '@opensip-cli/core'; export { buildAgentCatalog } from '@opensip-cli/shared-analysis'; export type { AgentCatalog, CommandTier } from '@opensip-cli/contracts'; export declare function executeAgentCatalog(opts?: { readonly json?: boolean; readonly tools?: ToolRegistry; readonly internalCommands?: ReadonlySet; }): { type: string; catalog: import("@opensip-cli/contracts").AgentCatalog; title?: undefined; lines?: undefined; } | { type: string; title: string; lines: string[]; catalog?: undefined; }; //# sourceMappingURL=agent-catalog.d.ts.map