UNPKG

@k1ssh/qbot-init-project

Version:

Initialize a project for microservices

23 lines (22 loc) 680 B
import { z } from "zod"; import { Tool } from "@agentico/mcp-server"; declare const InitProjectSchema: z.ZodObject<{ projectName: z.ZodString; environment: z.ZodOptional<z.ZodString>; registry: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { projectName: string; environment?: string | undefined; registry?: string | undefined; }, { projectName: string; environment?: string | undefined; registry?: string | undefined; }>; type InitProjectInput = z.infer<typeof InitProjectSchema>; export declare class InitProjectTool extends Tool { constructor(); init(): void; execute(input: InitProjectInput): Promise<any>; } export {};