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

wshobson commands

제작: wshobson · wshobson/commands

60개 이상의 Claude Code 슬래시 명령 — /commit, /review, /test, /docs, /refactor — 프로젝트 전반에서 일관성 유지.

wshobson/commands는 Claude Code를 위한 큐레이션된 슬래시 명령 세트입니다. 각 명령은 정확한 프롬프트와 지침이 있는 ~/.claude/commands의 Markdown 파일입니다. /commit을 실행하면 diff를 기반으로 깔끔한 conventional-commits 메시지를, /review는 구조화된 PR 리뷰를 받을 수 있습니다. wshobson/agents와 자연스럽게 연동됩니다.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

준비됨

설치

클라이언트 선택

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

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

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

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

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

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

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

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

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

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

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

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

claude mcp add wshobson-commands-skill -- git clone https://github.com/wshobson/commands ~/.claude/commands

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

사용 사례

실전 활용법: wshobson commands

작성하지 않고도 깔끔한 conventional commits 받기

👤 커밋 습관이 느슨한 개발자 ⏱ ~5 min beginner

언제 쓸까: 빠르게 출시 중이고 커밋 로그가 'wip', 'fix', 'wip2'처럼 보일 때.

사전 조건
  • Commands 설치 — git clone https://github.com/wshobson/commands ~/.claude/commands
흐름
  1. 변경사항 스테이징
    git add -p the relevant hunks (or full files).✓ 복사됨
    → 스테이징된 diff 확인
  2. 커밋 생성
    /commit✓ 복사됨
    → Conventional 스타일 메시지 제안
  3. 검토 후 출시
    Edit if needed, then git commit -m '...'✓ 복사됨
    → 깔끔한 로그 항목

결과: PR 설명에서 부끄럽지 않은 커밋 로그.

함정
  • 자동 감지된 스코프가 잘못됨 — 명시적으로 스코프 전달: /commit feat auth
함께 쓰기: wshobson-agents-skill

/test로 최신 diff에서 즉시 테스트 생성

👤 TDD는 싫지만 커버리지는 원하는 개발자 ⏱ ~15 min beginner

언제 쓸까: 로직을 출시하고 PR 전에 사후 테스트를 원할 때.

흐름
  1. /test 실행
    /test✓ 복사됨
    → 새 로직을 커버하는 테스트 파일 스캐폴딩
  2. 실행
    Run the test suite. Fix anything that fails.✓ 복사됨
    → 초록 테스트

결과: 수동으로 작성하지 않았을 커버리지.

내장 안전 프롬프트와 함께 /refactor로 핫스팟 리팩토링

👤 동작을 회귀시키지 않는 리팩토링을 원하는 개발자 ⏱ ~30 min intermediate

언제 쓸까: 함수가 복잡하고 회귀 없이 정리하고 싶을 때.

흐름
  1. 식별
    /refactor src/auth.ts:authenticate✓ 복사됨
    → 근거와 테스트 계획이 있는 diff
  2. 검증
    Run tests after each step✓ 복사됨
    → 단계별 검증

결과: 더 깔끔한 코드, 동일한 동작.

함께 쓰기: wshobson-agents-skill

조합

다른 MCP와 조합해 10배 효율

wshobson-commands-skill + wshobson-agents-skill

명령이 특정 에이전트를 트리거

/review pulls the code-reviewer agent automatically.✓ 복사됨
wshobson-commands-skill + wshobson-skills-skill

빠른 트리거에는 명령, 더 깊은 전문성에는 스킬

/test for fast generation; switch to skills/testing-strategy for design discussions.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
/commit type? scope? git 커밋 전 0
/review (diff implied) PR 열기 전 0
/test (diff implied) 온디맨드 커버리지 0
/refactor target 코드 정리 0
/docs target? 기능 작업 후 0

비용 및 제한

운영 비용

API 쿼터
해당 없음 — 로컬
호출당 토큰
명령별 다양 (/commit은 소규모, /refactor는 대규모)
금액
무료 (MIT)
개별 명령 Markdown을 편집하여 장황한 템플릿 트리밍

보안

권한, 시크릿, 파급범위

최소 스코프: filesystem-read filesystem-write
자격 증명 저장: 없음
데이터 외부 송신: 없음 — 순수 프롬프트

문제 해결

자주 발생하는 오류와 해결

/command가 인식되지 않음

파일이 .md 확장자로 ~/.claude/commands/에 있는지 확인; Claude Code 재시작

확인: List commands in chat with /
인수 파싱 실패

일부 명령은 위치 인수를, 일부는 명명된 인수를 기대함 — 명령 파일을 읽어 확인

출력 형식이 일관되지 않음

각 명령은 고정된 템플릿이 있음; 표류가 있다면 모델이 재정의하는 것 — 글로벌 시스템 프롬프트가 충돌하지 않는지 확인

대안

wshobson commands 다른 것과 비교

대안언제 쓰나단점/장점
wshobson/agents (sibling)슬래시 명령이 아닌 서브에이전트를 원할 때다른 호출 표면
Hesreallyhim/awesome-claude-code명령과 스킬의 큐레이션된 awesome 목록을 원할 때카탈로그, 런타임 아님

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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