@walwal-harness/cli 4.0.0-alpha.18 → 4.0.0-alpha.19

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": "@walwal-harness/cli",
3
- "version": "4.0.0-alpha.18",
3
+ "version": "4.0.0-alpha.19",
4
4
  "description": "Production harness for AI agent engineering — Planner, Generator(BE/FE), Evaluator(Func/Visual), optional Brainstormer (requirements refinement). Supports React and Flutter FE stacks.",
5
5
  "bin": {
6
6
  "walwal-harness": "bin/init.js"
@@ -1,77 +0,0 @@
1
- ---
2
- name: harness-team
3
- description: "v4 Parallel Agent Teams 모드 활성화. feature-queue 초기화 후 3개 Team worker를 백그라운드 실행한다. 트리거: '/harness-team', 'agent team 시작', 'team 모드'"
4
- disable-model-invocation: false
5
- ---
6
-
7
- # /harness-team — Parallel Agent Teams 활성화
8
-
9
- ## 이 스킬이 호출되면
10
-
11
- 1. **feature-queue.json 확인/초기화** — 없으면 feature-list.json에서 생성, 있으면 stale 복구
12
- 2. **3개 Team Worker를 백그라운드로 시작** — 각각 claude -p로 Gen→Eval 루프 자율 실행
13
- 3. **현재 세션은 유지** — 사용자는 오케스트레이터 역할 (모니터링, 실패 대응, 수동 개입)
14
-
15
- ## 실행 절차
16
-
17
- 아래 명령을 순서대로 실행하세요:
18
-
19
- ### Step 1: Queue 초기화/복구
20
-
21
- ```bash
22
- bash scripts/harness-queue-manager.sh init .
23
- ```
24
-
25
- 이미 queue가 있으면:
26
-
27
- ```bash
28
- bash scripts/harness-queue-manager.sh recover .
29
- ```
30
-
31
- ### Step 2: Team Worker 백그라운드 실행
32
-
33
- ```bash
34
- nohup bash scripts/harness-team-worker.sh 1 . > /tmp/harness-team-1.log 2>&1 &
35
- nohup bash scripts/harness-team-worker.sh 2 . > /tmp/harness-team-2.log 2>&1 &
36
- nohup bash scripts/harness-team-worker.sh 3 . > /tmp/harness-team-3.log 2>&1 &
37
- ```
38
-
39
- ### Step 3: 상태 확인
40
-
41
- ```bash
42
- bash scripts/harness-queue-manager.sh status .
43
- ```
44
-
45
- ## 실행 후 역할
46
-
47
- 이 세션은 **오케스트레이터**입니다:
48
- - `/harness-generator-*`, `/harness-evaluator-*` 스킬 호출 금지 (Teams가 처리)
49
- - 할 수 있는 것: 큐 상태 확인, 실패 분석, 코드 리뷰, gotcha 등록, requeue
50
-
51
- ### 유용한 명령
52
-
53
- ```bash
54
- # 큐 상태
55
- bash scripts/harness-queue-manager.sh status .
56
-
57
- # 실패한 feature 재큐
58
- bash scripts/harness-queue-manager.sh requeue F-XXX .
59
-
60
- # Team 로그 실시간 확인
61
- tail -f /tmp/harness-team-1.log
62
- tail -f /tmp/harness-team-2.log
63
- tail -f /tmp/harness-team-3.log
64
-
65
- # 모든 Team 중지
66
- pkill -f harness-team-worker || true
67
- ```
68
-
69
- ## tmux Studio (선택사항)
70
-
71
- 별도 터미널에서 tmux 레이아웃을 원하면:
72
-
73
- ```bash
74
- npx walwal-harness v4
75
- ```
76
-
77
- 이 명령은 **Claude 세션 밖에서** (일반 터미널에서) 실행해야 합니다.