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

23 lines 898 B
/** * Unified Hive AI Tool * * Provides natural language interface to all Hive AI CLI capabilities * Examples: "hive update models", "hive run consensus on X", "hive check template health" */ import { z } from "zod"; export declare const UnifiedHiveToolSchema: z.ZodObject<{ command: z.ZodString; }, "strip", z.ZodTypeAny, { command: string; }, { command: string; }>; export declare function runUnifiedHiveTool(args: z.infer<typeof UnifiedHiveToolSchema>): Promise<{ result: string; }>; export declare function generateSystemStatus(): Promise<{ result: string; }>; export declare const unifiedHiveToolName = "hive"; export declare const unifiedHiveToolDescription = "Natural language interface to all Hive AI capabilities - use conversational commands like \"update models\", \"run consensus on X\", \"check system status\""; //# sourceMappingURL=unified-hive-tool.d.ts.map