/ 디렉터리 / 플레이그라운드 / mattpocock/skills
● 커뮤니티 mattpocock ⚡ 바로 사용

mattpocock/skills

제작: mattpocock · mattpocock/skills

Matt Pocock의 개인 .claude 디렉터리 — TS OG에서 직접 얻은 독보적인 TypeScript, 테스트 및 워크플로 기술입니다.

Matt Pocock(TypeScript 교육자, Total TypeScript 창시자)이 자신의 개인 Claude Code 기술 디렉토리를 게시했습니다. TS 관련 패턴, 테스트 철학, 리팩토링 패턴, 워크플로 의견이 포함되어 있습니다. 일반 번들이 아니라 한 명의 엔지니어가 실제로 설정한 것입니다.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

준비됨

설치

클라이언트 선택

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

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

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

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

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

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

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

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

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

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

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

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

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

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

사용 사례

실전 활용법: mattpocock/skills

Matt의 TS 패턴을 기존 프로젝트에 적용

👤 TypeScript 개발자가 코드 품질을 업그레이드하고 있습니다. ⏱ ~90 min intermediate

언제 쓸까: 귀하의 프로젝트에는 '모든' 유형이 있고 어깨를 으쓱할 만한 유형이 있으며 원칙에 따른 정리를 원합니다.

사전 조건
  • 설치된 스킬 — 자식 클론 https://github.com/mattpocock/skills ~/.claude/skills/mattpocock
흐름
  1. Scan
    Use mattpocock/ts-review. Scan /src and list every any, every unsafe cast, every type hole. Group by file.✓ 복사됨
    → Itemized findings, not a summary
  2. 원칙으로 고치세요
    Fix the top 20, narrowest fix per case. Respect Matt's "prefer inference" rule — don't explicit-annotate what TS can infer.✓ 복사됨
    → Minimal diffs, type-safety gained
  3. 확인하다
    Run tsc --noEmit. Any regressions?✓ 복사됨
    → Clean compile or precisely-scoped remaining items

결과: 원칙적인 방법론을 따르는 훨씬 더 유형이 안전한 코드베이스입니다.

함정
  • Skill applies Matt's opinions where your team disagrees (e.g. interface vs type) — Override with "skip the interface-vs-type conversion, keep existing style"
함께 쓰기: 파일 시스템

Matt의 방식으로 기능 테스트 우선 구축

👤 더 많은 테스트를 진행하는 워크플로를 채택하는 개발자 ⏱ ~60 min intermediate

언제 쓸까: 새로운 기능을 구축하고 최신 TS 도구를 사용하여 먼저 테스트해 보고 싶습니다.

흐름
  1. 테스트 작성
    Use mattpocock/test-first. I want to add a parseInvoice function. Write the test (vitest, integration-over-unit bias) before any impl.✓ 복사됨
    → Failing test with realistic fixtures
  2. 구현하다
    Now the minimal implementation. Type-safe, no any.✓ 복사됨
    → Green test with clean types
  3. 리팩터링
    Apply refactor patterns from the skill — extract helpers if they earn it, no premature abstraction.✓ 복사됨
    → Refactor only where the skill's criteria are met

결과: 동작을 테스트하는 테스트 스위트, 이를 만족시키는 impl, 리팩토링에 대한 제한입니다.

함정
  • Opinions collide with team's existing Jest setup — Ask the skill to adapt — it's opinionated but can be reoriented
함께 쓰기: 파일 시스템

조합

다른 MCP와 조합해 10배 효율

mattpocock-skills-skill + filesystem

Apply to a full repo

전체 /src 트리에 대해 ts_review를 실행하고 보고합니다.✓ 복사됨
mattpocock-skills-skill + github

Open a PR per review

상위 3개 정리에 대해 각각 명확한 설명이 포함된 PR을 하나씩 만듭니다.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
ts_review path TS별 감사 0
test_first feature_spec 새로운 기능 시작하기 0
refactor_with_types path, goal 유형 보존 리팩터링 0

비용 및 제한

운영 비용

API 쿼터
N/A
호출당 토큰
검토가 많은 — 대규모 코드베이스에 대한 대규모 읽기를 위한 예산
금액
Free
먼저 디렉터리별로 범위를 지정하세요. 전부 스캔하지 마세요

보안

권한, 시크릿, 파급범위

최소 스코프: filesystem-read
자격 증명 저장: None
데이터 외부 송신: None

문제 해결

자주 발생하는 오류와 해결

스킬이 너무 독선적인 느낌

그게 요점입니다. 프롬프트에서 특정 의견을 무시하거나 포크하여 편집하세요.

권장사항이 팀 스타일과 충돌함

결과를 팀과 공유하세요. 명령이 아닌 토론 시작으로 사용

내 틈새 도서관을 모른다

기술은 TS-general입니다. 라이브러리의 문서를 컨텍스트에 추가하세요.

대안

mattpocock/skills 다른 것과 비교

대안언제 쓰나단점/장점
Your team's linter config대화형 검토가 아닌 CI 수준 시행이 필요합니다.LLM 추론 없음, 리팩터링 도움 없음
Biome / ESLint with typescript-eslint규칙 기반, 결정론적을 원함Matt의 기술이 수행하는 방식으로 추론을 설명하지 않습니다.

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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