/ Directory / Playground / marketplace
● Community aiskillstore ⚡ Instant

marketplace

by aiskillstore · aiskillstore/marketplace

Security-audited Claude Skills marketplace — one-click install, quality-verified, less risk than scraping community repos.

aiskillstore/marketplace curates skills that have passed a security review and quality bar. Install with a single command, get signed skill manifests, and know what permissions each skill needs before enabling. Good counterbalance to broad community collections where anything goes.

Why use it

Key features

Live Demo

What it looks like in practice

marketplace-skill.replay ▶ ready
0/0

Install

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "marketplace-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/aiskillstore/marketplace",
        "~/.claude/skills/marketplace"
      ],
      "_inferred": true
    }
  }
}

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "marketplace-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/aiskillstore/marketplace",
        "~/.claude/skills/marketplace"
      ],
      "_inferred": true
    }
  }
}

Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "marketplace-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/aiskillstore/marketplace",
        "~/.claude/skills/marketplace"
      ],
      "_inferred": true
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "marketplace-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/aiskillstore/marketplace",
        "~/.claude/skills/marketplace"
      ],
      "_inferred": true
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "marketplace-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/aiskillstore/marketplace",
        "~/.claude/skills/marketplace"
      ]
    }
  ]
}

Continue uses an array of server objects rather than a map.

~/.config/zed/settings.json
{
  "context_servers": {
    "marketplace-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/aiskillstore/marketplace",
          "~/.claude/skills/marketplace"
        ]
      }
    }
  }
}

Add to context_servers. Zed hot-reloads on save.

claude mcp add marketplace-skill -- git clone https://github.com/aiskillstore/marketplace ~/.claude/skills/marketplace

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use marketplace

How to install a vetted skill instead of a random GitHub repo

👤 Enterprise and regulated users who can't install arbitrary code ⏱ ~10 min beginner

When to use: Your org requires reviewed dependencies and you want skills without going through procurement each time.

Prerequisites
  • Marketplace installed — git clone https://github.com/aiskillstore/marketplace ~/.claude/skills/marketplace
Flow
  1. Browse catalog
    List marketplace skills for GA4/analytics use cases.✓ Copied
    → Catalog subset with audit status + permissions
  2. Inspect permissions
    Show me what permissions the 'ga4-setup' skill requests and what it sends externally.✓ Copied
    → Explicit permission + egress disclosure
  3. Install
    Install ga4-setup from marketplace.✓ Copied
    → Skill added to ~/.claude/skills with manifest

Outcome: A reviewed skill installed without audit overhead.

Pitfalls
  • Audit status ages with updates — Check manifest timestamp; re-review if >90 days since last audit

Migrate from random git clones to marketplace equivalents

👤 Teams cleaning up ~/.claude/skills after months of accretion ⏱ ~30 min intermediate

When to use: Your skills folder has 20+ repos, nobody remembers why half of them are installed.

Flow
  1. Inventory
    List every skill in ~/.claude/skills and check if a marketplace equivalent exists.✓ Copied
    → Per-skill: keep, migrate, drop
  2. Migrate
    Replace matched skills with marketplace versions. Preserve any local config overrides.✓ Copied
    → Backups + fresh installs

Outcome: A reviewable skills folder with known provenance.

Publish your own skill to the marketplace

👤 Skill authors wanting wider distribution with the audit badge ⏱ ~60 min intermediate

When to use: You built a skill and want the credibility of a vetted store listing.

Prerequisites
  • Working skill with clean SKILL.md — Use claude-code-skill-factory-skill /validate-output first
Flow
  1. Prepare listing
    Prepare a marketplace listing for my skill: description, permissions, egress list, screenshots.✓ Copied
    → Listing draft following marketplace conventions
  2. Submit for audit
    Open a PR to aiskillstore/marketplace with the listing.✓ Copied
    → PR opened; audit checklist surfaces

Outcome: Skill submitted with a clean audit checklist.

Combinations

Pair with other MCPs for X10 leverage

marketplace-skill + agent-skills-cli-skill

Use the CLI for install + marketplace for curation

Browse marketplace to find a vetted SEO skill, then install with agent-skills-cli.✓ Copied

Build with Factory, publish to marketplace

/build my skill with Factory, then publish to marketplace with the publish flow.✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
Catalog browse query? Finding a vetted skill 0
Permission inspect skill_name Before install 0
Install skill_name After inspection 0
Migrate local_path Cleaning up accretion 0
Publish skill_path, listing Submitting new skills 0

Cost & Limits

What this costs to run

API quota
None
Tokens per call
0 at marketplace level; depends on each skill
Monetary
Free
Tip
Prefer marketplace installs over raw clones to cut audit overhead.

Security

Permissions, secrets, blast radius

Credential storage: No credentials at marketplace level
Data egress: Marketplace itself doesn't egress; each listed skill declares its own egress

Troubleshooting

Common errors and fixes

Skill install fails signature check

Update marketplace clone; signing keys may have rotated

Verify: git -C ~/.claude/skills/marketplace pull
A marketplace skill behaves differently from raw upstream

Marketplace sometimes pins older versions for audit stability; check manifest for pinned commit

Alternatives

marketplace vs others

AlternativeWhen to use it insteadTradeoff
agent-skills-cli-skillYou want a larger, less-curated catalogLess audit, more options
awesome-llm-skillYou want community breadthQuality varies widely

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills