skills/perf-optimize/SKILL.md
성능 분석 및 최적화를 위한 체계적 가이드를 실행합니다.
npx skillsauth add excatt/superclaude-plusplus perf-optimizeInstall 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.
성능 분석 및 최적화를 위한 체계적 가이드를 실행합니다.
"추측하지 말고 측정하라"
측정 도구:
- 프로파일러 (cProfile, py-spy, Chrome DevTools)
- APM (Application Performance Monitoring)
- 로그 기반 분석
- 벤치마크 테스트
성능 병목 위치:
├── CPU Bound
│ ├── 알고리즘 복잡도
│ ├── 반복 연산
│ └── 직렬화/역직렬화
├── I/O Bound
│ ├── 데이터베이스 쿼리
│ ├── 네트워크 호출
│ ├── 파일 시스템
│ └── 외부 API
└── Memory Bound
├── 메모리 누수
├── 큰 객체 복사
└── 캐시 미스
캐싱 계층:
L1: 메모리 캐시 (ms)
L2: Redis/Memcached (10ms)
L3: CDN (50ms)
L4: 데이터베이스 (100ms+)
캐시 무효화:
- TTL 기반
- 이벤트 기반
- Write-through
- Write-behind
응답 시간 (p50, p95, p99)
처리량 (RPS)
에러율
CPU/메모리 사용률
LCP (Largest Contentful Paint): < 2.5s
FID (First Input Delay): < 100ms
CLS (Cumulative Layout Shift): < 0.1
TTI (Time to Interactive): < 3.8s
## Performance Analysis Report
### Executive Summary
- 현재 상태: [Good/Needs Improvement/Critical]
- 주요 병목: [식별된 병목]
- 예상 개선: [X% 성능 향상 가능]
### Profiling Results
| 구간 | 현재 | 목표 | 상태 |
|------|------|------|------|
| API 응답 | 500ms | 200ms | ❌ |
| DB 쿼리 | 300ms | 50ms | ❌ |
### Bottleneck Analysis
#### [병목 1] 설명
- 위치: 파일:라인
- 영향: 전체 응답 시간의 60%
- 원인: N+1 쿼리
- 해결: Eager loading 적용
### Optimization Plan
1. [즉시] 퀵윈 최적화
2. [단기] 캐싱 도입
3. [중기] 아키텍처 개선
### Before/After Comparison
Before: 500ms (p95) After: 150ms (p95) - 예상 개선: 70% 성능 향상
위 가이드를 기반으로 성능 분석 및 최적화 방안을 제시하세요.
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
실시간 통신 설계 가이드를 실행합니다.