/ 디렉터리 / 플레이그라운드 / 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는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "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는 맵이 아닌 서버 오브젝트 배열 사용.

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

조합

다른 MCP와 조합해 10배 효율

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

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기