.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/gotalab/skillport
home/mcp-servers/gotalab/skillport
gotalab avatar

skillport

bygotalab· 1 MCP server

Installs

3.3k

Stars

405

Forks

30

Category

AI Agents & MCP

View on GitHub

TL;DR

The SkillOps Toolkit for Agent Skills

How to install skillport?

gotalab/skillport
$git clone https://github.com/gotalab/skillport

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install skillport by running `git clone https://github.com/gotalab/skillport`, then use it for the current task and follow its documentation at https://github.com/gotalab/skillport.

Files · 1

View on GitHub
README.md
1# ⚓ SkillPort
2 
3<div align="center">
4 
5**The SkillOps Toolkit for Agent Skills**
6 
7SkillOps = Validate, manage, and deliver skills at scale.
8 
9[![Python](https://img.shields.io/badge/Python-3.10+-blue)](https://python.org)
10[![MCP](https://img.shields.io/badge/MCP-Enabled-green)](https://modelcontextprotocol.io)
11[![License](https://img.shields.io/badge/License-MIT-yellow)](LICENSE)
12 
13</div>
14 
15---
16 
17## Why SkillPort?
18 
19| When you... | SkillPort... |
20|-------------|--------------|
21| Use a coding agent without native skill support | Serves via MCP or CLI |
22| Build your own AI agent | Provides MCP server, CLI, and Python library |
23| Have 50+ skills and need the right one fast | Search-first loading ([Tool Search Tool](https://www.anthropic.com/engineering/advanced-tool-use) pattern) |
24| Check skills before deployment | Validates against the spec in CI |
25| Manage skill metadata programmatically | Provides `meta` commands |
26| Find a skill on GitHub | Installs with `add <url>` |
27 
28Fully compatible with the [Agent Skills specification](https://agentskills.io/specification).
29 
30---
31 
32## Features
33 
34### Validate
35 
36Check skills against the [Agent Skills specification](https://agentskills.io/specification).
37 
38```bash
39skillport validate # Validate all skills
40skillport validate ./skills # Validate specific directory
41skillport validate --json # CI-friendly JSON output
42```
43 
44Catches missing fields, naming issues, and spec violations before they cause problems.
45 
46### Manage
47 
48Full lifecycle management from any source.
49 
50```bash
51# Add from GitHub (shorthand)
52skillport add anthropics/skills skills
53 
54# Add from GitHub (full URL)
55skillport add https://github.com/anthropics/skills/tree/main/skills
56 
57# Add from local path or zip
58skillport add ./my-skills
59skillport add skills.zip
60 
61# Update, list, remove
62skillport update # Update all from original sources
63skillport list # See installed skills
64skillport remove <skill-id> # Uninstall
65```
66 
67### Metadata
68 
69Update skill metadata without editing files manually. Useful for automation and keeping skills consistent across a team.
70 
71```bash
72skillport meta get <skill> <key> # Get metadata value
73skillport meta set <skill> <key> <val> # Set metadata value
74skillport meta unset <skill> <key> # Remove metadata key
75```
76 
77### Serve
78 
79MCP server for clients that don't natively support Agent Skills.
80 
81Inspired by Anthropic's [Tool Search Tool](https://www.anthropic.com/engineering/advanced-tool-use) pattern — search first, load on demand:
82 
83| Tool | Purpose |
84|------|---------|
85| `search_skills(query)` | Find skills by description (full-text search) |
86| `load_skill(skill_id)` | Get full instructions + path |
87 
88**Why search matters:** With 50+ skills, loading all upfront consumes context and hurts accuracy. SkillPort loads metadata only (~100 tokens/skill), then full instructions on demand.
89 
90Works with Cursor, Copilot, Windsurf, Cline, Codex, and any MCP-compatible client.
91 
92---
93 
94## Quick Start
95 
96### Install
97 
98```bash
99uv tool install skillport
100# or: pip install skillport
101```
102 
103### Add Skills
104 
105```bash
106# Add from GitHub
107skillport add anthropics/skills skills
108 
109# Or use a custom skills directory
110skillport --skills-dir .claude/skills add anthropics/skills skills
111```
112 
113### Validate
114 
115```bash
116skillport validate
117# ✓ All 5 skill(s) pass validation
118```
119 
120---
121 
122## Connect to Agents
123 
124Choose how to deliver skills to your AI agents:
125 
126| Mode | Best for | Setup |
127|------|----------|-------|
128| [**CLI Mode**](#cli-mode) | Agents with shell access (Cursor, Windsurf, Codex, etc.) | Per-project |
129| [**MCP Mode**](#mcp-mode) | MCP-compatible clients, multi-project | One-time |
130 
131### CLI Mode
132 
133For agents that can run shell commands. No MCP configuration required.
134 
135```bash
136skillport init # Initialize project
137skillport doc # Generate AGENTS.md with skill table
138skillport show <id> # Load full instructions for a skill
139```

Preview

gotalab/skillportgotalab/skillport

# ⚓ SkillPort

**The SkillOps Toolkit for Agent Skills**

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

Repogotalab/skillport
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJun 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPagent-skillsai-agent

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k