skills/debug/SKILL.md
체계적 디버깅을 위한 구조화된 접근법을 실행합니다.
npx skillsauth add excatt/superclaude-plusplus debugInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
체계적 디버깅을 위한 구조화된 접근법을 실행합니다.
질문:
- 예상 동작은?
- 실제 동작은?
- 언제부터 발생?
- 재현 가능한가?
- 재현 조건은?
수집 대상:
├── 에러 메시지 (전체)
├── 스택 트레이스
├── 로그 (시간순)
├── 입력 데이터
├── 환경 정보
│ ├── OS / 브라우저
│ ├── 버전 정보
│ └── 환경변수
└── 최근 변경사항
가설 우선순위:
1. 가장 최근 변경된 코드
2. 가장 단순한 원인
3. 과거 유사 버그
4. 외부 의존성
기법:
- 이진 탐색 (bisect)
- 최소 재현 케이스
- 변수 하나씩 제거
- 로그/브레이크포인트 추가
- 단위 테스트 작성
체크리스트:
- [ ] 근본 원인 해결 (증상만 X)
- [ ] 사이드 이펙트 확인
- [ ] 회귀 테스트 추가
- [ ] 문서화 (필요시)
Python: pdb, ipdb, py-spy, cProfile
JS/TS: Chrome DevTools, node --inspect
Java: jdb, VisualVM
Go: delve
Rust: rust-gdb, rust-lldb
# Git bisect
git bisect start
git bisect bad HEAD
git bisect good <commit>
# 로그 레벨 조정
DEBUG=* node app.js
LOG_LEVEL=debug python app.py
## Debug Report
### Problem Statement
- 예상: [예상 동작]
- 실제: [실제 동작]
- 재현: [재현 단계]
### Investigation
#### Hypothesis 1: [가설]
- 검증: [검증 방법]
- 결과: ✅/❌
#### Root Cause
- 위치: 파일:라인
- 원인: [근본 원인]
- 증거: [로그/스택트레이스]
### Solution
```code
// 수정 전
...
// 수정 후
...
---
위 프레임워크를 사용하여 체계적으로 디버깅하세요.
testing
사용자 계획을 기존 도메인 모델에 대해 stress-test하는 인터뷰 세션. 용어를 날카롭게 다듬고, 결정이 굳어질 때마다 CONTEXT.md(도메인 어휘 사전)와 ADR을 인라인으로 갱신한다. 새 기능 요구사항 탐색은 `/brainstorm`을, 기존 도메인 모델·용어와의 정합성 점검은 이 스킬을 사용한다.
development
# Excel (XLSX) Spreadsheet Skill Claude Code supports comprehensive spreadsheet operations through the **xlsx** skill, enabling creation, editing, and analysis of Excel files (.xlsx, .xlsm, .csv, .tsv). ## Trigger - When user needs Excel spreadsheet creation or editing - Financial modeling or data analysis required - Spreadsheet formulas and calculations needed - Data import from CSV/TSV files ## Core Capabilities **Primary functions include:** - Creating new spreadsheets with formulas and f
tools
Generate structured implementation workflows from PRDs and feature requirements
development
실시간 통신 설계 가이드를 실행합니다.