From ccpp
Detects and removes technical debt like unused imports, console.logs, debuggers, and TODOs in TypeScript codebases. Reports duplicates, any types, long functions, and deep nesting. Use before session end.
npx claudepluginhub jh941213/my-cc-harness --plugin ccppThis skill is limited to using the following tools:
세션 종료 전 코드베이스의 기술 부채를 찾아 정리합니다.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
세션 종료 전 코드베이스의 기술 부채를 찾아 정리합니다.
# 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)