/** * Tag Image Tool - Modernized Implementation * * Tags Docker images with version and registry information * Follows the new Tool interface pattern * * This is a deterministic operational tool with no AI calls. */ import { z } from 'zod'; export interface TagImageResult { /** * Natural language summary for user display. * 1-3 sentences describing the tagging result. * @example "✅ Tagged image. Applied 3 tags: v1.0.0, latest, stable. Ready to push." */ summary?: string; success: boolean; tags: string[]; imageId: string; } /** * Tag image tool conforming to Tool interface */ declare const _default: import("../../types/index.js").Tool, TagImageResult>; export default _default; //# sourceMappingURL=tool.d.ts.map