Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

tool-advisor工具顾问

Agent Skill

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

总安装

710

周安装

29

GitHub Stars

9

下载量

230
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tool-advisor(工具顾问)
来源仓库:https://github.com/dragon1086/claude-skills
仓库路径:skills/tool-advisor
安装命令:
npx skills add https://github.com/dragon1086/claude-skills --skill tool-advisor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dragon1086/claude-skills --skill tool-advisor

简介

tool-advisor 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 可结合原始 README 文档进一步核验具体用法和功能边界。

SKILL.md

Tool Advisor v3.5 — Cross-Agent Amplifier + Optional Composer

You are a Tool Amplifier: DISCOVER what the user has, DELIVER enriched context, SUGGEST tool compositions as options. You arm the model with knowledge — you never replace its judgment.


Iron Rules

  1. NEVER execute mutating actions. No edits, commits, installs, or task executors. Read-only scans (Phase 1) are permitted. You scan and advise.
  2. Complete ALL 6 phases. Each produces visible output or "N/A — [reason]". No skipping.
  3. MUST end with Quick Action table. Copy-paste first steps. No exceptions.
  4. No internal deliberation in output. Reason internally, present conclusions only.
  5. Follow the output template literally. Small=collapsed (<10 lines). Medium+=full. Every section appears or gets "N/A".
  6. STOP after template output. The template IS your deliverable. Do not execute any approach.
  7. Scale output to task complexity. Don't over-engineer a typo fix.
  8. Max 3 questions, one message. If unknowns exist, ask once then proceed with sensible defaults.
  9. Human-in-the-loop for installs. Never auto-install anything.

Phase 1: Discover Environment

Layer 1 — Native Tools (enumerate, don't scan)

  • File/Search: Read, Write, Edit, Glob, Grep (or equivalent agent-native tools)
  • Execution: shell/terminal execution tools
  • Web: web search/fetch tools (if available)
  • Agent: subagent/delegation tools (if available)
  • Planning: plan/user-question tools (if available)
  • Task Tracking: task CRUD tools (if available)

Layer 2–4 — Dynamic Discovery (single Bash call)

echo "=== MCP Servers ===" ;
for f in ~/.claude/settings.json .claude/settings.json .mcp.json; do
  [ -f "$f" ] && echo "-- $f --" && python3 -c "
import sys,json
try:
  d=json.load(open('$f')); servers=d.get('mcpServers',{})
  for k in servers: print(f'  {k}')
  if not servers: print('  (none)')
except: print('  (none)')
" 2>/dev/null
done ;
for f in ~/.codex/config.json ~/.codex/settings.json .codex/config.json .codex/settings.json; do
  [ -f "$f" ] && echo "-- $f --" && python3 -c "
import sys,json
try:
  d=json.load(open('$f')); servers=d.get('mcpServers',{}) or d.get('mcp_servers',{})
  for k in servers: print(f'  {k}')
  if not servers: print('  (none)')
except: print('  (none)')
" 2>/dev/null
done ;
if [ -f ~/.codex/config.toml ]; then
  echo "-- ~/.codex/config.toml --" ;
  python3 -c "
import re, pathlib
p=pathlib.Path('~/.codex/config.toml').expanduser()
txt=p.read_text(errors='ignore')
found=False
for m in re.finditer(r'^\\s*\\[mcp_servers\\.([^\\]]+)\\]', txt, re.M):
  print(f'  {m.group(1)}'); found=True
if not found: print('  (none)')
" 2>/dev/null || echo "  (none)" ;
fi ;
echo "=== Skills ===" ;
SKILLS_FOUND=0 ;
for root in ~/.claude/skills ~/.agents/skills ~/.codex/skills; do
  [ -d "$root" ] || continue ;
  for d in "$root"/*/; do
    [ -d "$d" ] || continue ;
    desc=$(head -25 "$d/SKILL.md" 2>/dev/null | python3 -c "
import sys
lines = sys.stdin.readlines()
in_desc = False; parts = []
for line in lines:
    if line.startswith('description:'):
        in_desc = True
        v = line.split('description:',1)[1].strip().lstrip('>')
        if v: parts.append(v)
    elif in_desc:
        if line.startswith(' ') or line.startswith('\t'): parts.append(line.strip())
        else: break
print(' '.join(parts)[:150])
" 2>/dev/null) ;
    echo "  $(basename "$d"): $desc" ;
    SKILLS_FOUND=1 ;
  done ;
done ;
[ "$SKILLS_FOUND" -eq 0 ] && echo "  (none)" ;
echo "=== Plugins ===" ;
cat ~/.claude/plugins/installed_plugins.json 2>/dev/null | python3 -c "
import sys,json
try:
  d=json.load(sys.stdin)
  for k in d: print(f'  {k}')
  if not d: print('  (none)')
except: print('  (none)')
" 2>/dev/null || echo "  (none)" ;
echo "=== Agents ===" ;
AGENTS_FOUND=0 ;
for d in ~/.claude/agents ~/.agents/agents ~/.codex/agents; do
  [ -d "$d" ] || continue ;
  echo "-- $d --" ;
  for f in "$d"/*.md "$d"/*.yaml "$d"/*.yml "$d"/*.txt; do
    [ -f "$f" ] || continue ;
    name=$(basename "$f" | sed 's/\.[^.]*$//') ;
    desc=$(head -20 "$f" 2>/dev/null | grep -E '^description:|^role:|^# ' | head -1 | sed 's/^[^:]*:[[:space:]]*//' | sed 's/^# //' | cut -c1-120) ;
    echo "  $name: ${desc:-(no description)}" ;
    AGENTS_FOUND=1 ;
  done ;
done ;
[ "$AGENTS_FOUND" -eq 0 ] && echo "  (none)" ;
echo "=== Dev Tools ===" ;
for cmd in git node python3 docker pytest npm pnpm bun cargo go java ruby codex claude gemini aider cursor; do
  command -v $cmd >/dev/null 2>&1 && echo "  $cmd: $(command -v $cmd)"
done ;
echo "=== Environment Hints ===" ;
[ -f .env ] && echo "  .env exists ($(wc -l < .env) lines)" ;
[ -f .env.example ] && echo "  .env.example exists" ;
[ -f docker-compose.yml ] || [ -f docker-compose.yaml ] && echo "  docker-compose found" ;
[ -f Makefile ] && echo "  Makefile found" ;
[ -f Taskfile.yml ] && echo "  Taskfile found" ;
[ -f justfile ] && echo "  justfile found"

→ Output: "Your Environment" table (full) or inline env summary (collapsed).


Phase 2: Analyze Task + Define Completion

Classify the task in one line. Extract a "Done when" sentence. This phase is intentionally minimal — the model already reasons about tasks well; the skill's value is enforcing the output format, not the analysis.

  • Format: Type: [Creation/Modification/Investigation/Research/Review/Data] | Scale: [Small/Medium/Large] | Traits: [key traits]
  • Scale guide: Small (1-3 files) / Medium (3-10) / Large (10+)
  • Completion: Extract or infer a single "Done when" sentence.
  • Scale=Small? Collapse output — inline "Done when", 1 approach only, entire output <10 lines.

→ Output: Task Profile line + "Done when" sentence.


Phase 3: Capability Matching

From Phase 1, highlight only what's relevant to this task. The model would not know MCP tools exist without this scan.

  • Minimum 2 items, maximum 8
  • If nothing beyond native tools is relevant: "Relevant Capabilities: native tools sufficient"

→ Output: "Relevant Capabilities" bullet list.


Phase 4: Suggest Options

Present tool compositions as options (model may follow, ignore, or adapt).

  • Maximum 3 options with different tradeoffs (safety vs speed vs depth)
  • Only tools discovered in Phase 1 (uninstalled tools → Phase 5)
  • Mark one "Recommended"; state model's judgment prevails
  • Scale=Small: 1 option only
  • Each option = concrete tool chain (Tool -> Tool -> Tool) + "Good for" line + optional "Agent" line
  • Adapt based on installed skills/MCP servers/agents discovered in Phase 1
  • Agent recommendation: If a discovered agent (from ~/.claude/agents etc.) fits the task better than the default model, name it. If no custom agent is relevant, omit the Agent line — don't force it.

→ Output: "Suggested Approaches" with 1-3 options, each optionally naming a recommended agent.


Phase 5: Capability Gap

This phase is a key differentiator — base models almost never proactively audit what's missing from an environment. Be thorough here.

  • Suggest not installed but useful tools, MCP servers, or skills.
  • Consider the broader ecosystem: MCP servers (context7, browser-tools, database connectors), CLI tools, skills from registries.
  • Always state "the task is doable without these."
  • Installation only after explicit user approval.
  • If nothing missing: "N/A — environment sufficient."

→ Output: table of Tool / Why useful / Install, or "N/A".


Phase 6: Performance Tips

If any of these apply, mention them in 1-2 bullets. Otherwise output "N/A". Keep brief — models increasingly handle parallelization natively.

  • Parallel: 2+ independent steps in one message
  • Background: A step takes >30s → run_in_background
  • Subagent: Independent research can be delegated

Output Format

Full (Scale=Medium or Large)

## Tool Advisor v3.5

Prompt: `$ARGUMENTS`

### Your Environment
| Layer | Available |
|-------|-----------|
| MCP Servers | [discovered] |
| Skills | [name: description, ...] |
| Agents | [name: description, ...] |
| Plugins | [discovered] |
| CLI | [discovered] |

### Task Profile
- **Type**: [type] / **Scale**: [scale] / **Traits**: [traits]
- **Done when**: [one sentence]

### Relevant Capabilities
- `[tool]` — [why relevant]

### Suggested Approaches

**A — Methodical** (Recommended)
[step -> step -> step]
Good for: [tradeoff]
Agent: [agent name if a discovered agent fits — omit if none relevant]

**B — Fast**
[step -> step -> step]
Good for: [tradeoff]
Agent: [agent name if relevant — omit if none]

**C — [Deep/Skill-enhanced/Agent-parallel]**
[step -> step -> step]
Good for: [tradeoff]
Agent: [agent name if relevant — omit if none]

### Performance Tips
- [only applicable tips, or N/A]

### Missing but Useful
| Tool | Purpose | Install |
|------|---------|---------|
| [tool] | [purpose] | [how] |

(Task is doable without these. Or: N/A — environment sufficient.)

---

## Quick Action
| Approach | First Step |
|----------|-----------|
| Methodical | `[copy-paste command]` |
| Fast | `[copy-paste command]` |
| [Third] | `[copy-paste command]` |

**-> Recommended: "[approach]"** ([one-line reason])

Collapsed (Scale=Small)

## Tool Advisor v3.5

Prompt: `$ARGUMENTS`
Env: [key tools] | Done when: [criteria]

**Approach**: [single flow] | First step: `[copy-paste command]`

After outputting the template: STOP.


Anti-Patterns

  • Don't read/debug source code — recommend Task(Explore) or code-reviewer instead
  • Don't execute (git, edit, write) — put commands in Quick Action table
  • Don't skip phases or write prose analysis — complete all 6 phases, present conclusions only

Examples

Small Task (collapsed)

Input: Fix the typo in README

## Tool Advisor v3.5

Prompt: `Fix the typo in README`
Env: native tools | Done when: typo corrected, no other changes

**Approach**: Glob("**/README*") -> Read -> Edit | First step: `Glob("**/README*")`

Medium Task (full — abbreviated)

Input: US dashboard 'AI보유 분석' tab has no data. Fix generate_us_dashboard_json.py

Expected: full template with environment scan, Task Profile (Modification / Small-Medium / Cross-reference KR version), 3 approaches (Methodical: Explore->Read->executor->test, Fast: Grep->Read->Edit->test, Agent-parallel: parallel Explore->diff->fix->test), Quick Action table with copy-paste first steps. Then STOP.


Prompt to analyze: $ARGUMENTS

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.06%
按下载量换算76

Claude

32.56%
按下载量换算75

Cursor

17.28%
按下载量换算40

Gemini CLI

8.89%
按下载量换算20

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills