Daily Featured Skills Count
3,966 4,007 4,057 4,100 4,138 4,176 4,197
04/10 04/11 04/12 04/13 04/14 04/15 04/16
♾️ Free & Open Source 🛡️ Secure & Worry-Free

Import Skills

olaxbt olaxbt
from GitHub Tools & Productivity
  • 📄 manifest.json
  • 📄 SKILL.md

ai-market-maker

Operate and explain a **multi-agent trading workflow** with a **hard Risk Guard veto** before execution. Prefer **structured traces** (`thought_process`, proposals, veto) for transparency—aligned with the Nexus dashboard and `schema/agent_trace.json`.

0 164 16 days ago · Uploaded Detail →
oh-my-mermaid oh-my-mermaid
from GitHub Tools & Productivity
  • 📄 SKILL.md

omm-push

Push architecture docs to oh-my-mermaid cloud. Handles login, link, and push workflow with error guidance. Use when the user says "omm push", "push to cloud", "deploy architecture", or "share architecture".

0 158 14 days ago · Uploaded Detail →
web-infra-dev web-infra-dev
from GitHub Tools & Productivity
  • 📄 SKILL.md

android-device-automation

Vision-driven Android device automation using Midscene. Operates entirely from screenshots — no DOM or accessibility labels required. Can interact with all visible elements on screen regardless of technology stack. Control Android devices with natural language commands via ADB. Perform taps, swipes, text input, app launches, screenshots, and more.

0 155 14 days ago · Uploaded Detail →
yellow-hammer yellow-hammer
from GitHub Tools & Productivity
  • 📄 SKILL.md

1c-platform-tools-config

Конфигурации запуска (env.json, launch.json). Используй, когда пользователь просит открыть env.json, launch.json, настройки запуска проекта, отредактировать конфигурацию запуска.

0 138 9 days ago · Uploaded Detail →
DAAF-Contribution-Community DAAF-Contribution-Community
from GitHub Tools & Productivity
  • 📁 references/
  • 📄 SKILL.md

agent-authoring

Guide for creating new DAAF agent definition files with full ecosystem integration. Use when adding a new specialized agent, revising agent structure, or verifying agent integration completeness across documentation. --- # Agent Authoring Create new DAAF agents that conform to the canonical template and are fully wired into the system documentation for discoverability and usability. ## What This Skill Does - Guides creation of agent `.md` files conforming to `agent_reference/AGENT_TEMPLATE.md` (12 mandatory sections) - Ensures cross-agent consistency (standardized confidence model, Learning Signal, STOP format, etc.) - Provides a **complete integration checklist** covering every file that references agents across the codebase to ensure it is discoverable and its invocation patterns are well-understood by the system agents - Complements `skill-authoring`: this skill handles the behavioral protocol file; if the new agent also needs a companion skill, invoke `skill-authoring` separately ## Decision Tree: What Do You Need? ``` What are you doing? │ ├─ Creating a brand-new agent │ └─ Follow "New Agent Workflow" below │ ├─ Revising an existing agent to match the template │ └─ Read: references/template-walkthrough.md │ + agent_reference/AGENT_TEMPLATE.md (the canonical blueprint) │ ├─ Checking if an agent is fully integrated into the ecosystem │ └─ Read: references/integration-checklist.md │ ├─ Understanding what must be identical across all agents │ └─ Read: references/cross-agent-standards.md │ └─ Understanding the current agent landscape before adding to it └─ Read: agents/README.md (Agent Index + "Commonly Confused Pairs") ``` ## New Agent Workflow ### Phase 1: Design (before writing) Before beginning, you MUST have a clear, coherent, and compelling answer to each of the following questions: 1. **Define the role** in one sentence — what does this agent do and why does it exist? 2. **Identify pipeline stage(s)** — which stage(s) does it operate in, or i

0 157 15 days ago · Uploaded Detail →
elevenlabs elevenlabs
from GitHub Tools & Productivity
  • 📁 references/
  • 📄 SKILL.md

agents

Build voice AI agents with ElevenLabs. Use when creating voice assistants, customer service bots, interactive voice characters, or any real-time voice conversation experience.

0 152 13 days ago · Uploaded Detail →
clawplays clawplays
from GitHub Tools & Productivity
  • 📁 .github/
  • 📁 .ospec/
  • 📁 agents/
  • 📄 .gitignore
  • 📄 LICENSE
  • 📄 package-lock.json

ospec

Document-driven OSpec workflow for AI-assisted development with change-ready initialization, execution, validation, and archive readiness.

0 151 14 days ago · Uploaded Detail →
CharTyr CharTyr
from GitHub Tools & Productivity
  • 📁 agents/
  • 📁 references/
  • 📄 README.md
  • 📄 SKILL.md

sts2-mcp-player

Play or validate Slay the Spire 2 through the local sts2-ai-agent MCP tools, including access to bundled game metadata (cards/relics/monsters/etc.) for richer decision-making. Use when navigating the main menu, timeline, map, combat, rewards, shops, rest sites, events, chests, card selections, potions, or debug-enabled test flows, and when another agent needs a strict state-first workflow that avoids stale indexes, invalid room actions, and tool-profile confusion.

0 156 17 days ago · Uploaded Detail →
aklofas aklofas
from GitHub Tools & Productivity
  • 📁 references/
  • 📁 scripts/
  • 📄 SKILL.md

bom

BOM (Bill of Materials) management for electronics projects — the primary orchestrator skill that coordinates DigiKey, Mouser, LCSC, element14, JLCPCB, PCBWay, and KiCad skills into a unified workflow. Create, update, and maintain BOMs with part numbers, costs, quantities stored as KiCad symbol properties. ALWAYS trigger this skill for any task involving component sourcing, pricing, ordering, distributor searches, BOM export, or fabrication preparation — even if the user names a specific distributor or fab house (e.g. "search DigiKey for...", "generate JLCPCB BOM", "order from Mouser"). This skill decides which distributor/fab skills to invoke and in what order. Also trigger on phrases like "what parts do I need", "order components", "how much will this cost", "export for JLCPCB", "find parts for this board", "cost estimate", "compare pricing", or "check stock".

0 151 15 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