Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

godfetchgodfetch 搜索

Agent Skill

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

总安装

624

周安装

25

GitHub Stars

4

下载量

202
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/trancong12102/agentskills --skill godfetch

简介

godfetch 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于信息检索和筛选任务。
  • 通过关键词、任务场景或来源线索快速定位候选结果。
  • 安装命令:npx skills add https://github.com/trancong12102/agentskills --skill godfetch。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

SKILL.md

godfetch

Unified external research — look up library documentation, search source code in any git repository, and check package versions from a single skill.

Routing

IntentPrimary toolFallback
Library docs, API referencecontext7WebSearch for niche/undocumented libs
Changelogs, breaking changescontext7gh api contents for CHANGELOG.md
Code in public git reposgit-clone + shell toolsgh search code for exact matches
GitHub issuesgh issue view <N>gh search issues for discovery
GitHub PRsgh pr view <N>gh search prs for discovery
Single GitHub file (known path)gh api repos/.../contents/<path>git-clone + shell tools
Package version, deprecationdeps-devnpm view for npm-only metadata
npm package info (non-version)npm view <pkg> (Bash)WebSearch for community sentiment
General web lookupWebSearch → WebFetch
Comparison / decisioncontext7 + WebSearchgit-clone + shell tools for usage

For mixed requests, launch all relevant tools in parallel. Cloning is I/O-bound — start git-clone in the background and run context7/WebSearch concurrently to mask clone latency.

GitHub access rules

Do not use WebFetch on github.com or raw.githubusercontent.com URLs — use the right tool:

GitHub contentUseNever
Source code (exploration)git-clone + shell toolsbrowsing files via gh api contents
Source file (known path)gh api repos/.../contents/<path>WebFetch raw.githubusercontent.com
Issuesgh issue view <N> --repo owner/repoWebFetch github.com/.../issues/N
Pull requestsgh pr view <N> --repo owner/repoWebFetch github.com/.../pull/N
Issue/PR searchgh search issues "q" --repo...WebFetch github.com/issues?q=...
CHANGELOG.mdcontext7 or gh api contentsWebFetch blob/ or raw URLs

Search discipline

  • deps-dev for versions: when checking latest version, deprecation, or comparing installed vs latest — always use deps-dev first. Only fall back to npm view or WebSearch if deps-dev errors or the package is private.
  • Context7 first: for any library with >1K GitHub stars, try context7 before WebSearch.

context7 — Library Documentation

Two-step workflow via the official ctx7 CLI. Requires ctx7 login once (no API key env var).

Step 1: Resolve library ID

bunx ctx7@latest library <name> [query]

Lists library candidates with their Context7 IDs (e.g. /websites/react_dev), trust scores, and snippet counts. The optional [query] re-ranks results by relevance — pass it whenever you already know the topic. Add --json for machine-readable output.

Step 2: Fetch documentation

bunx ctx7@latest docs <libraryId> "<query>"

Returns markdown snippets ranked by relevance. Add --json for structured output. If the first answer is shallow or off-topic, retry with --research — it spins up sandboxed agents that read the source repo and run a live web search, at higher cost.

Rules:

  • One-time setup: bunx ctx7@latest login (interactive). Verify with bunx ctx7@latest whoami.
  • Always resolve the library ID first — IDs are not guessable.
  • Write specific queries — "useState hook with objects" beats "hooks". The query drives relevance ranking on both commands.
  • Use --research only as a retry when the default answer was insufficient, not by default — it's slower and more expensive.

Reference: references/context7.md

git-clone — Source Code Exploration

Shallow-clone any public git repo into a local cache and explore the working tree with shell tools. Cache lives at ~/.cache/clio-repos/ and is reused across sessions.

bash scripts/git-clone.sh <repo> [--branch X] [--refresh]

The script echoes the absolute path of the cached clone. Subsequent calls for the same repo return the cached path instantly (no re-clone).

Repo argument forms:

  • owner/repo — GitHub shortcut (e.g. vercel/next.js)
  • Full HTTPS URL — works for any host (https://gitlab.com/..., https://gitlab.jmango360.com/...)
  • SSH form — git@host:path (requires SSH key configured)

Parallelization: clone is I/O-bound (1-3s for small/medium repos). When researching a topic that needs both docs and source code, dispatch the clone and context7/WebSearch in parallel — by the time docs return, the clone is ready to explore.

Rules:

  • Do not read script source code. Run with --help for usage.
  • Default cache is ~/.cache/clio-repos/; override with --cache-dir when needed.
  • Caches are reused — pass --refresh only when you need the latest commit.
  • For one-off file fetches by exact path, prefer gh api repos/.../contents/<path> — no clone overhead.

deps-dev — Package Versions

Query latest stable versions from public registries. No API key needed.

python3 scripts/get-versions.py <system> <pkg1> [pkg2] ...

Supported ecosystems:

EcosystemSystem IDExample
npmnpmexpress, @types/node
PyPIpypirequests, django
Gogogithub.com/gin-gonic/gin
Cargocargoserde, tokio
Mavenmavenorg.springframework:spring-core
NuGetnugetNewtonsoft.Json
RubyGemsrubygemsrails, sidekiq

Output: TSV with columns package, version, published, status.

Rules:

  • Do not read script source code. Run directly or use --help.
  • Batch lookups when possible — pass multiple package names in one call.
  • Flag deprecated packages — if status says deprecated, suggest an alternative.

Reference: references/deps-dev.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.35%
按下载量换算77

Claude

31.29%
按下载量换算63

Cursor

19.02%
按下载量换算38

Gemini CLI

9.18%
按下载量换算19

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills