LQF_Machine_Learning_E…
LQF Machine Learning Expert Guide - Routed skill for ML/Statistical Modeling with Critical Discussion Mode. Triggers on: machine learning, modeling,…
Advanced Hive Mind collective intelligence system for queen-led multi-agent coordination with consensus mechanisms and persistent memory
$ npx -y skills add foryourhealth111-pixel/Vibe-Skills --skill hive-mind-advanced --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hive-mind-advancedContext preview
The summary Claude sees to decide when to auto-load this skill.
Advanced Hive Mind collective intelligence system for queen-led multi-agent coordination with consensus mechanisms and persistent memory
name: hive-mind-advanced description: Advanced Hive Mind collective intelligence system for queen-led multi-agent coordination with consensus mechanisms and persistent memory version: 1.0.0 category: coordination tags: [hive-mind, swarm, queen-worker, consensus, collective-intelligence, multi-agent, coordination] author: Claude Flow Team
Master the advanced Hive Mind collective intelligence system for sophisticated multi-agent coordination using queen-led architecture, Byzantine consensus, and collective memory.
The Hive Mind system represents the pinnacle of multi-agent coordination in Claude Flow, implementing a queen-led hierarchical architecture where a strategic queen coordinator directs specialized worker agents through collective decision-making and shared memory.
**Queen-Led Coordination**
**Worker Specialization**
**Collective Memory System**
**Majority Consensus** Simple voting where the option with most votes wins.
**Weighted Consensus** Queen vote counts as 3x weight, providing strategic guidance.
**Byzantine Fault Tolerance** Requires 2/3 majority for decision approval, ensuring robust consensus even with faulty agents.
# Basic initialization npx claude-flow hive-mind init # Force reinitialize npx claude-flow hive-mind init --force # Custom configuration npx claude-flow hive-mind init --config hive-config.json
# Basic spawn with objective npx claude-flow hive-mind spawn "Build microservices architecture" # Strategic queen type npx claude-flow hive-mind spawn "Research AI patterns" --queen-type strategic # Tactical queen with max workers npx claude-flow hive-mind spawn "Implement API" --queen-type tactical --max-workers 12 # Adaptive queen with consensus npx claude-flow hive-mind spawn "Optimize system" --queen-type adaptive --consensus byzantine # Generate Claude Code commands npx claude-flow hive-mind spawn "Build full-stack app" --claude
# Check hive mind status npx claude-flow hive-mind status # Get detailed metrics npx claude-flow hive-mind metrics # Monitor collective memory npx claude-flow hive-mind memory
**Create and Manage Sessions**
# List active sessions npx claude-flow hive-mind sessions # Pause a session npx claude-flow hive-mind pause <session-id> # Resume a paused session npx claude-flow hive-mind resume <session-id> # Stop a running session npx claude-flow hive-mind stop <session-id>
**Session Features**
The Hive Mind builds consensus through structured voting:
// Programmatic consensus building const decision = await hiveMind.buildConsensus( 'Architecture pattern selection', ['microservices', 'monolith', 'serverless'] ); // Result includes: // - decision: Winning option // - confidence: Vote percentage // - votes: Individual agent votes
**Consensus Algorithms**
1. **Majority** - Simple democratic voting 2. **Weighted** - Queen has 3x voting power 3. **Byzantine** - 2/3 supermajority required
**Storing Knowledge**
// Store in collective memory
await memory.store('api-patterns', {
rest: { pros: [...], cons: [...] },
graphql: { pros: [...], cons: [...] }
}, 'knowledge', { confidence: 0.95 });**Memory Types**
**Searching and Retrieval**
// Search memory by pattern
const results = await memory.search('api*', {
type: 'knowledge',
minConfidence: 0.8,
limit: 50
});
// Get related memories
const related = await memory.getRelated('api-patterns', 10);
// Build associations
await memory.associate('rest-api', 'authentication', 0.9);**Automatic Worker Assignment**
The system intelligently assigns tasks based on:
// Create task (auto-assigned)
const task = await hiveMind.createTask(
'Implement user authentication',
priority: 8,
{ estimatedDuration: 30000 }
);**Auto-Scaling**
// Configure auto-scaling
const config = {
autoScale: true,
maxWorkers: 12,
scaleUpThreshold: 2, // Pending tasks per idle worker
scaleDownThreshold: 2 // Idle workers above pending tasks
};Generate Claude Code spawn commands directly:
npx claude-flow hive-mind spawn "Build REST API" --claude
Output:
Task("QuIntelligent Skill routing and workflow orchestration for AI agents — +21.12 pp reward, −29.6% tokens on SkillsBench with DeepSeekV4Flash-VE.
Repo: foryourhealth111-pixel/Vibe-Skills
LQF Machine Learning Expert Guide - Routed skill for ML/Statistical Modeling with Critical Discussion Mode. Triggers on: machine learning, modeling,…
Cloud laboratory platform for automated protein testing and validation. Use when designing proteins and needing experimental validation including binding…
This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection,…
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code,…
Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the…
Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use when architecting complex…