# console.log 찾기
grep -r "console\." --include="*.ts" --include="*.tsx" src/
# TODO 주석 찾기
grep -rn "TODO\|FIXME\|HACK\|XXX" --include="*.ts" --include="*.tsx" src/
# any 타입 찾기
grep -rn ": any" --include="*.ts" --include="*.tsx" src/
출력 형식
## 기술 부채 리포트
### 중복 코드 (3건)
- src/utils.ts:formatDate ↔ src/helpers.ts:formatDateTime
### 사용하지 않는 import (12건)
- src/components/Button.tsx: React (unused)
### 디버그 코드 (5건)
- src/api/auth.ts:23 - console.log
### 코드 품질 이슈 (8건)
- src/services/user.ts:45 - any 타입 사용
총 28건의 기술 부채가 발견되었습니다.
자동 수정을 진행할까요? (Y/n)
자동 수정 범위
사용하지 않는 import 제거
console.log/debugger 제거
중복 코드는 리포트만 (수동 확인 필요)
1---2name: techdebt3description: 기술 부채 정리4---56# 기술 부채 정리78세션 종료 전 코드베이스의 기술 부채를 찾아 정리합니다.910## 검사 항목1112### 1. 중복 코드13- 유사한 함수/로직이 여러 파일에 있는지 확인14- 공통 유틸리티로 추출 가능한 코드 식별1516### 2. 사용하지 않는 코드17- 사용하지 않는 import 문18- 사용하지 않는 변수/함수19- 주석 처리된 코드 블록2021### 3. 디버그 코드22- console.log / console.error23- debugger 문24- 임시 주석 (// TODO, // FIXME, // HACK, // XXX)2526### 4. 코드 품질27- any 타입 사용 (TypeScript)28- 하드코딩된 값 (매직 넘버/스트링)29- 너무 긴 함수 (50줄 초과)30- 깊은 중첩 (4단계 초과)3132## 검사 명령어33```bash34# console.log 찾기35grep -r "console\." --include="*.ts" --include="*.tsx" src/3637# TODO 주석 찾기38grep -rn "TODO\|FIXME\|HACK\|XXX" --include="*.ts" --include="*.tsx" src/3940# any 타입 찾기41grep -rn ": any" --include="*.ts" --include="*.tsx" src/42```4344## 출력 형식45```46## 기술 부채 리포트4748### 중복 코드 (3건)49- src/utils.ts:formatDate ↔ src/helpers.ts:formatDateTime5051### 사용하지 않는 import (12건)52- src/components/Button.tsx: React (unused)5354### 디버그 코드 (5건)55- src/api/auth.ts:23 - console.log5657### 코드 품질 이슈 (8건)58- src/services/user.ts:45 - any 타입 사용5960총 28건의 기술 부채가 발견되었습니다.61자동 수정을 진행할까요? (Y/n)62```6364## 자동 수정 범위65- 사용하지 않는 import 제거66- console.log/debugger 제거67- 중복 코드는 리포트만 (수동 확인 필요)
Run npx skillmds@latest add jh941213/techdebt in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
기술 부채 정리 It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
jh941213 (@jh941213) published this skill. Their other Agent Skills are listed on their SkillMD profile.