Daily Featured Skills Count
5,034 5,070 5,117 5,165 5,205 5,241 5,259
05/08 05/09 05/10 05/11 05/12 05/13 05/14
♾️ Free & Open Source 🛡️ Secure & Worry-Free

Import Skills

walm00 walm00
from GitHub Docs & Knowledge
  • 📁 references/
  • 📁 templates/
  • 📄 archive.md
  • 📄 bundle.md
  • 📄 create.md

bcos-wiki

Wiki zone manager for BCOS. Ingests URLs / local docs / inbox captures into docs/_wiki/ as schema-validated pages with banner citations, three structural shapes for source-summary, and two-tier refresh. Schema-driven, CLEAR-governed, derived-artifact. Invoke with /wiki.

0 18 27 days ago · Uploaded Detail →
gentritbiba gentritbiba
from GitHub Development & Coding
  • 📄 SKILL.md

cogpit-sessions

Create and manage Claude Code sessions via the Cogpit (agent-window) HTTP API running on localhost:19384. Use when an agent needs to spawn a new Claude Code session in a project directory, send messages to existing sessions, stop sessions, list projects, or query active sessions. Triggers on requests like "start a session", "run claude in project X", "send a message to session Y", "list cogpit projects", or any programmatic interaction with the agent-window server.

0 18 28 days ago · Uploaded Detail →
open-ma open-ma
from GitHub Data & AI
  • 📄 SKILL.md

create-agent

Help users create and configure openma managed agents through conversation. Trigger when users say "create an agent", "I need an agent that...", "set up an agent for", "build me a bot", or describe a task to automate. Also trigger for "Create with AI" from Dashboard. Also use when users ask about the openma platform, what it can do, how to use the CLI, or how to configure resources. --- # openma Agent Creator ## What is openma? openma is an open-source platform for building, deploying, and managing AI agents. Think of it as a managed runtime — you define an agent (model + system prompt + tools), the platform handles sandboxed execution, credential management, and session state. **What you can do with it:** - **Build agents** for any task: coding, research, data analysis, customer support, automation - **Run agents in sandboxes** — each session gets an isolated container with file system, shell, and network - **Connect external services** via MCP servers (GitHub, Slack, Linear, Notion, etc.) with OAuth - **Use any LLM** — Anthropic, OpenAI, DeepSeek, or any OpenAI-compatible provider - **Install community skills** from ClawHub to extend agent capabilities - **Manage credentials** securely in vaults — agents get scoped access, secrets never leak - **Collaborate** — multi-user workspace with API key access for CLI/SDK integration ## Creating an Agent ### Flow 1. **Understand the goal** — ask what the agent should do. If vague, one question: "What's the main task?" Two rounds max, then build. 2. **Pick the model** — check `/v1/model_cards` first. Defaults: - Complex/coding: `claude-opus-4-6` - General (default): `claude-sonnet-4-6` - Simple/fast: `claude-haiku-4-5-20251001` - OpenAI: `gpt-4o`, `o3` 3. **Write system prompt** — specific, actionable, bounded. Not generic. 4. **Select tools** — default `agent_toolset_20260401` (file ops, bash, web) covers most cases. 5. **Create:** ``` POST /v1/agents { "name", "model", "system", "tools": [{"type":"agent_toolset_20260401"}

0 7 3 days ago · Uploaded Detail →
ls1intum ls1intum
from GitHub Content & Multimedia
  • 📁 rules/
  • 📄 AGENTS.md
  • 📄 metadata.json
  • 📄 README.md

vercel-composition-patterns

React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.

0 18 1 month ago · Uploaded Detail →
Yehonatan-Bar Yehonatan-Bar
from GitHub Docs & Knowledge
  • 📁 assets/
  • 📁 references/
  • 📄 CLAUDE_MD_INSTRUCTIONS.md
  • 📄 SKILL.md

[proposed-name]

MANDATORY - INVOKE IMMEDIATELY after completing ANY development task (feature, bug fix, refactor, maintenance). Creates SR-PTD documentation for future skill extraction. This is NOT optional - every task MUST have documentation.

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

automations

Create, edit, validate, and test ZDX automations stored in `$ZDX_HOME/automations/*.md`. Use when users ask to add or modify automation files, recurring jobs, scheduled prompts, or YAML-frontmatter automation definitions.

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

adr

Manage Architecture Decision Records using the project's ADR CLI tool. Use when the user wants to create, list, view, lint, or index ADRs, or when working with docs/architecture/ files. Triggers on "create an ADR", "new ADR", "list ADRs", "lint ADRs", "what ADRs exist", "ADR domains".

0 17 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