jun-claude-code 0.4.2 → 0.4.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jun-claude-code",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Claude Code configuration template - copy .claude settings to your project",
5
5
  "main": "dist/index.js",
6
6
  "bin": "dist/cli.js",
@@ -10,8 +10,8 @@ Main Agent의 Context Window는 제한적입니다. Subagent가 할 수 있는
10
10
 
11
11
  | 작업 | 전담 Agent | 참조 Skill |
12
12
  |------|-----------|-----------|
13
- | 코드베이스 탐색/검색 | `explore` | - |
14
- | 여러 파일 읽기 | `explore`, `context-collector` | - |
13
+ | 파일 위치 찾기 (Glob/Grep) | `explore` | - |
14
+ | 파일 내용 분석/여러 파일 읽기 | `context-collector` | - |
15
15
  | .claude/context/ 문서 수집 | `project-context-collector` | - |
16
16
  | 코드 패턴/구조 파악 | `context-collector` | - |
17
17
  | 복잡한 계획 수립 | `task-planner` | - |
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: context-collector
3
- description: 실제 소스 코드에서 패턴/구현 방식/도메인 지식을 수집. Skill/Agent 식별, 코드 DEEP 탐색 전문.
3
+ description: 소스 코드에서 패턴/구현 방식/도메인 지식을 수집. 파일 내용 분석/정리, Skill/Agent 식별, 코드 DEEP 탐색 전문.
4
4
  keywords: [코드탐색, 패턴파악, Skill식별, 도메인지식, 아키텍처분석, DEEP탐색, 소스코드]
5
5
  model: opus
6
6
  color: blue
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: explore
3
- description: 파일 위치/코드 검색이 필요할 때 호출. Glob/Grep으로 빠른 탐색, 파일 구조 파악.
3
+ description: 파일 위치/코드 검색이 필요할 때 호출. Glob/Grep으로 빠른 탐색, 파일 구조 파악. 내용 분석/정리는 context-collector 사용.
4
4
  keywords: [탐색, 검색, 파일찾기, 패턴매칭, 구조파악, Glob, Grep, 빠른검색]
5
5
  model: haiku
6
6
  color: gray
@@ -16,6 +16,7 @@ color: gray
16
16
  2. **키워드 검색**: Grep으로 특정 코드/텍스트 검색
17
17
  3. **구조 파악**: 디렉토리 구조, 모듈 구성 파악
18
18
  4. **빠른 응답**: 깊은 분석 없이 위치/패턴만 찾기
19
+ 5. **범위 제한**: 파일 위치와 패턴만 찾기 — 내용 분석/요약/정리는 context-collector가 담당
19
20
 
20
21
  </role>
21
22
 
@@ -48,8 +49,10 @@ color: gray
48
49
  - 모듈 구조/아키텍처 개요 파악
49
50
  ```
50
51
 
51
- **context-collector** (소스 코드 DEEP 탐색):
52
+ **context-collector** (내용 분석/정리 + 소스 코드 DEEP 탐색):
52
53
  ```
54
+ - 파일 내용을 읽고 전반적으로 파악/정리
55
+ - 여러 파일의 내용을 분석하여 요약
53
56
  - 깊은 코드 분석 필요
54
57
  - 여러 파일 간 관계 파악
55
58
  - Skill/Agent 식별
@@ -40,10 +40,10 @@ Main Agent의 Context Window는 제한적입니다.
40
40
 
41
41
  | 작업 | 전담 Agent |
42
42
  |------|-----------|
43
- | 파일 탐색 (Glob/Grep) | explore Agent가 전담 |
43
+ | 파일 위치 탐색 (Glob/Grep) | explore Agent가 전담 |
44
44
  | .claude/context/ 문서 탐색 | project-context-collector가 전담 |
45
45
  | 소스 코드 패턴/구조 파악 | context-collector가 전담 |
46
- | 2개 이상 파일 읽기 | explore/context-collector가 전담 |
46
+ | 파일 내용 분석/여러 파일 읽기 | context-collector가 전담 |
47
47
  | 복잡한 분석/계획 | task-planner에 위임 |
48
48
  | 파일 수정 (3개 이상) | code-writer가 전담 |
49
49
  | Git 명령어 실행 (git add, commit, push 등) | git-manager에 위임 |