Claude Skill
intellectronica/skillz
Skillz 是一个开源的 Python MCP 服务器,充当适配层,允许非 Claude 的 AI 客户端和智能体通过模型上下文协议加载和使用 Claude Skill。
概览
仓库信息
安装这个 Skill
git clone https://github.com/intellectronica/skillz.gitRegistry 信息
项目简介
Skillz 是一个 MCP(模型上下文协议)服务器,充当适配层,使非 Claude 客户端能够加载和使用 Claude Skill。它为 AI 智能体和应用程序访问技能库提供了一个桥梁。
An MCP server for loading skills (shim for non-claude clients).
要点
- MCP 服务器实现
- 非 Claude 客户端的适配层
- 技能加载功能
- 基于 Python 开发
- 促进 AI 智能体工具化
使用场景
- 将 Claude Skill 集成到其他 AI 平台
- 构建利用外部技能集的 AI 智能体
- 创建 MCP 兼容的应用程序
- 为 AI 辅助工作流开发工具链
README 摘要
# Skillz ## 👌 **Use _skills_ in any agent** _(Codex, Copilot, Cursor, etc...)_ [](https://pypi.org/project/skillz/) [](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