UNPKG

@hivetechs/hive-ai

Version:

Real-time streaming AI consensus platform with HTTP+SSE MCP integration for Claude Code, VS Code, Cursor, and Windsurf - powered by OpenRouter's unified API

25 lines 1.04 kB
/** * Template Maintenance CLI Tool * * Provides CLI commands for managing Expert Profile Template health */ import { z } from "zod"; export declare const TemplateMaintenanceToolSchema: z.ZodObject<{ action: z.ZodEnum<["check", "fix", "status", "force-update"]>; template_id: z.ZodOptional<z.ZodString>; dry_run: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>; }, "strip", z.ZodTypeAny, { action: "status" | "fix" | "check" | "force-update"; dry_run: boolean; template_id?: string | undefined; }, { action: "status" | "fix" | "check" | "force-update"; template_id?: string | undefined; dry_run?: boolean | undefined; }>; export declare function runTemplateMaintenanceTool(args: z.infer<typeof TemplateMaintenanceToolSchema>): Promise<{ result: string; }>; export declare const templateMaintenanceToolName = "template_maintenance"; export declare const templateMaintenanceToolDescription = "Maintain Expert Profile Template health and currency"; //# sourceMappingURL=template-maintenance-tool.d.ts.map