用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rongarede/skill-snapshots --skill web-fetch-fallback命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Technology scouting and evaluation for tools, frameworks, libraries, and technical approaches. Use when users need to evaluate technology options, compare frameworks, assess technical feasibility, scout emerging technologies, or make build-vs-buy decisions. Produces structured comparison matrices with objective criteria scoring.
使用 Semantic Scholar API 检索和验证学术论文。支持并发多关键词搜索、批量 ID/DOI 查询、引用分析、批量补全摘要、统一 Markdown 导出。覆盖 2.14 亿+ 学术论文,无需 API Key 即可使用。触发词:论文检索、论文验证、Semantic Scholar、S2 搜索、查论文、补全摘要、导出MD
中文/英文写作风格迁移与错误记忆工作流。适用于论文、学位论文、报告等场景,提供 style profile、error log、长期记忆与多智能体写作闭环。
基于 SOC 职业分类
| name | web-fetch-fallback |
| description | WebFetch 失败时的智能备选方案。触发词:/fetch、抓取网页、获取页面内容、WebFetch 失败 |
当 WebFetch 工具无法访问某些域名时,自动选择最优的备选抓取方式。
/fetch <url>bash ~/.claude/skills/web-fetch-fallback/scripts/fetch.sh <url> [method]
| URL 类型 | 首选方法 | 备选方法 |
|---|---|---|
| GitHub 仓库 | gh api 获取 README | curl |
| GitHub 文件 | gh api 获取内容 | curl |
| GitHub Issue/PR | gh issue/pr view | curl |
| 静态文档站 (*.github.io) | curl + pandoc | agent-browser |
| 博客/文章 | curl + pandoc | agent-browser |
| JS 渲染页面 | agent-browser | - |
| 一般网页 | curl + pandoc | agent-browser |
# GitHub 仓库 → 自动用 gh CLI
bash ~/.claude/skills/web-fetch-fallback/scripts/fetch.sh https://github.com/kevinheavey/anchor-bankrun
# 文档站点 → 自动用 curl + pandoc
bash ~/.claude/skills/web-fetch-fallback/scripts/fetch.sh https://kevinheavey.github.io/solana-bankrun/tutorial/
# 博客文章
bash ~/.claude/skills/web-fetch-fallback/scripts/fetch.sh https://www.helius.dev/blog/a-guide-to-testing-solana-programs
# 强制使用 gh CLI
bash ~/.claude/skills/web-fetch-fallback/scripts/fetch.sh https://github.com/user/repo gh
# 强制使用 curl
bash ~/.claude/skills/web-fetch-fallback/scripts/fetch.sh https://example.com curl
# 强制使用 agent-browser(需要 JS 渲染)
bash ~/.claude/skills/web-fetch-fallback/scripts/fetch.sh https://spa-site.com browser
| 工具 | 用途 | 安装方式 |
|---|---|---|
| gh | GitHub 内容抓取 | brew install gh |
| curl | HTTP 请求 | 系统自带 |
| pandoc | HTML → 纯文本 | brew install pandoc |
| html2text | HTML → 纯文本(备选) | brew install html2text |
| lynx | HTML → 纯文本(备选) | brew install lynx |
| agent-browser | JS 渲染页面 | 已配置 skill |
脚本自动读取 https_proxy 环境变量:
export https_proxy=http://127.0.0.1:7897
bash ~/.claude/skills/web-fetch-fallback/scripts/fetch.sh https://example.com
| 方案 | 优势 | 限制 |
|---|---|---|
| WebFetch | 简单快速,AI 直接处理 | 有域名黑名单 |
| web-fetch-fallback | 智能路由,无域名限制 | 需要本地工具 |
| agent-browser | 支持 JS 渲染,可交互 | 较慢,需启动浏览器 |
| WebSearch | 搜索摘要,无需原文 | 不返回完整内容 |