소스 정보
- 저장소
- bobmatnyc/claude-mpm
- 최근 소스 활동
- 2026년 4월 2일 15:16
- 감지된 SKILL.md 언어
- 영어
- 스타
- 149
- 포크
- 33
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bobmatnyc/claude-mpm --skill test-driven-development명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
MCP (Model Context Protocol) - Build AI-native servers with tools, resources, and prompts. TypeScript/Python SDKs for Claude Desktop integration.
Model Context Protocol (MCP) server build and evaluation guide, including local conventions for tool surfaces, config, and testing
Control monitoring server and dashboard
SOC 직업 분류 기준
SKILL.md 표시 중
| name | test-driven-development |
| description | Write the test first, watch it fail, write minimal code to pass |
| version | 3.2.0 |
| category | testing |
| author | Jesse Vincent |
| license | MIT |
| source | https://github.com/obra/superpowers-skills/tree/main/skills/testing/test-driven-development |
| progressive_disclosure | {"entry_point":{"summary":"Enforce test-first development with strict RED/GREEN/REFACTOR cycle. Never write implementation before failing test.","when_to_use":"When implementing any feature or bugfix, before writing implementation code. Always for new features, bug fixes, refactoring, and behavior changes.","quick_start":"1. Write failing test 2. Watch it fail (verify) 3. Write minimal code to pass 4. Watch it pass (verify) 5. Refactor if needed 6. Repeat"},"references":["workflow.md","examples.md","philosophy.md","anti-patterns.md","integration.md"]} |
| context_limit | 800 |
| tags | ["tdd","testing","red-green-refactor","test-first"] |
| effort | high |
Write the test first. Watch it fail. Write minimal code to pass.
Core principle: If you didn't watch the test fail, you don't know if it tests the right thing.
This skill enforces strict test-first development following the RED/GREEN/REFACTOR cycle. Violating the letter of the rules is violating the spirit of the rules.
Always:
Exceptions (ask human partner):
Thinking "skip TDD just this once"? Stop. That's rationalization.
NO PRODUCTION CODE WITHOUT A FAILING TEST FIRST
Write code before the test? Delete it. Start over.
No exceptions:
RED → Verify RED → GREEN → Verify GREEN → REFACTOR → Repeat
RED: Write one minimal test (one behavior, clear name, real code) Verify RED: MANDATORY - watch it fail for right reason GREEN: Write simplest code to pass (no extras) Verify GREEN: MANDATORY - watch it pass, all tests pass REFACTOR: Clean up while keeping tests green (optional)
For detailed information:
If you catch yourself:
ALL of these mean: Delete code. Start over with TDD.
Tests-after pass immediately (proves nothing), test-first fail then pass (proves it works). See Philosophy for detailed explanation.
From TDD practice:
TDD is pragmatic - finds bugs before commit, prevents regressions, documents behavior, enables refactoring.