muno-claude-plugin 1.16.2 → 1.16.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": "muno-claude-plugin",
3
- "version": "1.16.2",
3
+ "version": "1.16.3",
4
4
  "description": "Unleash Claude Code's full power - Complete development workflow with expert personas, TDD-based agents, and automated documentation",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {
@@ -2,7 +2,7 @@
2
2
  name: task-executor
3
3
  description: |
4
4
  Executes a single Task: reads Task file, generates unit tests (TDD), implements code,
5
- runs tests, calls code-reviewer, and updates status. Called by bulk-executor for parallel execution.
5
+ runs tests, calls code-reviewer, and updates status. Can be called in parallel for multiple Tasks.
6
6
  tools: Read, Write, Edit, Bash, Glob, Grep, Task
7
7
  model: sonnet
8
8
  ---
@@ -12,7 +12,7 @@ model: sonnet
12
12
  ## 역할
13
13
 
14
14
  **단일 Task 파일을 받아서 구현 완료**까지 수행.
15
- - bulk-executor가 병렬로 호출
15
+ - 병렬 호출 가능 (여러 Task 동시 실행)
16
16
  - 각 Task는 독립적인 컨텍스트에서 실행
17
17
 
18
18
  ---
@@ -1,90 +0,0 @@
1
- ---
2
- name: bulk-executor
3
- description: |
4
- Executes multiple TODO status Tasks in parallel by spawning task-executor subagents.
5
- Use when user requests "execute all tasks", "implement all tasks", "bulk execute",
6
- "모든 task 실행", "일괄 처리". Each Task runs in isolated context for stability.
7
- allowed-tools: Read, Glob, Grep, Task
8
- ---
9
-
10
- # Bulk Task Executor
11
-
12
- ## 역할
13
-
14
- `status: todo`인 Task들을 **병렬로 실행**.
15
- - 각 Task는 `task-executor` subagent가 독립적으로 처리
16
- - 컨텍스트 분리로 안정성 확보
17
-
18
- ---
19
-
20
- ## 실행 절차
21
-
22
- ### 1. Task 수집
23
- ```
24
- 1. Glob: documents/**/task-*.md 검색
25
- 2. 각 파일에서 status: todo 필터링
26
- 3. 의존성 순서 정렬 (depends_on 있으면)
27
- ```
28
-
29
- ### 2. 병렬 실행
30
- ```
31
- Task 도구로 task-executor subagent 병렬 호출:
32
-
33
- Task(
34
- subagent_type: "task-executor",
35
- prompt: "이 Task를 구현해줘: {task-file-path}",
36
- run_in_background: true
37
- )
38
- ```
39
-
40
- ### 3. 결과 수집
41
- ```
42
- TaskOutput으로 각 subagent 결과 수집
43
- ```
44
-
45
- ---
46
-
47
- ## 병렬 실행 방법
48
-
49
- **한 메시지에서 여러 Task 도구 호출** = 병렬 실행
50
-
51
- ```json
52
- // 동시에 3개 호출 (한 응답에서)
53
- { "tool": "Task", "subagent_type": "task-executor", "prompt": "구현: task-001.md", "run_in_background": true }
54
- { "tool": "Task", "subagent_type": "task-executor", "prompt": "구현: task-002.md", "run_in_background": true }
55
- { "tool": "Task", "subagent_type": "task-executor", "prompt": "구현: task-003.md", "run_in_background": true }
56
-
57
- // 결과 수집
58
- { "tool": "TaskOutput", "task_id": "{반환된 agent ID}", "block": true }
59
- ```
60
-
61
- ---
62
-
63
- ## 출력
64
-
65
- ```markdown
66
- ## Bulk Execution 완료
67
-
68
- ### 성공: {N}개
69
- | Task | 상태 | 생성 파일 |
70
- |------|------|----------|
71
- | task-001 | done | UserService.kt |
72
- | task-002 | done | UserRepository.kt |
73
-
74
- ### 실패: {M}개
75
- | Task | 원인 |
76
- |------|------|
77
- | task-003 | 의존성 누락 |
78
-
79
- ### 다음 단계
80
- 실패한 Task는 원인 해결 후 재실행
81
- ```
82
-
83
- ---
84
-
85
- ## 옵션
86
-
87
- | 옵션 | 설명 | 기본값 |
88
- |------|------|--------|
89
- | 병렬 개수 | 동시 실행 subagent 수 | 5 |
90
- | 순차 모드 | 의존성 있으면 순차 실행 | auto |