Claude Skill
gotalab/skillport
Skillport enables centralized management and deployment of Agent Skills across AI and coding agents via CLI or MCP. Define skills once and deploy anywhere with this Python-based solution.
Overview
Repository
Install this 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
Summary
Skillport is a Python tool that enables the integration of Agent Skills into any AI or coding agent via CLI or MCP (Model Context Protocol). It provides a centralized management system for skills, allowing them to be defined once and deployed across multiple platforms.
将Agent Skills引入任何AI代理和编码代理——通过CLI或MCP实现。一次管理,随处部署。
Key features
- Centralized skill management for AI agents
- Deployment via CLI or Model Context Protocol (MCP)
- Python-based implementation
- Cross-platform skill portability
- Integration with various AI coding tools
Use cases
- Extending AI agent capabilities with custom skills
- Sharing skills across different coding environments
- Creating reusable skill libraries for development teams
- Integrating agent skills into existing workflows
- Standardizing skill deployment across platforms
README excerpt
# ⚓ 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