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

29 lines 1.63 kB
/** * Intelligent Setup Wizard * * Integrates question analysis with Expert Profile Template recommendations * Provides smart guidance based on user needs and budget constraints */ import { z } from "zod"; export declare const IntelligentSetupSchema: z.ZodObject<{ user_question: z.ZodOptional<z.ZodString>; budget_preference: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "unlimited"]>>; use_case: z.ZodOptional<z.ZodEnum<["coding", "research", "creative", "business", "general"]>>; experience_level: z.ZodOptional<z.ZodEnum<["beginner", "intermediate", "expert"]>>; }, "strip", z.ZodTypeAny, { user_question?: string | undefined; budget_preference?: "unlimited" | "high" | "low" | "medium" | undefined; use_case?: "creative" | "coding" | "research" | "general" | "business" | undefined; experience_level?: "beginner" | "intermediate" | "expert" | undefined; }, { user_question?: string | undefined; budget_preference?: "unlimited" | "high" | "low" | "medium" | undefined; use_case?: "creative" | "coding" | "research" | "general" | "business" | undefined; experience_level?: "beginner" | "intermediate" | "expert" | undefined; }>; export declare function runIntelligentSetup(args: z.infer<typeof IntelligentSetupSchema>): Promise<{ result: string; }>; export declare const intelligentSetupToolName = "hive_intelligent_setup"; export declare const intelligentSetupToolDescription = "Smart setup wizard that analyzes your needs and recommends optimal Expert Profile Templates, budget settings, and mode configuration"; //# sourceMappingURL=intelligent-setup-wizard.d.ts.map