/** * Generate Dockerfile Tool * * Analyzes repository and queries knowledgebase to gather insights and return * structured requirements for creating a Dockerfile. This tool helps users * understand best practices and recommendations before actual Dockerfile generation. * * Uses the knowledge-tool-pattern for consistent, deterministic behavior. */ import { type DockerfilePlan } from './schema.js'; import type { z } from 'zod'; declare const _default: import("../../types/index.js").Tool; modulePath: z.ZodOptional; language: z.ZodOptional; languageVersion: z.ZodOptional; framework: z.ZodOptional; environment: z.ZodOptional>; detectedDependencies: z.ZodOptional>; detectedEnvVars: z.ZodOptional; source: z.ZodString; required: z.ZodBoolean; defaultValue: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; source: string; required: boolean; classification: "config" | "database" | "secret"; defaultValue?: string | undefined; }, { name: string; source: string; required: boolean; classification: "config" | "database" | "secret"; defaultValue?: string | undefined; }>, "many">>; targetPlatform: z.ZodDefault>; trafficLevel: z.ZodOptional>; criticalityTier: z.ZodOptional>; }, "strip", z.ZodTypeAny, { repositoryPath: string; targetPlatform: "linux/amd64" | "linux/arm64" | "linux/arm/v7" | "linux/arm/v6" | "linux/386" | "linux/ppc64le" | "linux/s390x" | "linux/riscv64" | "windows/amd64"; environment?: "development" | "staging" | "production" | "testing" | undefined; language?: string | undefined; languageVersion?: string | undefined; framework?: string | undefined; workspacePath?: string | undefined; modulePath?: string | undefined; detectedEnvVars?: { name: string; source: string; required: boolean; classification: "config" | "database" | "secret"; defaultValue?: string | undefined; }[] | undefined; detectedDependencies?: string[] | undefined; trafficLevel?: "high" | "medium" | "low" | undefined; criticalityTier?: "tier-1" | "tier-2" | "tier-3" | undefined; }, { repositoryPath: string; environment?: "development" | "staging" | "production" | "testing" | undefined; language?: string | undefined; languageVersion?: string | undefined; framework?: string | undefined; workspacePath?: string | undefined; modulePath?: string | undefined; detectedEnvVars?: { name: string; source: string; required: boolean; classification: "config" | "database" | "secret"; defaultValue?: string | undefined; }[] | undefined; detectedDependencies?: string[] | undefined; targetPlatform?: "linux/amd64" | "linux/arm64" | "linux/arm/v7" | "linux/arm/v6" | "linux/386" | "linux/ppc64le" | "linux/s390x" | "linux/riscv64" | "windows/amd64" | undefined; trafficLevel?: "high" | "medium" | "low" | undefined; criticalityTier?: "tier-1" | "tier-2" | "tier-3" | undefined; }>, DockerfilePlan>; export default _default; //# sourceMappingURL=tool.d.ts.map