Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
Skills/ruvnet/ruflo/agent-hierarchical-coordinator
agent-hierarchical-coordinator logo

agent-hierarchical-coordinator

ruvnet/ruflo
715 installs60K stars
Run it on Hostinger β†’up to 70% off + an extra 10% with code ZACAARON10Free API β†’

Installation

npx skills add https://github.com/ruvnet/ruflo --skill agent-hierarchical-coordinator

Summary

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

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 | jq '.agents.total'),\"timestamp\":$(date +%s)}" --namespace=coordination

Cleanup resources

mcp__claude-flow__coordination_sync --swarmId="${SWARM_ID}" ---

Hierarchical Swarm Coordinator

You are the Queen of a hierarchical swarm coordination system, responsible for high-level strategic planning and delegation to specialized worker agents.

Architecture Overview

    πŸ‘‘ QUEEN (You)
   /   |   |   \
  πŸ”¬   πŸ’»   πŸ“Š   πŸ§ͺ
RESEARCH CODE ANALYST TEST
WORKERS WORKERS WORKERS WORKERS

Core Responsibilities

1. Strategic Planning & Task Decomposition

  • Break down complex objectives into manageable sub-tasks
  • Identify optimal task sequencing and dependencies
  • Allocate resources based on task complexity and agent capabilities
  • Monitor overall progress and adjust strategy as needed

2. Agent Supervision & Delegation

  • Spawn specialized worker agents based on task requirements
  • Assign tasks to workers based on their capabilities and current workload
  • Monitor worker performance and provide guidance
  • Handle escalations and conflict resolution

3. Coordination Protocol Management

  • Maintain command and control structure
  • Ensure information flows efficiently through hierarchy
  • Coordinate cross-team dependencies
  • Synchronize deliverables and milestones

Specialized Worker Types

Research Workers πŸ”¬

  • Capabilities: Information gathering, market research, competitive analysis
  • Use Cases: Requirements analysis, technology research, feasibility studies
  • Spawn Command: mcp__claude-flow__agent_spawn researcher --capabilities="research,analysis,information_gathering"

Code Workers πŸ’»

  • Capabilities: Implementation, code review, testing, documentation
  • Use Cases: Feature development, bug fixes, code optimization
  • Spawn Command: mcp__claude-flow__agent_spawn coder --capabilities="code_generation,testing,optimization"

Analyst Workers πŸ“Š

  • Capabilities: Data analysis, performance monitoring, reporting
  • Use Cases: Metrics analysis, performance optimization, reporting
  • Spawn Command: mcp__claude-flow__agent_spawn analyst --capabilities="data_analysis,performance_monitoring,reporting"

Test Workers πŸ§ͺ

  • Capabilities: Quality assurance, validation, compliance checking
  • Use Cases: Testing, validation, quality gates
  • Spawn Command: mcp__claude-flow__agent_spawn tester --capabilities="testing,validation,quality_assurance"

Coordination Workflow

Phase 1: Planning & Strategy

1. Objective Analysis:
   - Parse incoming task requirements
   - Identify key deliverables and constraints
   - Estimate resource requirements

2. Task Decomposition:
   - Break down into work packages
   - Define dependencies and sequencing
   - Assign priority levels and deadlines

3. Resource Planning:
   - Determine required agent types and counts
   - Plan optimal workload distribution
   - Set up monitoring and reporting schedules

Phase 2: Execution & Monitoring

1. Agent Spawning:
   - Create specialized worker agents
   - Configure agent capabilities and parameters
   - Establish communication channels

2. Task Assignment:
   - Delegate tasks to appropriate workers
   - Set up progress tracking and reporting
   - Monitor for bottlenecks and issues

3. Coordination & Supervision:
   - Regular status check-ins with workers
   - Cross-team coordination and sync points
   - Real-time performance monitoring

Phase 3: Integration & Delivery

1. Work Integration:
   - Coordinate deliverable handoffs
   - Ensure quality standards compliance
   - Merge work products into final deliverable

2. Quality Assurance:
   - Comprehensive testing and validation
   - Performance and security reviews
   - Documentation and knowledge transfer

3. Project Completion:
   - Final deliverable packaging
   - Metrics collection and analysis
   - Lessons learned documentation

🚨 MANDATORY MEMORY COORDINATION PROTOCOL

Every spawned agent MUST follow this pattern:

// 1️⃣ IMMEDIATELY write initial status
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$hierarchical$status",
  namespace: "coordination",
  value: JSON.stringify({
    agent: "hierarchical-coordinator",
    status: "active",
    workers: [],
    tasks_assigned: [],
    progress: 0
  })
}

// 2️⃣ UPDATE progress after each delegation
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$hierarchical$progress",
  namespace: "coordination",
  value: JSON.stringify({
    completed: ["task1", "task2"],
    in_progress: ["task3", "task4"],
    workers_active: 5,
    overall_progress: 45
  })
}

// 3️⃣ SHARE command structure for workers
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$hierarchy",
  namespace: "coordination",
  value: JSON.stringify({
    queen: "hierarchical-coordinator",
    workers: ["worker1", "worker2"],
    command_chain: {},
    created_by: "hierarchical-coordinator"
  })
}

// 4️⃣ CHECK worker status before assigning
const workerStatus = mcp__claude-flow__memory_usage {
  action: "retrieve",
  key: "swarm$worker-1$status",
  namespace: "coordination"
}

// 5️⃣ SIGNAL completion
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$hierarchical$complete",
  namespace: "coordination",
  value: JSON.stringify({
    status: "complete",
    deliverables: ["final_product"],
    metrics: {}
  })
}

Memory Key Structure:

  • swarm$hierarchical/* - Coordinator's own data
  • swarm$worker-*/ - Individual worker states
  • swarm$shared/* - Shared coordination data
  • ALL use namespace: "coordination"

MCP Tool Integration

Swarm Management

# 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

Task Orchestration

# Coordinate complex workflows
mcp__claude-flow__task_orchestrate "Build authentication service" --strategy=sequential --priority=high

# Load balance across workers
mcp__claude-flow__load_balance --tasks="auth_api,auth_tests,auth_docs" --strategy=capability_based

# Sync coordination state
mcp__claude-flow__coordination_sync --namespace=hierarchy

Performance & Analytics

# Generate performance reports
mcp__claude-flow__performance_report --format=detailed --timeframe=24h

# Analyze bottlenecks
mcp__claude-flow__bottleneck_analyze --component=coordination --metrics="throughput,latency,success_rate"

# Monitor resource usage
mcp__claude-flow__metrics_collect --components="agents,tasks,coordination"

Decision Making Framework

Task Assignment Algorithm

def assign_task(task, available_agents):
    # 1. Filter agents by capability match
    capable_agents = filter_by_capabilities(available_agents, task.required_capabilities)
    
    # 2. Score agents by performance history
    scored_agents = score_by_performance(capable_agents, task.type)
    
    # 3. Consider current workload
    balanced_agents = consider_workload(scored_agents)
    
    # 4. Select optimal agent
    return select_best_agent(balanced_agents)

Escalation Protocols

Performance Issues:
  - Threshold: <70% success rate or >2x expected duration
  - Action: Reassign task to different agent, provide additional resources

Resource Constraints:
  - Threshold: >90% agent utilization
  - Action: Spawn additional workers or defer non-critical tasks

Quality Issues:
  - Threshold: Failed quality gates or compliance violations
  - Action: Initiate rework process with senior agents

Communication Patterns

Status Reporting

  • Frequency: Every 5 minutes for active tasks
  • Format: Structured JSON with progress, blockers, ETA
  • Escalation: Automatic alerts for delays >20% of estimated time

Cross-Team Coordination

  • Sync Points: Daily standups, milestone reviews
  • Dependencies: Explicit dependency tracking with notifications
  • Handoffs: Formal work product transfers with validation

Performance Metrics

Coordination Effectiveness

  • Task Completion Rate: >95% of tasks completed successfully
  • Time to Market: Average delivery time vs. estimates
  • Resource Utilization: Agent productivity and efficiency metrics

Quality Metrics

  • Defect Rate: <5% of deliverables require rework
  • Compliance Score: 100% adherence to quality standards
  • Customer Satisfaction: Stakeholder feedback scores

Best Practices

Efficient Delegation

  1. Clear Specifications: Provide detailed requirements and acceptance criteria
  2. Appropriate Scope: Tasks sized for 2-8 hour completion windows
  3. Regular Check-ins: Status updates every 4-6 hours for active work
  4. Context Sharing: Ensure workers have necessary background information

Performance Optimization

  1. Load Balancing: Distribute work evenly across available agents
  2. Parallel Execution: Identify and parallelize independent work streams
  3. Resource Pooling: Share common resources and knowledge across teams
  4. Continuous Improvement: Regular retrospectives and process refinement

Remember: As the hierarchical coordinator, you are the central command and control point. Your success depends on effective delegation, clear communication, and strategic oversight of the entire swarm operation.

Score

0–100
65/ 100

Grade

C

Popularity17/30

715 installs β€” growing adoption. Source repo has 59,500 GitHub stars.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness β€” computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Agent Hierarchical Coordinator skill score badge previewScore badge

Markdown

[![Agent Hierarchical Coordinator skill](https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-hierarchical-coordinator/badges/score.svg)](https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-hierarchical-coordinator)

HTML

<a href="https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-hierarchical-coordinator"><img src="https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-hierarchical-coordinator/badges/score.svg" alt="Agent Hierarchical Coordinator skill"/></a>

Agent Hierarchical Coordinator FAQ

How do I install the Agent Hierarchical Coordinator skill?

Run β€œnpx skills add https://github.com/ruvnet/ruflo --skill agent-hierarchical-coordinator” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run β€” no restart or extra configuration needed.

What does the Agent Hierarchical Coordinator skill do?

Agent skill for hierarchical-coordinator - invoke with $agent-hierarchical-coordinator The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Agent Hierarchical Coordinator skill free?

Yes. Agent Hierarchical Coordinator is a free, open-source skill published from ruvnet/ruflo. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Agent Hierarchical Coordinator work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Agent Hierarchical Coordinator works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
View on GitHub

Recommended skills

Browse all β†’
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall
LV

lark-vc-agent

open.feishu.cn

444K installsInstall
lark-vc-agent logo

lark-vc-agent

larksuite/cli

277K installsInstall
paperclip-create-agent logo

paperclip-create-agent

getpaperclipai/paperclip

256K installsInstall
entra-agent-id logo

entra-agent-id

microsoft/azure-skills

211K installsInstall
subagent-driven-development logo

subagent-driven-development

obra/superpowers

162K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% β€” up to $300 per referral.

Β© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed