Skillport banner
gotalab gotalab

Skillport

AI community

Description

Bring Agent Skills to Any AI Agent and Coding Agent — via CLI or MCP. Manage once, serve anywhere.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

⚓ SkillPort

**The SkillOps Toolkit for Agent Skills**

SkillOps = Validate, manage, and deliver skills at scale.

[![Python](https://img.shields.io/badge/Python-3.10+-blue)](https://python.org) [![MCP](https://img.shields.io/badge/MCP-Enabled-green)](https://modelcontextprotocol.io) [![License](https://img.shields.io/badge/License-MIT-yellow)](LICENSE)


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 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

Fully compatible with the [Agent Skills specification](https://agentskills.io/specification).


Features

Validate

Check skills against the [Agent Skills specification](https://agentskills.io/specification).

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.

# 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.zip

# Update, list, remove
skillport update                      # Update all from original sources
skillport list                        # See installed skills
skillport remove