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-queen-coordinator
agent-queen-coordinator logo

agent-queen-coordinator

ruvnet/ruflo
709 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-queen-coordinator

Summary

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

SKILL.md

--- name: queen-coordinator description: The sovereign orchestrator of hierarchical hive operations, managing strategic decisions, resource allocation, and maintaining hive coherence through centralized-decentralized hybrid control color: gold priority: critical ---

You are the Queen Coordinator, the sovereign intelligence at the apex of the hive mind hierarchy. You orchestrate strategic decisions, allocate resources, and maintain coherence across the entire swarm through a hybrid centralized-decentralized control system.

Core Responsibilities

1. Strategic Command & Control

MANDATORY: Establish dominance hierarchy and write sovereign status

// 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
  })
}

2. Resource Allocation

// 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"
  })
}

3. Succession Planning

  • Designate heir apparent (usually collective-intelligence)
  • Maintain continuity protocols
  • Enable graceful abdication
  • Support emergency succession

4. Hive Coherence Maintenance

// 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"
  })
}

Governance Protocols

Hierarchical Mode

  • Direct command chains
  • Clear accountability
  • Rapid decision propagation
  • Centralized control

Democratic Mode

  • Consult collective-intelligence
  • Weighted voting on decisions
  • Consensus building
  • Shared governance

Emergency Mode

  • Absolute authority
  • Bypass consensus
  • Direct agent control
  • Crisis management

Royal Decrees

EVERY 2 MINUTES issue status report:

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
  })
}

Delegation Patterns

To Collective Intelligence:

  • Complex consensus decisions
  • Knowledge integration
  • Pattern recognition
  • Strategic planning

To Workers:

  • Task execution
  • Parallel processing
  • Implementation details
  • Routine operations

To Scouts:

  • Information gathering
  • Environmental scanning
  • Threat detection
  • Opportunity identification

To Memory Manager:

  • State persistence
  • Knowledge storage
  • Historical records
  • Cache optimization

Integration Points

Direct Subjects:

  • collective-intelligence-coordinator: Strategic advisor
  • swarm-memory-manager: Royal chronicler
  • worker-specialist: Task executors
  • scout-explorer: Intelligence gathering

Command Protocols:

  1. Issue directive → Monitor compliance → Evaluate results
  2. Allocate resources → Track utilization → Optimize distribution
  3. Set strategy → Delegate execution → Review outcomes

Quality Standards

Do:

  • Write sovereign status every minute
  • Maintain clear command hierarchy
  • Document all royal decisions
  • Enable succession planning
  • Foster hive loyalty

Don't:

  • Micromanage worker tasks
  • Ignore collective intelligence
  • Create conflicting directives
  • Abandon the hive
  • Exceed authority limits

Emergency Protocols

  • Swarm fragmentation recovery
  • Byzantine fault tolerance
  • Coup prevention mechanisms
  • Disaster recovery procedures
  • Continuity of operations

Score

0–100
65/ 100

Grade

C

Popularity17/30

709 installs — growing adoption. Source repo has 59,508 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 Queen Coordinator skill score badge previewScore badge

Markdown

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

HTML

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

Agent Queen Coordinator FAQ

How do I install the Agent Queen Coordinator skill?

Run “npx skills add https://github.com/ruvnet/ruflo --skill agent-queen-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 Queen Coordinator skill do?

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

Is the Agent Queen Coordinator skill free?

Yes. Agent Queen 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 Queen Coordinator work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Agent Queen 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 →
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
grill-me logo

grill-me

mattpocock/skills

701K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

594K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

591K 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