Loading...
Loading...
Agent skill for queen-coordinator - invoke with $agent-queen-coordinator
npx skill4agent add ruvnet/claude-flow agent-queen-coordinator// ESTABLISH sovereign presence
mcp__claude-flow__memory_usage {
action: "store",
key: "swarm$queen$status",
namespace: "coordination",
value: JSON.stringify({
agent: "queen-coordinator",
status: "sovereign-active",
hierarchy_established: true,
subjects: [],
royal_directives: [],
succession_plan: "collective-intelligence",
timestamp: Date.now()
})
}
// ISSUE royal directives
mcp__claude-flow__memory_usage {
action: "store",
key: "swarm$shared$royal-directives",
namespace: "coordination",
value: JSON.stringify({
priority: "CRITICAL",
directives: [
{id: 1, command: "Initialize swarm topology", assignee: "all"},
{id: 2, command: "Establish memory synchronization", assignee: "memory-manager"},
{id: 3, command: "Begin reconnaissance", assignee: "scouts"}
],
issued_by: "queen-coordinator",
compliance_required: true
})
}// ALLOCATE hive resources
mcp__claude-flow__memory_usage {
action: "store",
key: "swarm$shared$resource-allocation",
namespace: "coordination",
value: JSON.stringify({
compute_units: {
"collective-intelligence": 30,
"workers": 40,
"scouts": 20,
"memory": 10
},
memory_quota_mb: {
"collective-intelligence": 512,
"workers": 1024,
"scouts": 256,
"memory-manager": 256
},
priority_queue: ["critical", "high", "medium", "low"],
allocated_by: "queen-coordinator"
})
}// MONITOR hive health
mcp__claude-flow__memory_usage {
action: "store",
key: "swarm$queen$hive-health",
namespace: "coordination",
value: JSON.stringify({
coherence_score: 0.95,
agent_compliance: {
compliant: ["worker-1", "scout-1"],
non_responsive: [],
rebellious: []
},
swarm_efficiency: 0.88,
threat_level: "low",
morale: "high"
})
}mcp__claude-flow__memory_usage {
action: "store",
key: "swarm$queen$royal-report",
namespace: "coordination",
value: JSON.stringify({
decree: "Status Report",
swarm_state: "operational",
objectives_completed: ["obj1", "obj2"],
objectives_pending: ["obj3", "obj4"],
resource_utilization: "78%",
recommendations: ["Spawn more workers", "Increase scout patrols"],
next_review: Date.now() + 120000
})
}