.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/intellectronica/skillz
home/mcp-servers/intellectronica/skillz
intellectronica avatar

skillz

byintellectronica· 3 MCP servers

Installs

1.2k

Stars

398

Forks

35

Category

AI Agents & MCP

View on GitHub

TL;DR

> ⚠️ Experimental proof‑of‑concept. Potentially unsafe. Treat skills like untrusted code and run in sandboxes/containers. Use at your own risk.

How to install skillz?

intellectronica/skillz
$git clone https://github.com/intellectronica/skillz

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install skillz by running `git clone https://github.com/intellectronica/skillz`, then use it for the current task and follow its documentation at https://github.com/intellectronica/skillz.

Files · 1

View on GitHub
README.md
1# Skillz
2 
3## 👌 **Use _skills_ in any agent** _(Codex, Copilot, Cursor, etc...)_
4 
5[![PyPI version](https://img.shields.io/pypi/v/skillz.svg)](https://pypi.org/project/skillz/)
6[![PyPI downloads](https://img.shields.io/pypi/dm/skillz.svg)](https://pypi.org/project/skillz/)
7 
8> ⚠️ **Experimental proof‑of‑concept. Potentially unsafe. Treat skills like untrusted code and run in sandboxes/containers. Use at your own risk.**
9 
10**Skillz** is an MCP server that turns [Claude-style skills](https://github.com/anthropics/skills) _(`SKILL.md` plus optional resources)_ into callable tools for any MCP client. It discovers each skill, exposes the authored instructions and resources, and can run bundled helper scripts.
11 
12> 💡 You can find skills to install at the **[Skills Supermarket](http://skills.intellectronica.net/)** directory.
13 
14## Quick Start
15 
16To run the MCP server in your agent, use the following config (or equivalent):
17 
18```json
19{
20 "skillz": {
21 "command": "uvx",
22 "args": ["skillz@latest"]
23 }
24}
25```
26 
27with the skills residing at `~/.skillz`
28 
29_or_
30 
31```json
32{
33 "skillz": {
34 "command": "uvx",
35 "args": ["skillz@latest", "/path/to/skills/direcotry"]
36 }
37}
38```
39 
40or Docker
41 
42You can run Skillz using Docker for isolation. The image is available on Docker Hub at `intellectronica/skillz`.
43 
44To run the Skillz MCP server with your skills directory mounted using Docker, configure your agent as follows:
45 
46Replace `/path/to/skills` with the path to your actual skills directory. Any arguments after `intellectronica/skillz` in the array are passed directly to the Skillz CLI.
47 
48```json
49{
50 "skillz": {
51 "command": "docker",
52 "args": [
53 "run",
54 "-i",
55 "--rm",
56 "-v",
57 "/path/to/skills:/skillz",
58 "intellectronica/skillz",
59 "/skillz"
60 ]
61 }
62}
63```
64 
65## Gemini CLI Extension
66 
67A Gemini CLI extension is available at [intellectronica/gemini-cli-skillz](https://github.com/intellectronica/gemini-cli-skillz).
68 
69Install it with:
70 
71```bash
72gemini extensions install https://github.com/intellectronica/gemini-cli-skillz
73```
74 
75This extension enables Anthropic-style Agent Skills in Gemini CLI using the skillz MCP server.
76 
77## Usage
78 
79Skillz looks for skills inside the root directory you provide (defaults to
80`~/.skillz`). Each skill lives in its own folder or zip archive (`.zip` or `.skill`)
81that includes a `SKILL.md` file with YAML front matter describing the skill. Any
82other files in the skill become downloadable resources for your agent (scripts,
83datasets, examples, etc.).
84 
85An example directory might look like this:
86 
87```text
88~/.skillz/
89├── summarize-docs/
90│ ├── SKILL.md
91│ ├── summarize.py
92│ └── prompts/example.txt
93├── translate.zip
94├── analyzer.skill
95└── web-search/
96 └── SKILL.md
97```
98 
99When packaging skills as zip archives (`.zip` or `.skill`), include the `SKILL.md`
100either at the root of the archive or inside a single top-level directory:
101 
102```text
103translate.zip
104├── SKILL.md
105└── helpers/
106 └── translate.js
107```
108 
109```text
110data-cleaner.zip
111└── data-cleaner/
112 ├── SKILL.md
113 └── clean.py
114```
115 
116### Directory Structure: Skillz vs Claude Code
117 
118Skillz supports a more flexible skills directory than Claude Code. In addition to a flat layout, you can organize skills in nested subdirectories and include skills packaged as `.zip` or `.skill` files (as shown in the examples above).
119 
120Claude Code, on the other hand, expects a flat skills directory: every immediate subdirectory is a single skill. Nested directories are not discovered, and `.zip` or `.skill` files are not supported.
121 
122If you want your skills directory to be compatible with Claude Code (for example, so you can symlink one skills directory between the two tools), you must use the flat layout.
123 
124**Claude Code–compatible layout:**
125 
126```text
127skills/
128├── hello-world/
129│ ├── SKILL.md
130│ └── run.sh
131└── summarize-text/
132 ├── SKILL.md
133 └── run.py
134```
135 
136**Skillz-only layout examples** (not compatible with Claude Code):
137 
138```text
139skills/
140├── text-tools/
141│ └── summarize-text/
142│

Preview

intellectronica/skillzintellectronica/skillz

# Skillz

## 👌 **Use _skills_ in any agent** _(Codex, Copilot, Cursor, etc...)_

[![PyPI version](https://img.shields.io/pypi/v/skillz.svg)](https://pypi.org/project/skillz/)

[![PyPI downloads](https://img.shields.io/pypi/dm/skillz.svg)](https://pypi.org/project/skillz/)

Repointellectronica/skillz
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJan 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPagentai

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k