/ Diretório / Playground / marketplace
● Comunidade aiskillstore ⚡ Instantâneo

marketplace

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

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

marketplace-skill.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

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

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

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

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

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

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um map.

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: 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

Quando usar: Your org requires reviewed dependencies and you want skills without going through procurement each time.

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

Resultado: A reviewed skill installed without audit overhead.

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

Quando usar: Your skills folder has 20+ repos, nobody remembers why half of them are installed.

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

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

Quando usar: You built a skill and want the credibility of a vetted store listing.

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

Resultado: Skill submitted with a clean audit checklist.

Combinações

Combine com outros MCPs para 10× de alavancagem

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.✓ Copiado

Build with Factory, publish to marketplace

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

Ferramentas

O que este MCP expõe

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

Custo e limites

O que custa rodar

Cota de API
None
Tokens por chamada
0 at marketplace level; depends on each skill
Monetário
Free
Dica
Prefer marketplace installs over raw clones to cut audit overhead.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: No credentials at marketplace level
Saída de dados: Marketplace itself doesn't egress; each listed skill declares its own egress

Solução de problemas

Erros comuns e correções

Skill install fails signature check

Update marketplace clone; signing keys may have rotated

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

Alternativas

marketplace vs. outros

AlternativaQuando usarTroca
agent-skills-cli-skillYou want a larger, less-curated catalogLess audit, more options
awesome-llm-skillYou want community breadthQuality varies widely

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills