Claude Skill
gotalab/skillport
Skillport 可通过 CLI 或 MCP 对 AI 和编码代理的 Agent Skills 进行集中管理和部署。这款基于 Python 的解决方案让您一次定义技能,随处部署。
概览
仓库信息
安装这个 Skill
uv tool install skillportRegistry 信息
uv tool install skillportuv tool install skillport-mcpclaude mcp add skillport -- uvx skillport-mcpgit clone https://github.com/gotalab/skillport.git
项目简介
Skillport 是一个 Python 工具,可通过 CLI 或 MCP(模型上下文协议)将 Agent Skills 集成到任何 AI 或编码代理中。它提供了一个集中的技能管理系统,实现一次定义,随处部署。
Bring Agent Skills to Any AI Agent and Coding Agent — via CLI or MCP. Manage once, serve anywhere.
要点
- 为AI代理提供集中的技能管理
- 通过CLI或模型上下文协议(MCP)部署
- 基于Python实现
- 跨平台的技能可移植性
- 与多种AI编码工具集成
使用场景
- 通过自定义技能扩展AI代理能力
- 在不同编码环境间共享技能
- 为开发团队创建可复用的技能库
- 将代理技能集成到现有工作流中
- 跨平台标准化技能部署
README 摘要
# ⚓ SkillPort <div align="center"> **The SkillOps Toolkit for Agent Skills** SkillOps = Validate, manage, and deliver skills at scale. [](https://python.org) [](https://modelcontextprotocol.io) [](LICENSE) </div> --- ## Why SkillPort? | When you... | SkillPort... | |-------------|--------------| | Use a coding agent without native skill support | Serves via MCP or CLI | | Build your own AI agent | Provides MCP server, CLI, and Python library | | Have 50+ skills and need the right one fast | Search-first loading ([Tool Search Tool](https://www.anthropic.com/engineering/advanced-tool-use) pattern) | | Check skills before deployment | Validates against the spec in CI | | Manage skill metadata programmatically | Provides `meta` commands | | Find a skill on GitHub | Installs with `add <url>` | Fully compatible with the [Agent Skills specification](https://agentskills.io/specification). --- ## Features ### Validate Check skills against the [Agent Skills specification](https://agentskills.io/specification). ```bash skillport validate # Validate all skills skillport validate ./skills # Validate specific directory skillport validate --json # CI-friendly JSON output ``` Catches missing fields, naming issues, and spec violations before they cause problems. ### Manage Full lifecycle management from any source. ```bash # Add from GitHub (shorthand) skillport add anthropics/skills skills # Add from GitHub (full URL) skillport add https://github.com/anthropics/skills/tree/main/skills # Add from local path or zip skillport add ./my-skills skillport add skills