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 910 B
/** * CLI Passthrough Tool * * Provides direct access to all Hive AI CLI commands through MCP * Enables full CLI functionality for Claude Code users */ import { z } from "zod"; export declare const CLIPassthroughToolSchema: z.ZodObject<{ cli_command: z.ZodString; }, "strip", z.ZodTypeAny, { cli_command: string; }, { cli_command: string; }>; export declare function runCLIPassthroughTool(args: z.infer<typeof CLIPassthroughToolSchema>): Promise<{ result: string; }>; export declare function runCLIPassthroughToolDirect(args: z.infer<typeof CLIPassthroughToolSchema>): Promise<{ result: string; }>; export declare const cliPassthroughToolName = "hive_cli"; export declare const cliPassthroughToolDescription = "Direct CLI command execution - run any Hive AI CLI command (e.g., \"setup\", \"models update\", \"consensus 'question'\")"; //# sourceMappingURL=cli-passthrough-tool.d.ts.map