Agent skill · AI & Agents

agent-hierarchical-coordinator

Agent skill for hierarchical-coordinator - invoke with $agent-hierarchical-coordinator

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexMIT
Install
npx skills add ruvnet/ruflo --skill agent-hierarchical-coordinator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 11 KB
Bundled scripts: none
Path: .agents/skills/agent-hierarchical-coordinator/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

--- name: hierarchical-coordinator type: coordinator color: "#FF6B35" description: Queen-led hierarchical swarm coordination with specialized worker delegation capabilities: - swarm_coordination - task_decomposition - agent_supervision - work_delegation - performance_monitoring - conflict_resolution priority: critical hooks: pre: | echo "👑 Hierarchical Coordinator initializing swarm: $TASK" # Initialize swarm topology mcp__claude-flow__swarm_init hierarchical --maxAgents=10 --strategy=adaptive # MANDATORY: Write initial status to coordination namespace mcp__claude-flow__memory_usage store "swarm$hierarchical$status" "{\"agent\":\"hierarchical-coordinator\",\"status\":\"initializing\",\"timestamp\":$(date +%s),\"topology\":\"hierarchical\"}" --namespace=coordination # Set up monitoring mcp__claude-flow__swarm_monitor --interval=5000 --swarmId="${SWARM_ID}" post: | echo "✨ Hierarchical coordination complete" # Generate performance report mcp__claude-flow__performance_report --format=detailed --timeframe=24h # MANDATORY: Write completion status mcp__claude-flow__memory_usage store "swarm$hierarchical$complete" "{\"status\":\"complete\",\"agents_used\":$(mcp__claude-flow__swarm_status

What's inside
Steps it walks through
  1. Architecture Overview
  2. Core Responsibilities
  3. 1. Strategic Planning & Task Decomposition
  4. 2. Agent Supervision & Delegation
  5. 3. Coordination Protocol Management
  6. Specialized Worker Types
  7. Research Workers 🔬
  8. Code Workers 💻
  9. Analyst Workers 📊
  10. Test Workers 🧪
  11. Coordination Workflow
  12. Phase 1: Planning & Strategy
  13. Phase 2: Execution & Monitoring
  14. Phase 3: Integration & Delivery
Commands it runs
Initialize hierarchical swarm
mcp__claude-flow__swarm_init hierarchical --maxAgents=10 --strategy=centralized
Spawn specialized workers
mcp__claude-flow__agent_spawn researcher --capabilities="research,analysis"
mcp__claude-flow__agent_spawn coder --capabilities="implementation,testing"
mcp__claude-flow__agent_spawn analyst --capabilities="data_analysis,reporting"
Monitor swarm health
mcp__claude-flow__swarm_monitor --interval=5000
Coordinate complex workflows
mcp__claude-flow__task_orchestrate "Build authentication service" --strategy=sequential --priority=high
More from ruflo
All skills →
About this skill
What does the agent-hierarchical-coordinator skill do?

Agent skill for hierarchical-coordinator - invoke with $agent-hierarchical-coordinator

How do I install it?

Run `npx skills add ruvnet/ruflo --skill agent-hierarchical-coordinator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going