Sandbox
@intellectronica/skillz

MCP server for Claude-style skills in any agent

Skillz wraps Claude-style `SKILL.md` folders and packaged `.zip` or `.skill` archives behind an MCP interface. That lets an agent client discover skills, read their authored instructions and resources, and invoke helper scripts without needing Claude Code.

400 stars35 forksPythonUpdated 7mo ago
Who it's for

Builders who want one skills directory to work across MCP clients like Codex, Copilot, Cursor, and Gemini CLI.

What it delivers

You can reuse the same skill packs across different agent clients instead of rebuilding them for each one.

What it does

Skill discovery

Finds skills in a root directory and lists them with `skillz --list-skills`.

Skill packaging support

Loads skills from folders, `.zip` archives, and `.skill` archives with `SKILL.md`.

Resource serving

Exposes files inside each skill as downloadable resources for the agent.

Helper script execution

Can run bundled helper scripts that live with the skill.

MCP transport options

Supports `stdio`, `http`, and `sse` transports through the CLI.

Docker isolation

Provides a container image so you can mount a skills directory and run the server in isolation.

How to get it

  1. 1When packaging skills as zip archives (.zip or .skill), include the SKILL.md either at…
    translate.zip
    ├── SKILL.md
    └── helpers/
        └── translate.js
  2. 2Run
    data-cleaner.zip
    └── data-cleaner/
        ├── SKILL.md
        └── clean.py
  3. 3Claude Code–compatible layout
    skills/
    ├── hello-world/
    │   ├── SKILL.md
    │   └── run.sh
    └── summarize-text/
        ├── SKILL.md
        └── run.py
  4. 4Skillz-only layout examples (not compatible with Claude Code)
    skills/
    ├── text-tools/
    │   └── summarize-text/
    │       ├── SKILL.md
    │       └── run.py
    ├── image-processing.zip
    └── data-analyzer.skill

README

Skillz

👌 Use skills in any agent (Codex, Copilot, Cursor, etc...)

PyPI version PyPI downloads

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

Skillz is an MCP server that turns Claude-style 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.

💡 You can find skills to install at the Skills Supermarket directory.

Quick Start

To run the MCP server in your agent, use the following config (or equivalent):

{
  "skillz": {
    "command": "uvx",
    "args": ["skillz@latest"]
  }
}

with the skills residing at ~/.skillz

or

{
  "skillz": {
    "command": "uvx",
    "args": ["skillz@latest", "/path/to/skills/direcotry"]
  }
}

or Docker

You can run Skillz using Docker for isolation. The image is available on Docker Hub at intellectronica/skillz.

To run the Skillz MCP server with your skills directory mounted using Docker, configure your agent as follows:

Replace /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.

{
  "skillz": {
    "command": "docker",
    "args": [
      "run",
      "-i",
      "--rm",
      "-v",
      "/path/to/skills:/skillz",
      "intellectronica/skillz",
      "/skillz"
    ]
  }
}

Gemini CLI Extension

A Gemini CLI extension is available at intellectronica/gemini-cli-skillz.

Install it with:

gemini extensions install https://github.com/intellectronica/gemini-cli-skillz

This extension enables Anthropic-style Agent Skills in Gemini CLI using the skillz MCP server.

Usage

Skillz looks for skills inside the root directory you provide (defaults to ~/.skillz). Each skill lives in its own folder or zip archive (.zip or .skill) that includes a SKILL.md file with YAML front matter describing the skill. Any other files in the skill become downloadable resources for your agent (scripts, datasets, examples, etc.).

An example directory might look like this:

~/.skillz/
├── summarize-docs/
│   ├── SKILL.md
│   ├── summarize.py
│   └── prompts/example.txt
├── translate.zip
├── analyzer.skill
└── web-search/
    └── SKILL.md

When packaging skills as zip archives (.zip or .skill), include the SKILL.md either at the root of the archive or inside a single top-level directory:

translate.zip
├── SKILL.md
└── helpers/
    └── translate.js
data-cleaner.zip
└── data-cleaner/
    ├── SKILL.md
    └── clean.py

Directory Structure: Skillz vs Claude Code

Skillz 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).

Claude 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.

If 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.

Claude Code–compatible layout:

skills/
├── hello-world/
│   ├── SKILL.md
│   └── run.sh
└── summarize-text/
    ├── SKILL.md
    └── run.py

Skillz-only layout examples (not compatible with Claude Code):

skills/
├── text-tools/
│   └── summarize-text/
│       ├── SKILL.md
│       └── run.py
├── image-processing.zip
└── data-analyzer.skill

You can use skillz --list-skills (optionally pointing at another skills root) to verify which skills the server will expose before connecting it to your agent.

CLI Reference

skillz [skills_root] [options]

Flag / OptionDescription
positional skills_rootOptional skills directory (defaults to ~/.skillz).
--transport {stdio,http,sse}Choose the FastMCP transport (default stdio).
--host HOSTBind address for HTTP/SSE transports.
--port PORTPort for HTTP/SSE transports.
--path PATHURL path when using the HTTP transport.
--list-skillsList discovered skills and exit.
--verboseEmit debug logging to the console.
--logMirror verbose logs to /tmp/skillz.log.

Made with 🫶 by @intellectronica

Files in the repo

Repository payload9 top-level entries
  • .github
  • src
  • tests
  • .gitignore
  • Dockerfile
  • LICENSE
  • pyproject.toml
  • README.md
  • uv.lock

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More connectors

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

43k

Universal provider proxy for OpenAI Codex & Claude Code — use any LLM (Claude, Gemini, Grok, DeepSeek, Ollama…) with Codex CLI, App, SDK, and Claude Code

14k
okf-memory/
okf-agent-memory

Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300µs in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.

547
tirth8205/
code-review-graph

Local-first code intelligence graph for MCP and CLI. Builds a persistent map of your codebase so AI coding tools read only what matters, with benchmarked context reductions on reviews and large-repo workflows.

31k
2akouwu/
reverify

Stop your AI from making things up — it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.

1.1k
t8y2/dbxConnectors

20 MB lightweight cross-platform database client for 90+ databases, including MySQL, PostgreSQL, SQLite, Redis, MongoDB, DuckDB, SQL Server, and Dameng. Built-in AI, MCP Server, CLI, desktop and Docker. | 轻量级跨平台数据库管理工具,支持 MySQL、PostgreSQL、SQLite、Redis、MongoDB、达梦等 90+ 数据库,提供桌面端、Docker、CLI、内置 AI 助手和 MCP Server。

19k