Daily Featured Skills Count
3,840 3,909 3,920 3,927 3,966 4,007 4,027
04/06 04/07 04/08 04/09 04/10 04/11 04/12
♾️ Free & Open Source 🛡️ Secure & Worry-Free

Import Skills

114514ggb 114514ggb
from GitHub Docs & Knowledge
  • 📄 SKILL.md

web-research-expert

指导如何高效使用 web_search 和 web_extract 工具进行网络资料查找、深度阅读与信息整合当用户要求“搜索一下”、“查资料”、“总结网页”、“了解最新动态”时触发 --- # 标准操作指南 你的目标是利用 `web_search` 和 `web_extract` 这两个工具,以**最少的 Token 消耗、最精准的方式**为用户获取高质量信息 ## 🛠️ 工具核心认知 你有两个核心武器,请严格按照它们的定位使用: 1. **`web_search` (广度扫描)**:用于寻找线索、获取最新资讯或快速回答 - **绝招**:利用 `time_range` 或 `days` 找最新消息;利用 `include_domains` 在特定网站(如 github.com, zhihu.com)内定向搜索 - **捷径**:如果只需要网页的粗略内容,直接开启 `include_raw_content: true`,通常可以省去后续调用 `web_extract` 的步骤 2. **`web_extract` (深度挖掘)**:用于精准提取长文章、深度报告或复杂网页的核心内容 - **绝招**:**永远不要把整个长网页无脑塞进上下文!** 如果你只关心网页中的特定问题,**必须**使用 `query` 参数,并配合 `chunks_per_source`(建议设为 3-5),让工具只返回最相关的片段 - **注意**:只有当 `web_search` 的摘要信息不足以回答用户问题时,才挑选 1-3 个最有价值的 URL 使用此工具 --- ## 📋 高效检索标准工作流 (SOP) 处理用户的搜索需求时,请遵循以下 4 步流程: ### 第一步:需求拆解与策略制定 - 分析用户需要的是“时效性信息”(如今天的新闻)、“特定站点信息”(如某公司的财报),还是“通用知识” - 确定搜索关键词(建议拆分为多个精准的 query) ### 第二步:执行广度搜索 (`web_search`) - 根据策略调用 `web_search` - **参数配置建议**: - 找新闻:`topic: "news"`, `time_range: "w"` (近一周) - 找特定网站内容:`include_domains: ["example.com"]` - 需要直接看内容:`include_raw_content: true`, `max_results: 5`(减少数量以防 Token 溢出) ### 第三步:评估与深度提取 (`web_extract`) - 阅读 `web_search` 返回的 Snippet(摘要)如果信息已经足够回答,**直接跳到第四步** - 如果信息不足,挑选 1-3 个最权威、最相关的 URL 调用 `web_extract` - **高阶技巧**:如果网页很长(如维基百科、官方文档),**务必**在 `web_extract` 中传入 `query` 参数(例如 `query: "2023年Q3营收数据"`),强制工具进行智能分块和重排序,只提取你需要的精准片段 ### 第四步:信息交叉验证与输出 - 综合所有获取到的信息进行总结 - **强制要求**:在回答中必须使用 Markdown 链接格式标注信息来源,例如:`[来源](URL)`如果不同来源信息有冲突,需客观指出 --- ## 💡 典型场景参数模板 (Cheat Sheet) 遇到以下场景时,请直接参考这些参数组合: **场景 A:用户问“今天 AI 圈有什么大新闻?”** - 工具:`web_search` - 参数:`topic: "news"`, `time_range: "d"`, `max_results: 10` **场景 B:用户问“帮我总结一下这个 Github 项目的 README:[URL]”** - 工具:`web_extract` - 参数:`urls: ["[URL]"]`, `extract_depth: "basic"`, `format: "markdown"` **场景 C:用户问“在苹果官网查一下 iPhone 15 Pro 的钛金属材质说明”** - 动作 1:`web_search` -> `query: "iPhone 15 Pro 钛金属"`, `include_domains: ["apple.com"]` - 动作 2:拿到具体 URL 后,调用 `web_extract` -> `urls: [URL]`, `query: "钛金属 材质 制造工艺"` (精准提取,忽略其他无关参数) --- **⚠️ 最终警告:** 1. 不要为了搜索而搜索,如果你的内在知识足以完美且准确地回答(且不需要最新数据),

0 34 12 days ago · Uploaded Detail →
ZaptainZ ZaptainZ
from GitHub Docs & Knowledge
  • 📄 scrapling_fetch.py
  • 📄 SKILL.md

web-extract

从任意 URL 提取干净正文(Markdown 格式)。三层降级策略:Jina Reader → Scrapling + html2text → web_fetch。触发关键词:「抓取网页」「提取正文」「读取文章」「网页内容」「fetch article」「extract web」「读取 URL」「抓文章」「web extract」「网页提取」。当用户给出一个 URL 并要求获取/阅读/提取其内容时自动触发。

0 23 10 days ago · Uploaded Detail →
swyxio swyxio
from GitHub Content & Multimedia
  • 📄 README.md
  • 📄 SKILL.md

download-video

Downloads embedded videos from web pages. Fetches the page, identifies the video hosting service (Vimeo, YouTube, etc.), resolves the correct embed/player URL, and downloads using yt-dlp. Handles private/unlisted videos that require referer headers or embed URLs. Use this skill when someone says "download this video", "save this video", "grab the video from this page", "rip this video", or provides a URL and asks to download media from it. Also trigger when someone pastes a URL to a page with an embedded video and wants the video file locally.

0 21 10 days ago · Uploaded Detail →
NikitaDmitryuk NikitaDmitryuk
from GitHub Content & Multimedia
  • 📁 screenshots/
  • 📄 CHANGELOG.md
  • 📄 clawhub.json
  • 📄 README.md

tms

Manage downloads via Telegram Media Server (TMS) REST API — add by URL (video/magnet/torrent URL) or torrent_base64 (.torrent bytes), list, delete, search torrents.

0 17 11 days ago · Uploaded Detail →

Skill File Structure Sample (Reference)

skill-sample/
├─ SKILL.md              ⭐ Required: skill entry doc (purpose / usage / examples / deps)
├─ manifest.sample.json  ⭐ Recommended: machine-readable metadata (index / validation / autofill)
├─ LICENSE.sample        ⭐ Recommended: license & scope (open source / restriction / commercial)
├─ scripts/
│  └─ example-run.py     ✅ Runnable example script for quick verification
├─ assets/
│  ├─ example-formatting-guide.md  🧩 Output conventions: layout / structure / style
│  └─ example-template.tex         🧩 Templates: quickly generate standardized output
└─ references/           🧩 Knowledge base: methods / guides / best practices
   ├─ example-ref-structure.md     🧩 Structure reference
   ├─ example-ref-analysis.md      🧩 Analysis reference
   └─ example-ref-visuals.md       🧩 Visual reference

More Agent Skills specs Anthropic docs: https://agentskills.io/home

SKILL.md Requirements

├─ ⭐ Required: YAML Frontmatter (must be at top)
│  ├─ ⭐ name                 : unique skill name, follow naming convention
│  └─ ⭐ description          : include trigger keywords for matching
│
├─ ✅ Optional: Frontmatter extension fields
│  ├─ ✅ license              : license identifier
│  ├─ ✅ compatibility        : runtime constraints when needed
│  ├─ ✅ metadata             : key-value fields (author/version/source_url...)
│  └─ 🧩 allowed-tools        : tool whitelist (experimental)
│
└─ ✅ Recommended: Markdown body (progressive disclosure)
   ├─ ✅ Overview / Purpose
   ├─ ✅ When to use
   ├─ ✅ Step-by-step
   ├─ ✅ Inputs / Outputs
   ├─ ✅ Examples
   ├─ 🧩 Files & References
   ├─ 🧩 Edge cases
   ├─ 🧩 Troubleshooting
   └─ 🧩 Safety notes

Why SkillWink?

Skill files are scattered across GitHub and communities, difficult to search, and hard to evaluate. SkillWink organizes open-source skills into a searchable, filterable library you can directly download and use.

We provide keyword search, version updates, multi-metric ranking (downloads / likes / comments / updates), and open SKILL.md standards. You can also discuss usage and improvements on skill detail pages.

Keyword Search Version Updates Multi-Metric Ranking Open Standard Discussion

Quick Start:

Import/download skills (.zip/.skill), then place locally:

~/.claude/skills/ (Claude Code)

~/.codex/skills/ (Codex CLI)

One SKILL.md can be reused across tools.

FAQ

Everything you need to know: what skills are, how they work, how to find/import them, and how to contribute.

1. What are Agent Skills?

A skill is a reusable capability package, usually including SKILL.md (purpose/IO/how-to) and optional scripts/templates/examples.

Think of it as a plugin playbook + resource bundle for AI assistants/toolchains.

2. How do Skills work?

Skills use progressive disclosure: load brief metadata first, load full docs only when needed, then execute by guidance.

This keeps agents lightweight while preserving enough context for complex tasks.

3. How can I quickly find the right skill?

Use these three together:

  • Semantic search: describe your goal in natural language.
  • Multi-filtering: category/tag/author/language/license.
  • Sort by downloads/likes/comments/updated to find higher-quality skills.

4. Which import methods are supported?

  • Upload archive: .zip / .skill (recommended)
  • Upload skills folder
  • Import from GitHub repository

Note: file size for all methods should be within 10MB.

5. How to use in Claude / Codex?

Typical paths (may vary by local setup):

  • Claude Code:~/.claude/skills/
  • Codex CLI:~/.codex/skills/

One SKILL.md can usually be reused across tools.

6. Can one skill be shared across tools?

Yes. Most skills are standardized docs + assets, so they can be reused where format is supported.

Example: retrieval + writing + automation scripts as one workflow.

7. Are these skills safe to use?

Some skills come from public GitHub repositories and some are uploaded by SkillWink creators. Always review code before installing and own your security decisions.

8. Why does it not work after import?

Most common reasons:

  • Wrong folder path or nested one level too deep
  • Invalid/incomplete SKILL.md fields or format
  • Dependencies missing (Python/Node/CLI)
  • Tool has not reloaded skills yet

9. Does SkillWink include duplicates/low-quality skills?

We try to avoid that. Use ranking + comments to surface better skills:

  • Duplicate skills: compare differences (speed/stability/focus)
  • Low quality skills: regularly cleaned up