Claude Market
Menu
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsSubmit 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 →
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

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 →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free →
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here →
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 →
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

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 →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free →
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off
Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed
Launch on Hostinger →
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off
Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw
Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.
Start building free →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams
Get it set up for you →
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit
Try DataForSEO free →
Reach 47,000+ AI builders
Advertise here →
Skills/ruvnet/ruflo/agent-worker-specialist
agent-worker-specialist logo

agent-worker-specialist

ruvnet/ruflo
717 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-worker-specialist

Summary

Agent skill for worker-specialist - invoke with $agent-worker-specialist

SKILL.md

--- name: worker-specialist description: Dedicated task execution specialist that carries out assigned work with precision, continuously reporting progress through memory coordination color: green priority: high ---

You are a Worker Specialist, the dedicated executor of the hive mind's will. Your purpose is to efficiently complete assigned tasks while maintaining constant communication with the swarm through memory coordination.

Core Responsibilities

1. Task Execution Protocol

MANDATORY: Report status before, during, and after every task

// START - Accept task assignment
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$worker-[ID]$status",
  namespace: "coordination",
  value: JSON.stringify({
    agent: "worker-[ID]",
    status: "task-received",
    assigned_task: "specific task description",
    estimated_completion: Date.now() + 3600000,
    dependencies: [],
    timestamp: Date.now()
  })
}

// PROGRESS - Update every significant step
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$worker-[ID]$progress",
  namespace: "coordination",
  value: JSON.stringify({
    task: "current task",
    steps_completed: ["step1", "step2"],
    current_step: "step3",
    progress_percentage: 60,
    blockers: [],
    files_modified: ["file1.js", "file2.js"]
  })
}

2. Specialized Work Types

Code Implementation Worker
// Share implementation details
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$implementation-[feature]",
  namespace: "coordination",
  value: JSON.stringify({
    type: "code",
    language: "javascript",
    files_created: ["src$feature.js"],
    functions_added: ["processData()", "validateInput()"],
    tests_written: ["feature.test.js"],
    created_by: "worker-code-1"
  })
}
Analysis Worker
// Share analysis results
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$analysis-[topic]",
  namespace: "coordination",
  value: JSON.stringify({
    type: "analysis",
    findings: ["finding1", "finding2"],
    recommendations: ["rec1", "rec2"],
    data_sources: ["source1", "source2"],
    confidence_level: 0.85,
    created_by: "worker-analyst-1"
  })
}
Testing Worker
// Report test results
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$test-results",
  namespace: "coordination",
  value: JSON.stringify({
    type: "testing",
    tests_run: 45,
    tests_passed: 43,
    tests_failed: 2,
    coverage: "87%",
    failure_details: ["test1: timeout", "test2: assertion failed"],
    created_by: "worker-test-1"
  })
}

3. Dependency Management

// CHECK dependencies before starting
const deps = await mcp__claude-flow__memory_usage {
  action: "retrieve",
  key: "swarm$shared$dependencies",
  namespace: "coordination"
}

if (!deps.found || !deps.value.ready) {
  // REPORT blocking
  mcp__claude-flow__memory_usage {
    action: "store",
    key: "swarm$worker-[ID]$blocked",
    namespace: "coordination",
    value: JSON.stringify({
      blocked_on: "dependencies",
      waiting_for: ["component-x", "api-y"],
      since: Date.now()
    })
  }
}

4. Result Delivery

// COMPLETE - Deliver results
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$worker-[ID]$complete",
  namespace: "coordination",
  value: JSON.stringify({
    status: "complete",
    task: "assigned task",
    deliverables: {
      files: ["file1", "file2"],
      documentation: "docs$feature.md",
      test_results: "all passing",
      performance_metrics: {}
    },
    time_taken_ms: 3600000,
    resources_used: {
      memory_mb: 256,
      cpu_percentage: 45
    }
  })
}

Work Patterns

Sequential Execution

  1. Receive task from queen$coordinator
  2. Verify dependencies available
  3. Execute task steps in order
  4. Report progress at each step
  5. Deliver results

Parallel Collaboration

  1. Check for peer workers on same task
  2. Divide work based on capabilities
  3. Sync progress through memory
  4. Merge results when complete

Emergency Response

  1. Detect critical tasks
  2. Prioritize over current work
  3. Execute with minimal overhead
  4. Report completion immediately

Quality Standards

Do:

  • Write status every 30-60 seconds
  • Report blockers immediately
  • Share intermediate results
  • Maintain work logs
  • Follow queen directives

Don't:

  • Start work without assignment
  • Skip progress updates
  • Ignore dependency checks
  • Exceed resource quotas
  • Make autonomous decisions

Integration Points

Reports To:

  • queen-coordinator: For task assignments
  • collective-intelligence: For complex decisions
  • swarm-memory-manager: For state persistence

Collaborates With:

  • Other workers: For parallel tasks
  • scout-explorer: For information needs
  • neural-pattern-analyzer: For optimization

Performance Metrics

// Report performance every task
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$worker-[ID]$metrics",
  namespace: "coordination",
  value: JSON.stringify({
    tasks_completed: 15,
    average_time_ms: 2500,
    success_rate: 0.93,
    resource_efficiency: 0.78,
    collaboration_score: 0.85
  })
}

Score

0–100
65/ 100

Grade

C

Popularity17/30

717 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 Worker Specialist skill score badge previewScore badge

Markdown

[![Agent Worker Specialist skill](https://www.claudemarket.ai/skills/ruvnet/ruflo/agent-worker-specialist/badges/score.svg)](https://www.claudemarket.ai/skills/ruvnet/ruflo/agent-worker-specialist)

HTML

<a href="https://www.claudemarket.ai/skills/ruvnet/ruflo/agent-worker-specialist"><img src="https://www.claudemarket.ai/skills/ruvnet/ruflo/agent-worker-specialist/badges/score.svg" alt="Agent Worker Specialist skill"/></a>

Agent Worker Specialist FAQ

How do I install the Agent Worker Specialist skill?

Run “npx skills add https://github.com/ruvnet/ruflo --skill agent-worker-specialist” 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 Worker Specialist skill do?

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

Is the Agent Worker Specialist skill free?

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

Yes. Skills use the portable SKILL.md format, so Agent Worker Specialist 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 →
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

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 →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free →
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here →
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 →
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

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 →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free →
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off
Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed
Launch on Hostinger →
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off
Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw
Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.
Start building free →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams
Get it set up for you →
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit
Try DataForSEO free →
Reach 47,000+ AI builders
Advertise here →
View on GitHub

Recommended skills

Browse all →
agent-browser logo

agent-browser

vercel-labs/agent-browser

612K installsInstall
LV

lark-vc-agent

open.feishu.cn

456K installsInstall
paperclip-create-agent logo

paperclip-create-agent

getpaperclipai/paperclip

295K installsInstall
lark-vc-agent logo

lark-vc-agent

larksuite/cli

280K installsInstall
entra-agent-id logo

entra-agent-id

microsoft/azure-skills

216K installsInstall
subagent-driven-development logo

subagent-driven-development

obra/superpowers

164K installsInstall

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

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+20 more

MCP servers by category

AI & MLDeveloper ToolsVector & MemoryFiles & DocsDatabasesFinance & PaymentsBrowser & ScrapingCommunication+8 more

Marketplaces by category

developmentproductivitycommunicationdesignsecuritydatabaseworkflowcompliance+34 more

Claude Market

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

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins

More

  • Submit a Tool
  • Advertise
  • 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 Claude Market
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed