Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

game-scout游戏侦察员

Agent Skill

game-scout 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,951

周安装

168

GitHub Stars

公开资料未说明

下载量

1,384
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:game-scout(游戏侦察员)
来源仓库:https://github.com/rclark4958/game-scout
安装命令:
openclaw skills install game-scout
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install game-scout

简介

聚合多平台游戏策略、构建指南和元知识,提供深度情报支持。

  • 数据来源包括 Reddit、YouTube、Wiki、Twitter/X 和游戏数据库。
  • 适合玩家获取攻略、团队配置或版本更新信息。
  • 使用时需注意信息时效性和来源可靠性,交叉验证关键内容。
  • 建议结合用户具体游戏和版本进行精准检索。game-scout 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
game-scout
description
>-
version
0.1.0
metadata
{"openclaw":{"emoji":"🎮","requires":{"bins":["node","python3","yt-dlp"],"env":["EXA_API_KEY","BRIGHTDATA_API_KEY","BRIGHTDATA_ZONE"]},"install":[{"id":"yt-dlp","kind":"brew","formula":"yt-dlp","bins":["yt-dlp"],"label":"Install yt-dlp (brew)"}]}}

Game Tips — Multi-Source Research Pipeline

Deliver real, tested, actionable, current gaming insight by orchestrating parallel research across multiple sources. The goal is to replace hours of searching and watching content with a single, well-sourced answer that gives the player a competitive edge.

Available Scripts

ScriptWhat It Does
node {baseDir}/scripts/exa-search.mjs "query"Semantic web search via Exa AI (understands intent, handles negation)
node {baseDir}/scripts/exa-contents.mjs <url> [url2...]Extract clean text content from URLs
node {baseDir}/scripts/exa-similar.mjs <url>Find pages similar to a given URL
node {baseDir}/scripts/bright-scrape.mjs <url> [url2...]Scrape URLs to markdown via Bright Data (bypasses bot detection, great for Reddit)
node {baseDir}/scripts/bright-twitter.mjs <profile-or-post-url>Get Twitter/X posts via Bright Data
python3 {baseDir}/scripts/yt-transcript.py <youtube-url>Extract YouTube video transcript + metadata

Script Options Quick Reference

exa-search.mjs: -n 10 (results count), --domain reddit.com (limit to domain), --exclude bad.com, --after 2026-01-01 (date filter), --contents (include page text), --summary (include AI summary), --category tweet|news

exa-contents.mjs: Multiple URLs supported. --summary "question" for targeted summary.

exa-similar.mjs: -n 10, --domain, --after, --contents

bright-scrape.mjs: Multiple URLs supported. --country us for geo-targeting.

bright-twitter.mjs: Pass one or more tweet URLs. --timeout 60 (wait time in seconds). Collects by URL — find tweet URLs first via Exa search.

yt-transcript.py: --no-meta to skip metadata.


Phase 1 — Query Analysis

Before searching, analyze the user's question to determine the research strategy.

Identify These Elements

  1. Game: Exact title. Resolve abbreviations (PoE = Path of Exile, ER = Elden Ring, Val = Valorant, D2 = Destiny 2 or Diablo 2 depending on context, LoL = League of Legends, WoW = World of Warcraft, MH = Monster Hunter, FFXIV = Final Fantasy XIV).
  1. Topic Type:

- Build/Loadout: Weapon, armor, skill, talent, or gear combinations - Strategy/Guide: How to approach encounters, modes, or progression - Mechanic/Interaction: How a specific system, item, or ability works - Meta/Tier List: What's currently strongest or most popular - Patch/Balance: Recent changes and their impact - Pro Play/Esports: What competitive or high-level players are using

  1. Recency Requirements:

- Critical (live-service games with frequent patches): Must find current-patch info - Moderate (games with periodic updates): Recent info preferred, older is OK - Low (stable/single-player games): Evergreen guides are fine

  1. Scope:

- Narrow ("does X proc bleed?"): Target wiki/database, skip broad search - Broad ("best builds for class X"): Full pipeline

Decision Table

ScopeRecencyAction
Narrow + LowSkip to Phase 3: scrape relevant wiki directly
Narrow + CriticalPhase 2 (limited) + Phase 3: wiki + Reddit for patch confirmation
Broad + AnyFull pipeline: Phase 2 → 3 → 4 → 5

Phase 2 — Parallel Discovery

Cast a wide net. Run multiple search commands to discover the best sources.

Read references/search-strategies.md for game-specific query templates and community hub URLs.

A. Exa AI Semantic Search (2-3 queries)

Exa understands intent — phrase queries naturally. Run these in parallel:

# Primary search
node {baseDir}/scripts/exa-search.mjs "best [topic] for [game] [current patch/season]" -n 10 --after 2026-01-01

# Reddit-focused
node {baseDir}/scripts/exa-search.mjs "[game] [topic] discussion recommendations" -n 5 --domain reddit.com --after 2025-06-01

# YouTube video discovery
node {baseDir}/scripts/exa-search.mjs "[game] [topic] guide tutorial" -n 5 --domain youtube.com --after 2025-06-01

B. Twitter/X (recent community takes)

First find tweet URLs via Exa, then extract full data via Bright Data:

# Step 1: Find relevant tweets via Exa search
node {baseDir}/scripts/exa-search.mjs "[game] [topic] meta" --domain twitter.com -n 5

# Step 2: Extract full tweet data for the URLs found
node {baseDir}/scripts/bright-twitter.mjs "https://x.com/user/status/123" "https://x.com/user/status/456"

Evaluate Discovery Results

From all results, identify the best 5-8 sources to extract in depth:

  • Prefer recent content (check dates)
  • Prefer high-engagement Reddit threads
  • Prefer YouTube videos from known guide creators
  • Prefer wiki/database pages for factual/stat questions
  • Include at least 2 different source types for cross-referencing

Phase 3 — Deep Extraction

Go deep on the best sources. Run extraction commands for each source type.

Read references/source-extraction.md for detailed extraction patterns.

Reddit Threads

Use Bright Data scraper — it bypasses Reddit's bot detection. Prepend old. for cleaner scrapes:

node {baseDir}/scripts/bright-scrape.mjs "https://old.reddit.com/r/[sub]/comments/[id]/[slug]" "https://old.reddit.com/r/[sub]/comments/[id2]/[slug2]"

Focus on: OP content, top-voted comments, comments with specific data. Discard: jokes, deleted comments, tangents.

YouTube Videos

python3 {baseDir}/scripts/yt-transcript.py "https://www.youtube.com/watch?v=VIDEO_ID"

In the transcript, look for: section markers ("first/second/third"), build specifications, stat numbers, specific item/weapon names, caveats.

Fallback if no subtitles: scrape the YouTube page for description + comments:

node {baseDir}/scripts/bright-scrape.mjs "https://www.youtube.com/watch?v=VIDEO_ID"

Articles & Wiki Pages

Use Exa for clean extraction (works best on articles/wikis):

node {baseDir}/scripts/exa-contents.mjs "https://fextralife.com/..." "https://maxroll.gg/..." --summary "What build is recommended?"

For sites that block Exa, fall back to Bright Data:

node {baseDir}/scripts/bright-scrape.mjs "https://example.com/guide"

Context Management

Summarize extracted content as you go. For each source, distill to:

  • Key recommendations/findings
  • Specific data points (stats, percentages, item names)
  • Date/patch version
  • Source URL for attribution

Phase 4 — Synthesis & Validation

Cross-reference extracted information to deliver validated insights.

Cross-Reference Protocol

  1. Identify consensus: Do 3+ sources agree? That's high confidence.
  2. Spot conflicts: If sources disagree, note both perspectives and explain why (different patch versions, skill levels, game modes).
  3. Check recency: Is the advice from the current patch/season? If a source predates a relevant patch, flag it.
  4. Validate specifics: If a build claims specific stats, verify against wiki/database data when possible.

Confidence Assessment

LevelCriteria
HIGH3+ recent sources agree, current patch confirmed, community consensus
MEDIUM2 sources agree, or sources are slightly dated but no known nerfs/buffs
LOWSingle source, pre-patch info, or actively contested in community

Red Flags

  • Source is from a previous patch and the topic is affected by balance changes
  • Reddit thread has top comments disagreeing with OP
  • YouTube video has comments saying "this was nerfed"
  • Conflicting info between wiki and community — community is usually more current

Phase 5 — Structured Response

Deliver the answer in a format adapted to the query type.

Universal Structure

  1. TL;DR: One to three sentences with the direct answer
  2. The Details: Actionable specifics (build specs, step-by-step, tier placements)
  3. Why This Works: The underlying mechanic or synergy that makes it effective
  4. Caveats: Patch dependency, skill floor, mode-specific, rank-dependent considerations
  5. Sources: Numbered list with links, creator names, and dates
  6. Confidence: HIGH/MEDIUM/LOW with brief reasoning

Format by Query Type

Build/Loadout queries: Use a table or structured list with alternatives.

Meta/Tier list queries: Use S/A/B tier format with explanations per tier.

Mechanic/Interaction queries: Direct yes/no answer first, then detailed breakdown.

Strategy/Guide queries: Numbered step-by-step with reasoning per step.

See examples/sample-queries.md for full format examples of each type.


Fallbacks & Error Handling

If a script fails, degrade gracefully rather than abandoning the research.

Script FailingFallback
exa-searchUse summarize CLI if available, or ask user to provide URLs
bright-scrapeUse exa-contents for the same URLs
bright-twitterSearch Twitter via exa-search with --domain twitter.com --category tweet
yt-transcriptUse bright-scrape on the YouTube URL for description + comments
exa-contentsUse bright-scrape for the same URLs

If a search returns no relevant results, broaden the query or try alternative phrasing before giving up.


Reference Files

  • references/search-strategies.md — Read when formulating search queries. Contains game-specific community hubs, subreddit names, and query templates by topic type.
  • references/source-extraction.md — Read when extracting content from sources. Contains patterns for Reddit parsing, YouTube transcript processing, and wiki extraction.
  • references/game-databases.md — Read when the query involves specific game data or interactive build planners. Contains URLs and navigation hints per game.
  • examples/sample-queries.md — Read for calibration. Shows the full pipeline applied to four different query types.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.61%
按下载量换算1,282

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills