Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

repo-scout回购侦察员

Agent Skill

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

总安装

3,378

周安装

138

GitHub Stars

公开资料未说明

下载量

1,082
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install repo-scout

简介

回购侦察员用于发现、评估与排名特定领域的 GitHub 仓库。

  • 输出包含星级、语言与问题健康度的结构化列表。
  • 通过 clawhub 安装后,输入领域关键词即可生成榜单。
  • 排名依据公开数据,可能存在滞后。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • repo-scout 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
repo-scout
description
Discover, evaluate, and rank GitHub repositories in any ecosystem or domain. Produces a structured ranking document with star counts, languages, issue health, and contribution friendliness scores. Use when scouting for open-source projects to contribute to, evaluating technology options, doing competitive analysis, or exploring a new ecosystem.

Repo Scout — Repository Discovery & Ranking

Overview

Systematically discover and rank GitHub repositories in a given ecosystem. Produces a structured, actionable ranking document.

Use cases: Open-source contribution targeting, technology landscape surveys, competitive analysis, ecosystem exploration.

Prerequisites

Before starting, the user must have GitHub CLI authenticated:

gh auth status   # Must show "Logged in"

If not configured, ask the user to provide:

  1. GitHub username — for searching and attribution
  2. GitHub token — run gh auth login or set export GH_TOKEN=<token>

Without auth, gh API calls will hit rate limits quickly and private repo data won't be accessible.

Workflow

Step 1: Define Scope

Ask the user for (with sensible defaults):

ParameterDefaultExample
Ecosystem keyword(s)*(required)*"AI agent", "LLM tools", "Kubernetes"
Target count15top 15 by stars
Minimum stars5,000Filter out small repos
Language filter*(any)*Python, TypeScript
Additional criteria*(none)*"must have bug label issues"

Step 2: Search & Collect

Use multiple search strategies to find candidates:

Search strategies:
1. GitHub search: "{keyword}" sorted by stars
2. "awesome-{keyword}" curated lists
3. GitHub trending in the domain
4. Web search for "{keyword} top open-source projects {year}"

For each candidate repository, collect:

Data PointHow to Get
Star countGitHub API / web
Primary languageGitHub API
Last commit dateGitHub API
Open issue countGitHub API
Bug-labeled issuesgh issue list --label bug --state open --limit 5
good first issue countGitHub search
CONTRIBUTING.md exists?Check repo root
CI configured?Check .github/workflows/
PR template exists?Check .github/PULL_REQUEST_TEMPLATE.md
LicenseGitHub API

Step 3: Score & Rank

Score each repository on a contribution friendliness scale:

FactorWeightScoring
Actionable bug issues30%3=many clear bugs, 1=none
Activity (recent commits)20%3=daily, 2=weekly, 1=monthly+
Contribution docs15%3=CONTRIBUTING+template, 2=partial, 1=none
CI/CD health15%3=green CI, 2=partial, 1=none
Community size (stars)10%3=>50K, 2=>10K, 1=>5K
Response time to PRs10%3=<3d, 2=<7d, 1=>7d

Step 4: Filter Out

Mark repositories to skip if:

  • Non-code repo (awesome-lists, documentation-only, resource collections)
  • Desktop/mobile UI bugs requiring hardware access
  • No actionable bug issues (only feature requests or stale issues)
  • Archived or unmaintained (no commits in 6+ months)
  • Hostile contribution environment (PRs routinely ignored)

Step 5: Produce Ranking Document

Write {workspace}/ecosystem-top{N}.md:

# {Ecosystem} — Top {N} Repositories

> Generated: {date}
> Keywords: {keywords}
> Minimum stars: {min_stars}

## Rankings

| Rank | Repository | Stars | Language | Open Bugs | Score | Notes |
|------|-----------|-------|----------|-----------|-------|-------|
| 1 | owner/repo | 45.2K | Python | 12 | 8.5/10 | Active, good docs |
| 2 | ... | ... | ... | ... | ... | ... |

## Skipped Repositories

| Repository | Reason |
|-----------|--------|
| owner/repo | Non-code (awesome-list) |

## Detailed Profiles

### 1. owner/repo (45.2K ⭐)
- **Language**: Python
- **Last commit**: 2 days ago
- **Open issues**: 234 (12 labeled `bug`)
- **CONTRIBUTING.md**: ✅
- **CI**: ✅ GitHub Actions
- **Score breakdown**: Activity 3/3, Bugs 3/3, Docs 2/3, CI 3/3, Community 2/3, Response 2/3
- **Notes**: Very active, welcoming community

Output

  • {workspace}/ecosystem-top{N}.md — Structured ranking document ready for downstream use

Tips

  • When used as part of a contribution campaign, the output feeds directly into the issue-hunter skill for issue analysis.
  • For technology evaluation, the ranking + detailed profiles are the final deliverable.
  • Re-run periodically to catch ecosystem changes.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.28%
按下载量换算771

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills