/ Каталог / Песочница / marketplace
● Сообщество aiskillstore ⚡ Сразу

marketplace

автор 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.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

marketplace-skill.replay ▶ готово
0/0

Установка

Выберите клиент

~/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
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

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

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

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

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

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

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

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

Continue использует массив объектов серверов, а не map.

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

Добавьте в context_servers. Zed перезагружается автоматически.

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

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: 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

Когда использовать: Your org requires reviewed dependencies and you want skills without going through procurement each time.

Предварительные требования
  • Marketplace installed — git clone https://github.com/aiskillstore/marketplace ~/.claude/skills/marketplace
Поток
  1. Browse catalog
    List marketplace skills for GA4/analytics use cases.✓ Скопировано
    → Catalog subset with audit status + permissions
  2. Inspect permissions
    Show me what permissions the 'ga4-setup' skill requests and what it sends externally.✓ Скопировано
    → Explicit permission + egress disclosure
  3. Install
    Install ga4-setup from marketplace.✓ Скопировано
    → Skill added to ~/.claude/skills with manifest

Итог: A reviewed skill installed without audit overhead.

Подводные камни
  • 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

Когда использовать: Your skills folder has 20+ repos, nobody remembers why half of them are installed.

Поток
  1. Inventory
    List every skill in ~/.claude/skills and check if a marketplace equivalent exists.✓ Скопировано
    → Per-skill: keep, migrate, drop
  2. Migrate
    Replace matched skills with marketplace versions. Preserve any local config overrides.✓ Скопировано
    → Backups + fresh installs

Итог: 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

Когда использовать: You built a skill and want the credibility of a vetted store listing.

Предварительные требования
  • Working skill with clean SKILL.md — Use claude-code-skill-factory-skill /validate-output first
Поток
  1. Prepare listing
    Prepare a marketplace listing for my skill: description, permissions, egress list, screenshots.✓ Скопировано
    → Listing draft following marketplace conventions
  2. Submit for audit
    Open a PR to aiskillstore/marketplace with the listing.✓ Скопировано
    → PR opened; audit checklist surfaces

Итог: Skill submitted with a clean audit checklist.

Сочетать с: claude-code-skill-factory-skill

Комбинации

Сочетайте с другими MCP — эффект x10

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.✓ Скопировано

Build with Factory, publish to marketplace

/build my skill with Factory, then publish to marketplace with the publish flow.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
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

Стоимость и лимиты

Во что обходится

Квота API
None
Токенов на вызов
0 at marketplace level; depends on each skill
Деньги
Free
Совет
Prefer marketplace installs over raw clones to cut audit overhead.

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: No credentials at marketplace level
Исходящий трафик: Marketplace itself doesn't egress; each listed skill declares its own egress

Устранение неполадок

Частые ошибки и исправления

Skill install fails signature check

Update marketplace clone; signing keys may have rotated

Проверить: 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

Альтернативы

marketplace в сравнении

АльтернативаКогда использоватьКомпромисс
agent-skills-cli-skillYou want a larger, less-curated catalogLess audit, more options
awesome-llm-skillYou want community breadthQuality varies widely

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills