import type { Ai, Orchestration } from "@cargo-ai/api"; import type { Api } from "../../../api.js"; /** Mount prefix so agent MCP tools can be auto-approved without widening user MCP. */ export declare const CARGO_AGENT_MCP_NAME_PREFIX = "cargoagent_"; type HostTool = { description?: string; inputSchema: { type: "object"; additionalProperties: true; }; execute: (data: unknown) => Promise; }; export declare function buildReleaseInstructionAppendix(release: Ai.Release): string | undefined; export declare function buildReleaseMcpServers(mcpClients: Ai.McpClient[]): Record; export declare function buildReleaseHostTools(api: Api, actions: Ai.Action[]): Record; export declare function toExecuteAction(action: Ai.Action): Orchestration.Api.ExecuteActionPayload["action"]; export {}; //# sourceMappingURL=release.d.ts.map