Claude Skill

intellectronica/skillz

Skillz is an open-source Python MCP server that acts as a shim, allowing non-Claude AI clients and agents to load and use Claude Skills through the Model Context Protocol.

Overview

Stars334
Forks26
LanguagePython
Last pushed2025-11-26
Last synced2026-06-14
View on GitHub

Repository

Ownerintellectronica
Repositoryskillz
Full nameintellectronica/skillz
Repo ID1,078,822,068

Install this Skill

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

Registry

Typemcp_server
Quality score80/100
Verificationreadme_parsed
Last verified2026-06-14
Platforms
ClaudeMCPCodexCursor
Capabilities
searchimageterminalagentaimcpmcp-serverskills
Detected files
README.mdpyproject.tomltests
Config keys
URL

Summary

Skillz is an MCP (Model Context Protocol) server that functions as a shim layer, enabling non-Claude clients to load and utilize Claude Skills. It provides a bridge for AI agents and applications to access a repository of skills.

Chinese description

一个用于加载技能的MCP服务器(非Claude客户端的适配层)。

Key features

  • MCP server implementation
  • Shim layer for non-Claude clients
  • Skill loading functionality
  • Python-based development
  • Facilitates AI agent tooling

Use cases

  • Integrating Claude Skills into other AI platforms
  • Building AI agents that utilize external skill sets
  • Creating MCP-compatible applications
  • Developing toolchains for AI-assisted workflows

README excerpt

# 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/) > ⚠️ **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](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. > 💡 You can find skills to install at the **[Skills Supermarket](http://skills.intellectronica.net/)** directory. ## Quick Start To run the MCP server in your agent, use the following config (or equivalent): ```json { "skillz": { "command": "uvx", "args": ["skillz@latest"] } } ``` with the skills residing at `~/.skillz` _or_ ```json { "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. ```json { "skillz": { "command": "docker", "args": [ "run", "-i", "--rm", "-v", "/path/to/skills:/skillz", "intellectronica/skillz", "/skillz" ] } } ``` ## Gemi

Topics

Explore more

Data from GitHub. Synced on 2026-06-14