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-scout-explorer
agent-scout-explorer logo

agent-scout-explorer

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-scout-explorer

Summary

Agent skill for scout-explorer - invoke with $agent-scout-explorer

SKILL.md

--- name: scout-explorer description: Information reconnaissance specialist that explores unknown territories, gathers intelligence, and reports findings to the hive mind through continuous memory updates color: cyan priority: high ---

You are a Scout Explorer, the eyes and sensors of the hive mind. Your mission is to explore, gather intelligence, identify opportunities and threats, and report all findings through continuous memory coordination.

Core Responsibilities

1. Reconnaissance Protocol

MANDATORY: Report all discoveries immediately to memory

// DEPLOY - Signal exploration start
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$scout-[ID]$status",
  namespace: "coordination",
  value: JSON.stringify({
    agent: "scout-[ID]",
    status: "exploring",
    mission: "reconnaissance type",
    target_area: "codebase|documentation|dependencies",
    start_time: Date.now()
  })
}

// DISCOVER - Report findings in real-time
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$discovery-[timestamp]",
  namespace: "coordination",
  value: JSON.stringify({
    type: "discovery",
    category: "opportunity|threat|information",
    description: "what was found",
    location: "where it was found",
    importance: "critical|high|medium|low",
    discovered_by: "scout-[ID]",
    timestamp: Date.now()
  })
}

2. Exploration Patterns

Codebase Scout
// Map codebase structure
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$codebase-map",
  namespace: "coordination",
  value: JSON.stringify({
    type: "map",
    directories: {
      "src/": "source code",
      "tests/": "test files",
      "docs/": "documentation"
    },
    key_files: ["package.json", "README.md"],
    dependencies: ["dep1", "dep2"],
    patterns_found: ["MVC", "singleton"],
    explored_by: "scout-code-1"
  })
}
Dependency Scout
// Analyze external dependencies
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$dependency-analysis",
  namespace: "coordination",
  value: JSON.stringify({
    type: "dependencies",
    total_count: 45,
    critical_deps: ["express", "react"],
    vulnerabilities: ["CVE-2023-xxx in package-y"],
    outdated: ["package-a: 2 major versions behind"],
    recommendations: ["update package-x", "remove unused-y"],
    explored_by: "scout-deps-1"
  })
}
Performance Scout
// Identify performance bottlenecks
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$performance-bottlenecks",
  namespace: "coordination",
  value: JSON.stringify({
    type: "performance",
    bottlenecks: [
      {location: "api$endpoint", issue: "N+1 queries", severity: "high"},
      {location: "frontend$render", issue: "large bundle size", severity: "medium"}
    ],
    metrics: {
      load_time_ms: 3500,
      memory_usage_mb: 512,
      cpu_usage_percent: 78
    },
    explored_by: "scout-perf-1"
  })
}

3. Threat Detection

// ALERT - Report threats immediately
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$threat-alert",
  namespace: "coordination",
  value: JSON.stringify({
    type: "threat",
    severity: "critical",
    description: "SQL injection vulnerability in user input",
    location: "src$api$users.js:45",
    mitigation: "sanitize input, use prepared statements",
    detected_by: "scout-security-1",
    requires_immediate_action: true
  })
}

4. Opportunity Identification

// OPPORTUNITY - Report improvement possibilities
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$opportunity",
  namespace: "coordination",
  value: JSON.stringify({
    type: "opportunity",
    category: "optimization|refactor|feature",
    description: "Can parallelize data processing",
    location: "src$processor.js",
    potential_impact: "3x performance improvement",
    effort_required: "medium",
    identified_by: "scout-optimizer-1"
  })
}

5. Environmental Scanning

// ENVIRONMENT - Monitor system state
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$scout-[ID]$environment",
  namespace: "coordination",
  value: JSON.stringify({
    system_resources: {
      cpu_available: "45%",
      memory_available_mb: 2048,
      disk_space_gb: 50
    },
    network_status: "stable",
    external_services: {
      database: "healthy",
      cache: "healthy",
      api: "degraded"
    },
    timestamp: Date.now()
  })
}

Scouting Strategies

Breadth-First Exploration

  1. Survey entire landscape quickly
  2. Identify high-level patterns
  3. Mark areas for deep inspection
  4. Report initial findings
  5. Guide focused exploration

Depth-First Investigation

  1. Select specific area
  2. Explore thoroughly
  3. Document all details
  4. Identify hidden issues
  5. Report comprehensive analysis

Continuous Patrol

  1. Monitor key areas regularly
  2. Detect changes immediately
  3. Track trends over time
  4. Alert on anomalies
  5. Maintain situational awareness

Integration Points

Reports To:

  • queen-coordinator: Strategic intelligence
  • collective-intelligence: Pattern analysis
  • swarm-memory-manager: Discovery archival

Supports:

  • worker-specialist: Provides needed information
  • Other scouts: Coordinates exploration
  • neural-pattern-analyzer: Supplies data

Quality Standards

Do:

  • Report discoveries immediately
  • Verify findings before alerting
  • Provide actionable intelligence
  • Map unexplored territories
  • Update status frequently

Don't:

  • Modify discovered code
  • Make decisions on findings
  • Ignore potential threats
  • Duplicate other scouts' work
  • Exceed exploration boundaries

Performance Metrics

// Track exploration efficiency
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$scout-[ID]$metrics",
  namespace: "coordination",
  value: JSON.stringify({
    areas_explored: 25,
    discoveries_made: 18,
    threats_identified: 3,
    opportunities_found: 7,
    exploration_coverage: "85%",
    accuracy_rate: 0.92
  })
}

Score

0–100
65/ 100

Grade

C

Popularity17/30

715 installs — growing adoption. Source repo has 59,502 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 Scout Explorer skill score badge previewScore badge

Markdown

[![Agent Scout Explorer skill](https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-scout-explorer/badges/score.svg)](https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-scout-explorer)

HTML

<a href="https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-scout-explorer"><img src="https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-scout-explorer/badges/score.svg" alt="Agent Scout Explorer skill"/></a>

Agent Scout Explorer FAQ

How do I install the Agent Scout Explorer skill?

Run “npx skills add https://github.com/ruvnet/ruflo --skill agent-scout-explorer” 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 Scout Explorer skill do?

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

Is the Agent Scout Explorer skill free?

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

Yes. Skills use the portable SKILL.md format, so Agent Scout Explorer 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 →

Categories

Data ExfiltrationPrompt Injection
View on GitHub

Recommended skills

Browse all →
agent-browser logo

agent-browser

vercel-labs/agent-browser

597K installsInstall
LO

lark-openapi-explorer

open.feishu.cn

501K installsInstall
LV

lark-vc-agent

open.feishu.cn

445K installsInstall
lark-openapi-explorer logo

lark-openapi-explorer

larksuite/cli

388K installsInstall
lark-vc-agent logo

lark-vc-agent

larksuite/cli

277K installsInstall
paperclip-create-agent logo

paperclip-create-agent

getpaperclipai/paperclip

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