Claude Skill

intellectronica/skillz

Skillz 是一个开源的 Python MCP 服务器,充当适配层,允许非 Claude 的 AI 客户端和智能体通过模型上下文协议加载和使用 Claude Skill。

概览

Stars334
Forks26
语言Python
最后更新2025-11-26
最近同步2026-06-14
前往 GitHub

仓库信息

拥有者intellectronica
仓库skillz
完整名称intellectronica/skillz
Repo ID1,078,822,068

安装这个 Skill

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

Registry 信息

类型mcp_server
质量分80/100
验证状态readme_parsed
最近验证2026-06-14
平台
ClaudeMCPCodexCursor
能力
searchimageterminalagentaimcpmcp-serverskills
识别文件
README.mdpyproject.tomltests
配置键
URL

项目简介

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...)_ [![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

话题

探索更多

数据来自 GitHub,同步时间:2026-06-14