UNPKG

@vfarcic/dot-ai

Version:

Universal Kubernetes application deployment agent with CLI and MCP interfaces

23 lines 903 B
/** * Generate Manifests Tool - AI-driven manifest generation with validation loop */ import { z } from 'zod'; import { DotAI } from '../core/index'; import { Logger } from '../core/error-handling'; export declare const GENERATEMANIFESTS_TOOL_NAME = "generateManifests"; export declare const GENERATEMANIFESTS_TOOL_DESCRIPTION = "Generate final Kubernetes manifests from fully configured solution (ONLY after completing ALL stages: required, basic, advanced, and open)"; export declare const GENERATEMANIFESTS_TOOL_INPUT_SCHEMA: { solutionId: z.ZodString; }; /** * Direct MCP tool handler for generateManifests functionality */ export declare function handleGenerateManifestsTool(args: { solutionId: string; }, dotAI: DotAI, logger: Logger, requestId: string): Promise<{ content: { type: 'text'; text: string; }[]; }>; //# sourceMappingURL=generate-manifests.d.ts.map