Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

trusted-skill-scout值得信赖的技能侦察员

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

2

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:trusted-skill-scout(值得信赖的技能侦察员)
来源仓库:https://github.com/maverickemanuel/trusted-skill-scout
仓库路径:skills/trusted-skill-scout
安装命令:
npx skills add https://github.com/maverickemanuel/trusted-skill-scout --skill trusted-skill-scout
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/maverickemanuel/trusted-skill-scout --skill trusted-skill-scout

简介

trusted-skill-scout 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 GitHub 安装,需结合原始 README 核验具体用法和权限边界。
  • 安装前建议确认维护状态及是否会触发联网、命令执行或文件读写。
  • 注意该技能当前分类为研究检索,功能以实际文档为准。

SKILL.md

Trusted Skill Scout

Find high-signal skills for the current repository, filter by trust policy, collect user selections, and install deterministically.

Core Behavior

Follow this flow in order. Do not skip gates.

  1. Ask install scope before discovery (default: project-only), then state what this skill does.
  2. Profile the repo (parallel sub-agents when available).
  3. Generate 6-10 repo-aware discovery queries.
  4. Run discovery queries sequentially with npx skills find.
  5. Enrich candidates with trust metadata.
  6. Apply trust filter.
  7. Rank, present compact cards, and collect keep selections (interactive multi-select when available).
  8. Build final shortlist and ask install confirmation.
  9. Install selected skills sequentially with deterministic commands.
  10. Verify and report results.

Step 0: Ask Scope First

Call the Question tool exactly once at the beginning:

Question: "Install approved skills as Global or Project-only? (default: Project-only)"

After the user responds, state the purpose clearly in one line before proceeding:

What this skill does: discovers repo-relevant skills, applies a trust gate, and installs only the skills you explicitly approve.

Rules:

  • If the user does not answer explicitly or says "default", use Project-only.
  • Persist this choice for all install commands in this run.
  • Do not run any discovery steps before the user has answered this question.

Step 1: Profile Repository

Preferred mode: parallel sub-agents

If the Task tool is available, spawn sub-agents in parallel:

  • Sub-agent A: stack and runtime detection (languages, frameworks, package managers).
  • Sub-agent B: workflow detection (test, lint, build, deploy, CI, release).
  • Sub-agent C: product intent and priorities (README, docs, issues, architecture clues).

Collect and merge into a single repo profile:

  • stack: key technologies
  • workflows: key engineering workflows
  • goals: likely user goals and pain points
  • constraints: notable constraints (legacy, monorepo, compliance, etc.)

Fallback mode: serial profiling

If sub-agents are unavailable, run the same profiling dimensions serially.

Step 2: Generate Discovery Queries (6-10)

Generate 6-10 specific queries based on the repo profile.

Good query dimensions:

  • framework best practices
  • testing and QA
  • deployment and CI/CD
  • architecture/refactoring
  • performance and observability
  • domain-specific workflows (auth, payments, data pipelines, mobile release, etc.)

Do not use a fixed redesign-only query list.

Step 3: Run Discovery One Query at a Time

Critical: Do NOT batch or parallelize the bash calls. Run one query, present results to the user, collect their selection via the Question tool, then move to the next query.

For each query, the sequence is:

  1. Run: npx skills find "<query>"
  2. Apply trust filter (Step 5) and fit scoring (Step 6) to the results.
  3. Present the ranked cards for that query (see Step 7).
  4. Call the Question tool to collect the user's selection before running the next query.
  5. Repeat for the next query.

From each command output, extract candidate rows with:

  • owner/repo@skill_name
  • installs (if present)
  • skills.sh URL

Normalization rules:

  • Strip ANSI color escape sequences before parsing.
  • Parse installs as an integer; K/M suffixes should be converted to absolute values (e.g. 8.1K8100).
  • If installs missing, set installs to 0.

Step 4: Enrich Candidate Metadata

For each candidate, collect:

  • owner
  • repo
  • skill_name (the exact token after @ from discovery output)
  • skills_url
  • installs
  • stars
  • owner_type if available

Recommended enrichment order:

  1. Fetch skills_url and parse repository link and stars.
  2. If stars still missing, query GitHub repo metadata.

If stars missing after enrichment, set stars to 0.

Step 5: Trust Filter (Hard Gate)

Use policy from references/trust-policy.md.

A candidate is eligible only if at least one is true:

  • owner is allowlisted
  • installs >= 100
  • stars >= 500

Missing installs/stars count as 0 unless allowlisted. Candidates that fail are excluded from user options.

Step 6: Fit Scoring and Ranking

Use rubric from references/scoring-rubric.md.

Score each eligible candidate across:

  • Stack Fit (1-5)
  • Expected Impact (1-5)
  • Overlap Risk (1-5; lower is better)
  • Implementation Clarity (1-5)

Compute:

  • overlap_bonus = 6 - overlap_risk
  • fit_total = stack_fit + expected_impact + overlap_bonus + implementation_clarity (max 20)

Verdict:

  • Strong fit if fit_total >= 15
  • Maybe if fit_total >= 11
  • otherwise exclude

Sort with tie-breakers (if fit is equal, prioritize popularity):

  1. fit_total desc
  2. installs desc
  3. stars desc
  4. owner/repo asc
  5. skill_name asc

Step 7: Present Per-Query Options

For each query, show only trust-eligible candidates as compact cards.

Display count rules:

  • Show up to 4 ranked candidates per query.
  • Target 3-4 options when available.
  • If fewer than 3 are eligible, show all eligible options.

Card format (use this exact layout every time, no variation):

[N] owner/repo@skill_name
Installs: <count> | Stars: <count>
Fit: <fit_total>/20 | Verdict: <Strong fit | Maybe>
Why: <one line repo-specific rationale>
Agent recommendation: <Keep | Skip> — <short reason>
  • Always show the raw parsed counts on the Installs/Stars line, even if one is 0.
  • Do not add a separate Trust line — the numbers speak for themselves.

After presenting all cards for the query, call the Question tool:

Question: "Query N/total — Select skills to keep (e.g. 1,3 or none):"

After receiving the answer, echo a deterministic record line before moving on:

Selection recorded: Keep: 1,3

or if nothing selected:

Selection recorded: Keep: none

Selection rules:

  • Accept only indices shown for that query.
  • Do not proceed to the next query until the user has answered.

Step 8: Final Shortlist

After all queries:

  • dedupe selections by (owner, repo, skill_name)
  • provide overlap/conflict notes
  • propose a best bundle (usually 3-5 complementary skills)
  • call the Question tool for the final gate:
Question: "Install these now? (Yes / Revise list)"

Proceed only if the user answers Yes or equivalent confirmation. If they say Revise, ask which skills to add or remove and update the shortlist before asking again.

Step 9: Install Sequentially (Deterministic)

Install each selected skill sequentially.

Project-only scope:

npx skills add <owner/repo> --skill "<skill_name>" -y

Global scope:

npx skills add <owner/repo> --skill "<skill_name>" -g -y

If one install fails:

  • log failure
  • continue remaining installs
  • provide exact retry command for failed item

Step 10: Verify and Report

Verification commands:

  • Project-only: npx skills list
  • Global: npx skills ls -g
  • Update health: npx skills check

Return final report:

  • installed successfully
  • failed installs with likely cause
  • retry commands
  • optional maintenance command: npx skills update

Output Template

Use concise sections:

  1. Scope
  • selected scope
  • whether default was used
  • one-line purpose statement shown to user
  1. Repo Profile
  • stack
  • workflows
  • goals
  1. Query N Results
  • ranked eligible cards (up to 4 per query)
  • one explicit agent recommendation per card
  • Question tool call for user selection before next query
  1. Final Shortlist
  • deduped list
  • overlap notes
  • recommended bundle
  • install confirmation prompt
  1. Installation Report
  • per-skill result
  • verification summary
  • next maintenance command

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.01%
按下载量换算33

Claude

30.68%
按下载量换算30

Cursor

20.05%
按下载量换算20

Gemini CLI

9.76%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/maverickemanuel/trusted-skill-scout --skill trusted-skill-scout 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills