/** * Hive-Mind Command - Collective Intelligence Coordination * * Implements the missing hive-mind functionality for gemini-flow * with collective decision-making and emergent intelligence */ import { Command } from "commander"; export declare class HiveMindCommand extends Command { private logger; private geminiAdapter?; constructor(); private initHive; private spawnHive; private getStatus; private requestConsensus; private manageMemory; private syncHive; private stopHive; private runWizard; private listSessions; private resumeSession; private showMetrics; /** * Initialize Gemini AI adapter for enhanced collective intelligence */ private initializeGeminiAdapter; /** * Load Gemini context from GEMINI.md file */ private loadGeminiContext; /** * Get default Gemini context when GEMINI.md is not found */ private getDefaultGeminiContext; /** * Generate collective intelligence context using Gemini AI */ private generateCollectiveContext; /** * Build the prompt for generating collective intelligence context */ private buildCollectiveContextPrompt; /** * Determine optimal network topology based on objective and agent types */ private determineOptimalTopology; /** * Store the generated collective context for hive coordination */ private storeCollectiveContext; /** * Implement feedback loops for continuous improvement */ private implementFeedbackLoops; /** * Analyze performance patterns from execution metrics */ private analyzePerformancePatterns; /** * Update coordination strategies based on analysis */ private updateCoordinationStrategies; /** * Store learning insights for future hive mind operations */ private storeLearningInsights; } export default HiveMindCommand; //# sourceMappingURL=hive-mind.d.ts.map