Skip to main content
Glama
djmarat
by djmarat

skillhub

Trusted skill marketplace for AI agents. One manifest, many runtimes.

A skill is a small tool that an AI agent (Hermes, Claude Code, Codex, Cursor) can call as a black box. skillhub is the place where:

  • maintainers publish skills once, in a universal skill.yaml,

  • agents and humans discover them via skillhub search,

  • they install into the right runtime with skillhub install <name> <runtime>.

No domain. No accounts. No money involved — yet. Just the protocol, the CLI, and a registry of 20 seed skills.

Status

v0.0.1 — local CLI, no network, no payments. The goal of v0.0.1 is to prove the manifest format and the discoverability workflow before we add infrastructure.

Related MCP server: aiskillstore

What's here

File

What it is

manifest_spec.md

Universal skill manifest, v0.1

src/skillhub/cli.py

CLI: search, show, install, validate, publish

src/skillhub_mcp/server.py

MCP server exposing the same 4 tools to agents

src/skillhub/trust.py

Trust Score v0.2 (real GitHub signals)

src/skillhub/scan.py

Static security scanner

registry/skills.jsonl

254 curated skills (incl. skillhub-mcp itself)

registry/trust.json

Cached trust scores (TTL 6h)

scripts/seed_from_sources.py

Idempotent importer from public registries

scripts/enrich_tags.py

Tag enrichment via token frequency

pyproject.toml

pip install -e .

Install (local)

git clone <repo>
cd skillhub
python -m venv .venv && source .venv/bin/activate
pip install -e .
skillhub search "pdf"

Usage

# Search the local registry
skillhub search "search"             # human table
skillhub search "pdf" --json         # agent-friendly, one JSON per line

# Show one skill in detail
skillhub show pdf-md

# Install into a runtime
skillhub install pdf-md --runtime hermes
# or
skillhub install pdf-md -r claude-code

# Validate your own skill.yaml
skillhub validate ./my-skill/skill.yaml

As an MCP server (skillhub-mcp)

AI agents that speak MCP (Claude Code, Hermes, Codex, Cursor) can connect to skillhub directly:

{
  "mcpServers": {
    "skillhub": {
      "command": "python",
      "args": ["-m", "skillhub_mcp.server"],
      "cwd": "/path/to/skillhub"
    }
  }
}

The server exposes four tools — search, show, install, validate — so the agent can install skills as ordinary tool calls (no copy-paste, no scraping).

Why this exists

  • Maintainers write skill.yaml once; the CLI compiles to runtime layouts.

  • Agents find skills via skillhub search --json instead of web scraping.

  • Humans get a trust_score per skill — derived from real signals, not stars.

  • Everyone agrees on the same skill.yaml schema, so we don't fork five copies of the same SKILL.md across runtimes.

Roadmap (no dates)

  • v0.1: schema stable, security scanner v1, real registry updater.

  • v0.2: trust score from install_success_rate (live telemetry).

  • v0.3: in-agent MCP-server (skillhub-mcp) so any MCP-capable agent can discover/install skills via tool calls.

  • v1.0: featured/verified tiers, paid placements, the actual marketplace.

License

MIT. See headers in source files.

A
license - permissive license
-
quality - not tested
A
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/djmarat/skillhub'

If you have feedback or need assistance with the MCP directory API, please join our Discord server