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

faugustdev faugustdev
from GitHub Data & AI
  • 📁 examples/
  • 📁 references/
  • 📁 scripts/
  • 📄 .gitignore
  • 📄 CONTRIBUTING.md
  • 📄 LICENSE

gcc

Git Context Controller (GCC) v2 — Lean agent memory backed by real git. Stores hash + intent + optional decision notes instead of verbose markdown. Auto-bridges to aiyoucli vector memory when available. Dual mode: git-backed (lean index.yaml) or standalone (markdown fallback). Triggers on /gcc commands or natural language like 'commit this progress', 'branch to try an alternative', 'merge results', 'recover context'.

0 37 11 days ago · Uploaded Detail →
Ricardo-Ping Ricardo-Ping
from GitHub Tools & Productivity
  • 📁 .github/
  • 📁 agents/
  • 📁 config/
  • 📄 .gitignore
  • 📄 README.md
  • 📄 SKILL.md

agent-daily-paper

支持用户按一个或多个研究领域订阅 arXiv 最新论文,按重要性排序并以中英双语卡片形式推送(英文标题/中文标题/英文摘要/中文摘要/arXiv 链接)。支持每领域独立数量上限(5-20)、关键词高亮、NEW/UPDATED 版本标识、Markdown 存档,以及定时推送与即时推送双路径。首次使用时先完成订阅配置;领域可由 Agent 画像 JSON 自动补全英文名、关键词与会议列表。

0 15 5 days ago · Uploaded Detail →
RebeccaStevenson RebeccaStevenson
from GitHub Docs & Knowledge
  • 📁 agents/
  • 📁 config/
  • 📁 references/
  • 📄 SKILL.md

marker-convert

Convert PDFs to markdown, JSON, or HTML using the Marker CLI. Use when the user wants to convert PDF content into text-based formats (markdown, HTML, JSON), mentions "marker" or "marker_single", or asks to batch-convert a folder of PDFs into readable text. Handles single-file and batch-folder conversion, resuming interrupted runs, LLM-enhanced output, and conversion state/error log review.

0 13 6 days ago · Uploaded Detail →
ultimatile ultimatile
from GitHub Docs & Knowledge
  • 📁 arxiv_doc_builder/
  • 📁 references/
  • 📄 pyproject.toml
  • 📄 SKILL.md

arxiv-doc-builder

Automatically convert arXiv papers to well-structured Markdown documentation. Invoke with an arXiv ID to fetch materials (LaTeX source or PDF), convert to Markdown, and generate implementation-ready reference documentation with preserved mathematics and section structure.

0 15 10 days ago · Uploaded Detail →
pickle-an pickle-an
from GitHub Docs & Knowledge
  • 📄 create_preview.py
  • 📄 create_template.py
  • 📄 markdown_normalizer.py

md-to-docx

将 Markdown 文件转换为格式化的 Word 文档。当用户想要将 .md 转换为 .docx、从 Markdown 创建 Word 文档或提及文档转换时调用此技能。

0 13 9 days ago · Uploaded Detail →
wictorwilen wictorwilen
from GitHub Docs & Knowledge
  • 📄 SKILL.md

mrsf-review

Review Markdown documents using the MRSF (Sidemark) sidecar format. Use when asked to review, comment on, or provide feedback on Markdown files. Adds structured, anchored review comments via the MRSF MCP server.

0 12 12 days ago · Uploaded Detail →
lyhue1991 lyhue1991
from GitHub Docs & Knowledge
  • 📄 SKILL.md

wxgzh

微信公众号文章发布工具。使用 wxgzh CLI 将 Markdown 文章发布到公众号草稿箱。触发场景:用户要发公众号文章、配置公众号 AppID/AppSecret、生成封面图、Markdown 转 HTML、多账号管理。

0 9 7 days ago · Uploaded Detail →
michellewkx michellewkx
from GitHub Docs & Knowledge
  • 📁 scripts/
  • 📄 SKILL.md

inkpress

Convert Markdown to WeChat Official Account HTML with beautiful themes. Supports 20+ built-in themes across 5 series (Classic, Tech, Oriental, Magazine, Social). Use when user asks to "排版", "微信排版", "format article", "格式化文章", "inkpress", "convert markdown", "主题预览", or "theme".

0 10 11 days ago · Uploaded Detail →
mblode mblode
from GitHub Content & Multimedia
  • 📁 references/
  • 📄 SKILL.md

allmd

Converts content to clean markdown. Supports web pages, Google Docs, PDFs, images, videos, audio files, YouTube videos, Word docs, EPUBs, CSVs, PowerPoints, tweets, and RSS feeds. Use when the user wants to convert a URL or file to markdown, extract text from a PDF or image, transcribe a video or audio file, save a web article, export a Google Doc, or get a YouTube transcript.

0 8 12 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