Daily Featured Skills Count
4,753 4,784 4,818 4,870 4,909 4,940 4,951
04/30 05/01 05/02 05/03 05/04 05/05 05/06
♾️ Free & Open Source 🛡️ Secure & Worry-Free

Import Skills

haolange haolange
from GitHub Development & Coding
  • 📁 agents/
  • 📄 SKILL.md

rdc-analyst

Public main skill for the incubating analyzer framework. Use when the user wants to analyze captures, reconstruct pass/resource relationships, infer engine or material structure, or build reusable render knowledge instead of directly debugging a defect. This skill is the future entry for analyzer requests and currently provides the minimum intake contract only.

0 12 1 month ago · Uploaded Detail →
intervalrain intervalrain
from GitHub Ops & Delivery
  • 📄 SKILL.md

ado-task-sync

Sync Azure DevOps work items with git commit history. Analyzes commits, matches to work items, and proposes state updates. Use for daily task sync or sprint status updates.

0 12 1 month ago · Uploaded Detail →
kakashi-ventures kakashi-ventures
from GitHub Data & AI
  • 📄 SKILL.md

discovery-engine

Core methodology for AI-powered scientific hypothesis generation. Auto-loaded when discovering connections, generating hypotheses, exploring cross-disciplinary links. Includes facet recombination, adversarial prompting, evolutionary refinement, groundedness checking, and hypothesis card format.

0 12 1 month ago · Uploaded Detail →
d-padmanabhan d-padmanabhan
from GitHub Tools & Productivity
  • 📁 references/
  • 📄 SKILL.md

agent-workflow

Structured development workflow with Plan/Implement/Review phases, QA validation, context management, and audit requirements. Enforces no remote writes, mandatory checkpoints, and verifiable audit reports. Use when working on complex tasks, multi-file changes, or when the user mentions planning, workflow, implementing features, or needs structured development guidance.

0 12 1 month ago · Uploaded Detail →
flc1125 flc1125
from GitHub Tools & Productivity
  • 📁 agents/
  • 📁 references/
  • 📄 README.md
  • 📄 SKILL.md

async

Launch and coordinate Codex subagents as deferred tasks. Use when the user wants to start bounded subagent work now, keep the main thread moving without waiting by default, then later join, collect, or redirect that work through a stable task reference.

0 12 1 month ago · Uploaded Detail →
KybernesisAI KybernesisAI
from GitHub Databases & Storage
  • 📄 SKILL.md

backup

Back up all agent data to GitHub — SQLite databases, Claude Code memory, identity, skills, brain notes. Use when the user says backup, back up, save everything, push to github, or snapshot. Also used by heartbeat for automated backups.

0 12 1 month ago · Uploaded Detail →
terrene-foundation terrene-foundation
from GitHub Development & Coding
  • 📄 async-pythoncode-patterns.md
  • 📄 async-resource-safety.md
  • 📄 async-workflow-patterns.md

core-sdk

Kailash Core SDK fundamentals including workflow creation, node patterns, connections, runtime execution, parameter passing, error handling, cyclic workflows, async patterns, MCP integration, and installation. Use when asking about 'workflow basics', 'core sdk', 'create workflow', 'workflow builder', 'node patterns', 'connections', 'runtime', 'parameters', 'imports', 'installation', 'getting started', 'workflow execution', 'async workflows', 'error handling', 'cyclic workflows', 'PythonCode node', 'SwitchNode', or 'MCP integration'. Also covers observability: 'OpenTelemetry', 'OTel', 'tracing', 'TracingLevel', 'WorkflowTracer', 'node instrumentation', 'NodeInstrumentor', 'database instrumentation', 'Prometheus metrics', 'MetricsBridge', 'KAILASH_TRACING_LEVEL', or 'span attributes'.

0 12 1 month ago · Uploaded Detail →
tomcounsell tomcounsell
from GitHub Tools & Productivity
  • 📄 SKILL.md

add-feature

Use when adding a new feature, skill, tool, or MCP server to the Valor system. Triggered by 'add a feature', 'create a new tool', 'extend the system', or 'how do I add...'.

0 12 1 month ago · Uploaded Detail →
kintopp kintopp
from GitHub Tools & Productivity
  • 📁 references/
  • 📄 SKILL.md

rijksmuseum-mcp

Research workflows for the Rijksmuseum MCP+ server. Use this skill whenever the user wants to search the Rijksmuseum collection, look up artwork details, explore iconographic themes, inspect high-resolution images, trace provenance, browse curated sets, or answer any art-historical question that could be addressed through the Rijksmuseum's holdings of ~832,000 artworks.

0 12 1 month ago · Uploaded Detail →
weNix901 weNix901
from GitHub Tools & Productivity
  • 📁 references/
  • 📁 scripts/
  • 📄 SKILL.md

curious-agent

Curious Agent 接入工具包。When an agent needs to check its knowledge confidence on a topic, trigger active exploration, sync discoveries, or share new findings with the user. Covers: (1) confidence checking before answering, (2) injecting topics for exploration, (3) syncing exploration results to memory, (4) proactive sharing of new discoveries. Trigger scenarios: user asks a question, agent wants to check its knowledge boundary, agent wants to explore a topic proactively.

0 12 1 month 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