/ 디렉터리 / 플레이그라운드 / TRAE-Skills
● 커뮤니티 HighMark-31 ⚡ 바로 사용

TRAE-Skills

제작: HighMark-31 · HighMark-31/TRAE-Skills

150+ specialized skills for software dev — frontend, backend, automation, UI/UX, SEO, DevOps — each a focused, ready-to-use capability.

TRAE-Skills is a broad catalog of 150+ skill bundles targeting everyday dev tasks: code generation, template scaffolding, scripts, and production-ready workflows. Originally curated for TRAE but works with any SKILL.md-compatible agent (Claude Code, Cursor, Codex). Pick the category folder you need — frontend, backend, automation, UI/UX, SEO, or DevOps.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

trae-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

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

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

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

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

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

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "trae-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/HighMark-31/TRAE-Skills",
        "~/.claude/skills/TRAE-Skills"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "trae-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/HighMark-31/TRAE-Skills",
          "~/.claude/skills/TRAE-Skills"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add trae-skill -- git clone https://github.com/HighMark-31/TRAE-Skills ~/.claude/skills/TRAE-Skills

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: TRAE-Skills

Install just the frontend skill pack for a React project

👤 Frontend engineers who want focused scaffolding for React/Next/Tailwind ⏱ ~15 min beginner

언제 쓸까: Starting a new frontend project or adding polish to an existing one.

사전 조건
  • git + ~/.claude/skills directory — Create with mkdir -p ~/.claude/skills
흐름
  1. Clone TRAE-Skills
    Clone HighMark-31/TRAE-Skills somewhere temporary.✓ 복사됨
    → Repo present locally
  2. Copy only frontend/
    Copy the frontend/ folder's skills one per directory into ~/.claude/skills/trae-frontend-*.✓ 복사됨
    → Each SKILL.md lands at the expected depth
  3. Verify discovery
    Ask Claude what TRAE frontend skills are available.✓ 복사됨
    → List of frontend skills with trigger descriptions

결과: Targeted skill set loaded without the full 150.

함정
  • Two skills compete for the same trigger phrase — Edit the description frontmatter of the one you prefer to make it more specific

Generate production-ready DevOps scripts

👤 DevOps engineers writing Terraform, Kubernetes manifests, or CI pipelines ⏱ ~20 min intermediate

언제 쓸까: You need a first-pass CI config, Dockerfile, or k8s manifest that respects current best practices.

흐름
  1. Ask for a specific script
    Use TRAE DevOps skills: generate a GitHub Actions pipeline for a Node 20 monorepo with Turborepo.✓ 복사됨
    → Draft .yml with caching, matrix, and job structure
  2. Harden
    Now apply least-privilege permissions and pin actions by SHA.✓ 복사됨
    → Updated file with permissions block and SHA pins

결과: A CI pipeline you'd actually merge.

함정
  • Skills embed examples that drift from latest Actions versions — Ask Claude to verify each action version against its marketplace page
함께 쓰기: aws-skill · terrashark-skill

Scaffold SEO essentials for a new site

👤 Founders launching a site and needing SEO basics right ⏱ ~25 min beginner

언제 쓸까: New site, no SEO plumbing yet.

흐름
  1. Generate baseline
    Use TRAE SEO skills to generate sitemap.xml, robots.txt, canonical tags, and JSON-LD for a Next.js app.✓ 복사됨
    → Files produced plus meta-tag snippets per route type

결과: SEO baseline in place before the first crawl.

함께 쓰기: seo-audit-skill

조합

다른 MCP와 조합해 10배 효율

trae-skill + seo-audit-skill

TRAE scaffolds SEO, seo-audit-skill verifies the result

Run TRAE SEO scaffold, then seo-audit-skill against the deployed URL.✓ 복사됨
trae-skill + terrashark-skill

TRAE generates a first-pass Terraform module, TerraShark hardens it

Generate an AWS VPC module with TRAE, then have TerraShark review for hallucinations and best practices.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
Frontend skills - React/Vue/Svelte component and layout generation 0
Backend skills - API routes, auth flows, DB wiring 0
Automation skills - Cron, schedulers, batch processors 0
UI/UX skills - Design system adherence 0
SEO skills - Search visibility work 0
DevOps skills - Pipelines and infra 0

비용 및 제한

운영 비용

API 쿼터
None
호출당 토큰
Varies per skill
금액
Free
Load categories on-demand rather than all 150 at once.

보안

권한, 시크릿, 파급범위

자격 증명 저장: No credentials
데이터 외부 송신: None by default; some skills may call external APIs — check their SKILL.md

문제 해결

자주 발생하는 오류와 해결

Claude doesn't pick up the skill

Verify each SKILL.md sits at ~/.claude/skills/<name>/SKILL.md, not nested deeper.

확인: ls ~/.claude/skills/*/SKILL.md
Generated code uses outdated framework version

Pass explicit versions in the prompt (e.g. 'Next 15', 'React 19')

대안

TRAE-Skills 다른 것과 비교

대안언제 쓰나단점/장점
awesome-llm-skillYou want broader business/data categories, not just devLess dev-specific depth
skills-skill-3You're on Chinese-stack services (Lark, GLM)Different domain focus

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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