binary-agents 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -77,10 +77,13 @@ npx binary-agents list
77
77
  - `refactor-analyzer.md` - 리팩토링 분석기
78
78
  - `junior-friendly-checker.md` - 주니어 친화성 체커
79
79
 
80
- ### 고급 버전 (Sonnet 모델)
80
+ ### 고급 버전 (Opus 모델)
81
81
  - `advanced-code-reviewer.md` - 고급 코드 리뷰어
82
82
  - `advanced-refactor-analyzer.md` - 고급 리팩토링 분석기
83
83
  - `advanced-junior-checker.md` - 고급 주니어 친화성 체커
84
+ - `react-performance-optimizer.md` - React 성능 최적화
85
+ - `toss-cohesion-analyzer.md` - Toss 응집도 분석기
86
+ - `subagent-builder.md` - 서브에이전트 빌더
84
87
 
85
88
  ## 저장소 구조
86
89
 
@@ -93,6 +96,8 @@ binary-agents/
93
96
  │ ├── advanced-refactor-analyzer.md
94
97
  │ ├── junior-friendly-checker.md
95
98
  │ ├── advanced-junior-checker.md
99
+ │ ├── toss-cohesion-analyzer.md
100
+ │ ├── react-performance-optimizer.md
96
101
  │ └── subagent-builder.md
97
102
  ├── bin/ # CLI 실행 파일
98
103
  ├── src/ # CLI 소스 코드
@@ -1,8 +1,8 @@
1
1
  ---
2
2
  name: advanced-code-reviewer
3
- description: Deep code analysis with architectural insights and web-based best practices research. Uses Sonnet for superior reasoning and WebFetch/WebSearch for up-to-date patterns and recommendations.
3
+ description: Deep code analysis with architectural insights and web-based best practices research. Uses Opus for superior reasoning and WebFetch/WebSearch for up-to-date patterns and recommendations.
4
4
  tools: Read, Glob, Grep, WebFetch, WebSearch
5
- model: sonnet
5
+ model: opus
6
6
  ---
7
7
 
8
8
  # Advanced Code Quality Reviewer
@@ -1,8 +1,8 @@
1
1
  ---
2
2
  name: advanced-junior-checker
3
- description: Evaluates code readability from a junior developer perspective with research-backed recommendations. Uses Sonnet for empathetic analysis and web tools to find learning resources and onboarding best practices.
3
+ description: Evaluates code readability from a junior developer perspective with research-backed recommendations. Uses Opus for empathetic analysis and web tools to find learning resources and onboarding best practices.
4
4
  tools: Read, Glob, Grep, WebFetch, WebSearch
5
- model: sonnet
5
+ model: opus
6
6
  ---
7
7
 
8
8
  # Advanced Junior Developer Readability Checker
@@ -1,8 +1,8 @@
1
1
  ---
2
2
  name: advanced-refactor-analyzer
3
- description: Deep refactoring analysis with industry pattern research and architectural recommendations. Uses Sonnet for sophisticated reasoning and web tools to compare against modern refactoring strategies and design patterns.
3
+ description: Deep refactoring analysis with industry pattern research and architectural recommendations. Uses Opus for sophisticated reasoning and web tools to compare against modern refactoring strategies and design patterns.
4
4
  tools: Read, Glob, Grep, WebFetch, WebSearch
5
- model: sonnet
5
+ model: opus
6
6
  ---
7
7
 
8
8
  # Advanced Refactoring Opportunity Analyzer
@@ -2,7 +2,7 @@
2
2
  name: react-performance-optimizer
3
3
  description: Analyzes React applications for performance bottlenecks including re-render optimization, context splitting, hook dependencies, memoization opportunities, and React 19+ patterns. Provides measurable performance improvement recommendations.
4
4
  tools: Read, Glob, Grep, WebFetch, WebSearch
5
- model: sonnet
5
+ model: opus
6
6
  ---
7
7
 
8
8
  # React Performance Optimizer
@@ -2,7 +2,7 @@
2
2
  name: subagent-builder
3
3
  description: Creates, modifies, and customizes Claude subagents based on user requirements. Analyzes existing subagents, generates new ones, and adapts them for specific project needs.
4
4
  tools: Read, Glob, Grep, Write, Edit, WebFetch, WebSearch
5
- model: sonnet
5
+ model: opus
6
6
  ---
7
7
 
8
8
  # Subagent Builder & Manager
@@ -2,7 +2,7 @@
2
2
  name: toss-cohesion-analyzer
3
3
  description: Analyzes React/TypeScript code using Toss team's cohesion and coupling principles. Evaluates code organization, readability patterns, context switching, consistency, and practical duplication strategies based on Toss frontend fundamentals.
4
4
  tools: Read, Glob, Grep
5
- model: haiku
5
+ model: opus
6
6
  ---
7
7
 
8
8
  # Toss Cohesion & Coupling Analyzer
@@ -4,8 +4,8 @@
4
4
 
5
5
  | 항목 | 기본 버전 (Basic) | 고급 버전 (Advanced) |
6
6
  |------|------------------|---------------------|
7
- | **모델** | Haiku | Sonnet |
8
- | **토큰 비용** | ~$0.25 per 1M input | ~$3.00 per 1M input |
7
+ | **모델** | Haiku | Opus |
8
+ | **토큰 비용** | ~$0.25 per 1M input | ~$15.00 per 1M input |
9
9
  | **추론 능력** | 패턴 매칭, 규칙 기반 | 심층 추론, 컨텍스트 이해 |
10
10
  | **도구** | Read, Glob, Grep | Read, Glob, Grep, WebFetch, WebSearch |
11
11
  | **실행 시간** | 5-10분 | 15-20분 |
@@ -60,7 +60,7 @@ tools: Read, Glob, Grep
60
60
 
61
61
  ```yaml
62
62
  name: advanced-code-reviewer
63
- model: sonnet
63
+ model: opus
64
64
  tools: Read, Glob, Grep, WebFetch, WebSearch
65
65
  ```
66
66
 
@@ -185,7 +185,7 @@ export function validateEmail(email: string): boolean {
185
185
 
186
186
  ```yaml
187
187
  name: advanced-refactor-analyzer
188
- model: sonnet
188
+ model: opus
189
189
  tools: Read, Glob, Grep, WebFetch, WebSearch
190
190
  ```
191
191
 
@@ -353,7 +353,7 @@ tools: Read, Glob, Grep
353
353
 
354
354
  ```yaml
355
355
  name: advanced-junior-checker
356
- model: sonnet
356
+ model: opus
357
357
  tools: Read, Glob, Grep, WebFetch, WebSearch
358
358
  ```
359
359
 
@@ -567,7 +567,7 @@ Claude는 **파일 이름**으로 서브에이전트를 선택합니다.
567
567
  ```
568
568
  "advanced-code-reviewer를 사용해서 최신 베스트 프랙티스와 비교해줘"
569
569
  ```
570
- → `advanced-code-reviewer.md`가 실행됨 (Sonnet, 웹 리서치)
570
+ → `advanced-code-reviewer.md`가 실행됨 (Opus, 웹 리서치)
571
571
 
572
572
  #### 3. 암묵적 사용 (추천!)
573
573
  상황에 맞게 요청하면 Claude가 적절한 에이전트 선택:
@@ -584,7 +584,7 @@ Claude는 **파일 이름**으로 서브에이전트를 선택합니다.
584
584
  최신 문서와 비교해서 분석하고, 부족한 부분에 대한
585
585
  학습 자료도 찾아줘"
586
586
  ```
587
- → Claude가 `advanced-code-reviewer` 선택 (Sonnet + 웹)
587
+ → Claude가 `advanced-code-reviewer` 선택 (Opus + 웹)
588
588
 
589
589
  ---
590
590
 
@@ -659,7 +659,7 @@ Claude: [advanced-junior-checker 사용]
659
659
  - 업계 표준 궁금
660
660
  - 왜 문제인지 깊은 이해 필요
661
661
 
662
- ### 고급 버전 (Sonnet) 사용
662
+ ### 고급 버전 (Opus) 사용
663
663
  ✅ **이럴 때 사용:**
664
664
  - 아키텍처 리뷰
665
665
  - 최신 2025 패턴 확인
package/docs/SUBAGENTS.md CHANGED
@@ -8,7 +8,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
8
8
 
9
9
  | 특징 | 기본 버전 | 고급 버전 |
10
10
  |------|----------|----------|
11
- | **모델** | Haiku (빠름, 저렴) | Sonnet (강력, 심층 분석) |
11
+ | **모델** | Haiku (빠름, 저렴) | Opus (최강, 심층 분석) |
12
12
  | **도구** | Read, Glob, Grep | Read, Glob, Grep, WebFetch, WebSearch |
13
13
  | **속도** | ⚡⚡⚡ 매우 빠름 | ⚡⚡ 빠름 |
14
14
  | **비용** | 💰 저렴 | 💰💰 보통 |
@@ -24,7 +24,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
24
24
 
25
25
  #### [subagent-builder.md](subagent-builder.md) - 메타 에이전트 ⭐⭐⭐
26
26
  ```yaml
27
- 모델: sonnet
27
+ 모델: opus
28
28
  도구: Read, Glob, Grep, Write, Edit, WebFetch, WebSearch
29
29
  설명: 서브에이전트를 생성, 수정, 커스터마이징하는 메타 에이전트
30
30
  ```
@@ -81,7 +81,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
81
81
 
82
82
  #### [toss-cohesion-analyzer.md](../agents/toss-cohesion-analyzer.md) - Toss 원칙 특화 ⭐⭐⭐
83
83
  ```yaml
84
- 모델: haiku
84
+ 모델: opus
85
85
  도구: Read, Glob, Grep
86
86
  설명: 토스 팀의 16가지 코드 품질 원칙을 기반으로 응집도, 결합도, 가독성 분석
87
87
  ```
@@ -142,7 +142,52 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
142
142
 
143
143
  ---
144
144
 
145
- ### 2. Code Quality Reviewers (코드 품질 리뷰어)
145
+ ### 2. React Performance Optimizer (React 성능 최적화) 🆕 **SPECIAL**
146
+
147
+ #### [react-performance-optimizer.md](../agents/react-performance-optimizer.md) - 성능 분석 특화 ⭐⭐⭐
148
+ ```yaml
149
+ 모델: opus
150
+ 도구: Read, Glob, Grep, WebFetch, WebSearch
151
+ 설명: React 앱의 성능 병목점 분석 - 리렌더 최적화, 컨텍스트 분할, 훅 의존성, 메모이제이션, React 19+ 패턴
152
+ ```
153
+
154
+ **주요 기능:**
155
+ - 🔄 리렌더 최적화 (React.memo, useMemo, useCallback)
156
+ - 📦 컨텍스트 최적화 (State/Dispatch/Config 분리 패턴)
157
+ - 🎣 훅 의존성 검증 (stale closure, ESLint disable 탐지)
158
+ - ⚡ 모던 React 패턴 (useSyncExternalStore, useTransition)
159
+ - 📊 번들 사이즈 & 코드 스플리팅 분석
160
+
161
+ **평가 항목 (5개):**
162
+ - 🔄 Re-render Optimization (30%)
163
+ - 📦 Context Optimization (25%)
164
+ - 🎣 Hook Dependencies (20%)
165
+ - ⚡ Modern React Patterns (15%)
166
+ - 📊 Bundle Size (10%)
167
+
168
+ **언제 사용하나요?**
169
+ - ✅ React 앱이 느리게 느껴질 때
170
+ - ✅ 불필요한 리렌더를 줄이고 싶을 때
171
+ - ✅ Context 구조를 최적화하고 싶을 때
172
+ - ✅ React 19+ 최신 패턴을 적용하고 싶을 때
173
+
174
+ **사용 예시:**
175
+ ```bash
176
+ "react-performance-optimizer로 이 프로젝트 분석해줘"
177
+ "리렌더가 너무 많이 발생하는 것 같아"
178
+ "Context 구조를 최적화하고 싶어"
179
+ ```
180
+
181
+ **출력물:**
182
+ - 📊 Performance Score (100점 만점)
183
+ - 🔥 High Priority (Quick Wins)
184
+ - ⚠️ Medium Priority
185
+ - 📈 Impact Metrics (렌더 횟수 감소율)
186
+ - 🛣️ Implementation Roadmap
187
+
188
+ ---
189
+
190
+ ### 4. Code Quality Reviewers (코드 품질 리뷰어)
146
191
 
147
192
  #### [code-reviewer.md](code-reviewer.md) - 기본 버전
148
193
  ```yaml
@@ -167,7 +212,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
167
212
 
168
213
  #### [advanced-code-reviewer.md](advanced-code-reviewer.md) - 고급 버전 ⭐
169
214
  ```yaml
170
- 모델: sonnet
215
+ 모델: opus
171
216
  도구: Read, Glob, Grep, WebFetch, WebSearch
172
217
  설명: 심층 아키텍처 분석 + 웹 기반 베스트 프랙티스 리서치
173
218
  ```
@@ -195,7 +240,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
195
240
 
196
241
  ---
197
242
 
198
- ### 3. Refactoring Analyzers (리팩토링 분석기)
243
+ ### 5. Refactoring Analyzers (리팩토링 분석기)
199
244
 
200
245
  #### [refactor-analyzer.md](refactor-analyzer.md) - 기본 버전
201
246
  ```yaml
@@ -220,7 +265,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
220
265
 
221
266
  #### [advanced-refactor-analyzer.md](advanced-refactor-analyzer.md) - 고급 버전 ⭐
222
267
  ```yaml
223
- 모델: sonnet
268
+ 모델: opus
224
269
  도구: Read, Glob, Grep, WebFetch, WebSearch
225
270
  설명: 심층 리팩토링 분석 + 업계 패턴 리서치 + 아키텍처 권장사항
226
271
  ```
@@ -254,7 +299,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
254
299
 
255
300
  ---
256
301
 
257
- ### 4. Junior Developer Readability Checkers (주니어 친화성 검사기)
302
+ ### 6. Junior Developer Readability Checkers (주니어 친화성 검사기)
258
303
 
259
304
  #### [junior-friendly-checker.md](junior-friendly-checker.md) - 기본 버전
260
305
  ```yaml
@@ -284,7 +329,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
284
329
 
285
330
  #### [advanced-junior-checker.md](advanced-junior-checker.md) - 고급 버전 ⭐
286
331
  ```yaml
287
- 모델: sonnet
332
+ 모델: opus
288
333
  도구: Read, Glob, Grep, WebFetch, WebSearch
289
334
  설명: 리서치 기반 권장사항 + 학습 리소스 큐레이션
290
335
  ```
@@ -327,7 +372,7 @@ React/TypeScript 코드베이스 분석을 위한 Claude 서브에이전트 모
327
372
  - ✅ 명확한 패턴 기반 분석
328
373
  - ✅ CI/CD 파이프라인 자동화
329
374
 
330
- ### 고급 버전 (Sonnet) 선택
375
+ ### 고급 버전 (Opus) 선택
331
376
  - ⭐ 아키텍처 리뷰가 필요할 때
332
377
  - ⭐ 최신 베스트 프랙티스 확인
333
378
  - ⭐ 학습 리소스가 필요할 때
@@ -351,7 +396,7 @@ Claude는 **명시적으로 요청**해야 해당 서브에이전트를 실행
351
396
  → code-reviewer.md 실행 (Haiku, 빠름)
352
397
 
353
398
  "advanced-code-reviewer를 사용해서 최신 패턴과 비교해줘"
354
- → advanced-code-reviewer.md 실행 (Sonnet, 웹 리서치)
399
+ → advanced-code-reviewer.md 실행 (Opus, 웹 리서치)
355
400
  ```
356
401
 
357
402
  #### 방법 2: 상황 설명 (추천)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "binary-agents",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Claude Code subagents collection with sync CLI tool",
5
5
  "type": "module",
6
6
  "main": "src/sync.js",