binary-agents 1.1.4 → 1.3.0
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 +9 -3
- package/agents/code-reviewer.md +84 -97
- package/agents/fundamentals-cohesion.md +293 -0
- package/agents/fundamentals-coupling.md +372 -0
- package/agents/fundamentals-predictability.md +287 -0
- package/agents/fundamentals-readability.md +561 -0
- package/agents/junior-checker.md +93 -445
- package/agents/maintainable-code-reviewer.md +30 -133
- package/agents/react-performance-optimizer.md +89 -295
- package/agents/react-principles-reviewer.md +174 -237
- package/agents/refactor-analyzer.md +74 -253
- package/agents/subagent-builder.md +69 -75
- package/commands/branch.md +9 -2
- package/commands/code-review.md +24 -12
- package/commands/commit.md +5 -3
- package/commands/design-to-code.md +26 -11
- package/commands/pr.md +25 -13
- package/commands/review-pr.md +26 -5
- package/docs/BUILDER_GUIDE.md +5 -2
- package/package.json +1 -1
- package/agents/fundamentals-code.md +0 -993
package/docs/BUILDER_GUIDE.md
CHANGED
|
@@ -50,7 +50,10 @@ Builder가 자동으로:
|
|
|
50
50
|
| `code-reviewer` | 아키텍처, 타입, 에러 처리, 테스트, 접근성, 보안 |
|
|
51
51
|
| `refactor-analyzer` | 코드 중복, 복잡성, 추상화 기회 |
|
|
52
52
|
| `junior-checker` | 주니어 친화성 |
|
|
53
|
-
| `fundamentals-
|
|
53
|
+
| `fundamentals-readability` | Toss Fundamentals - 가독성 |
|
|
54
|
+
| `fundamentals-predictability` | Toss Fundamentals - 예측 가능성 |
|
|
55
|
+
| `fundamentals-cohesion` | Toss Fundamentals - 응집도 |
|
|
56
|
+
| `fundamentals-coupling` | Toss Fundamentals - 결합도 |
|
|
54
57
|
| `react-performance-optimizer` | React 성능 최적화 |
|
|
55
58
|
| `react-principles-reviewer` | React 개발 원칙 (응집도/명시성, Props 관리, 네이밍, 부수효과) |
|
|
56
59
|
| `maintainable-code-reviewer` | 유지보수성 (UI-코드 1:1 대응, 분리의 4원칙) |
|
|
@@ -60,7 +63,7 @@ Builder가 자동으로:
|
|
|
60
63
|
**프레임워크 특화:**
|
|
61
64
|
```bash
|
|
62
65
|
"code-reviewer를 Next.js 14 App Router에 맞게 수정해줘"
|
|
63
|
-
"fundamentals-
|
|
66
|
+
"fundamentals-readability를 Vue 3에 맞게 적용해줘"
|
|
64
67
|
```
|
|
65
68
|
|
|
66
69
|
**도메인 특화:**
|