@dusky-bluehour/agent-service 0.6.2 → 0.6.4

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
@@ -1,5 +1,9 @@
1
1
  # tri-agent-manager
2
2
 
3
+ ```bash
4
+ pnpm dlx --package=@dusky-bluehour/agent-service tri-agent-manager --interactive
5
+ ```
6
+
3
7
  Claude Code, Antigravity, Codex에서 공통으로 사용하실 수 있는 서비스 운영형 스킬/워크플로우 패키지입니다.
4
8
 
5
9
  ## 목적
@@ -128,12 +132,25 @@ pnpm dlx tri-agent-manager --interactive
128
132
 
129
133
  위 한 줄로 아래를 터미널에서 순서대로 선택하실 수 있습니다.
130
134
 
131
- 1. 설치 경로
135
+ 1. 설치 경로 (현재 위치 또는 직접 입력)
132
136
  2. 프리셋
133
137
  3. 도구(Claude Code/Antigravity/Codex)
134
138
  4. 구성요소(스킬, 워크플로우 등)
135
139
  5. 실행 확인
136
140
 
141
+ 도구별 실제 설치 루트:
142
+
143
+ - Claude Code: `<target>/.claude/*`
144
+ - Antigravity: `<target>/.agent/*`
145
+ - Codex: `<target>/.codex/*`
146
+ - 설치 직후 사용 가이드 자동 생성: `<target>/.tri-agent-manager/USAGE.ko.md`
147
+
148
+ 설치 경로 기준(근거 문서):
149
+
150
+ - Claude Code: `claude-code/README.md` + Claude Code Subagents 공식 문서
151
+ - Antigravity: `antigravity/README.md` 기준의 로컬 워크스페이스 규약(`.agent/*`)
152
+ - Codex: `codex/README.md` + Codex 공식 문서
153
+
137
154
  조작 키:
138
155
 
139
156
  - `↑/↓`: 이동
@@ -167,12 +184,45 @@ npx tri-agent-manager update --interactive
167
184
  - `--preset`: 미리 정의된 구성을 선택합니다.
168
185
  - `--tool`: 툴을 직접 선택합니다. (`codex,claude-code` 등)
169
186
  - `--components`: 구성요소를 직접 선택합니다. (`skills,workflows,commands` 등)
187
+ - `--install-root`: 도구별 설치 루트를 직접 지정합니다. (`codex=.codex,antigravity=.agent`)
170
188
  - `--interactive`: 한글 대화형 선택 UI를 사용합니다.
171
189
  - `--dry-run`: 실제 반영 없이 계획만 확인합니다.
172
190
  - `--yes`: 확인 프롬프트를 생략합니다.
173
191
 
174
192
  중복 선택 입력(예: `codex,codex,claude-code`)은 자동으로 1회로 정리됩니다.
175
193
 
194
+ ### 다른 폴더에 설치하는 명령어
195
+
196
+ ```bash
197
+ # 1) 전체 프리셋을 다른 프로젝트 경로에 설치
198
+ pnpm dlx --package=@dusky-bluehour/agent-service tri-agent-manager install \
199
+ --preset full-suite \
200
+ --target /path/to/your-project \
201
+ --yes --non-interactive
202
+ ```
203
+
204
+ ```bash
205
+ # 2) 특정 도구만 설치 (예: Antigravity)
206
+ pnpm dlx --package=@dusky-bluehour/agent-service tri-agent-manager install \
207
+ --tool antigravity \
208
+ --components skills,agents,artifacts,workflows,commands \
209
+ --target /path/to/your-project \
210
+ --yes --non-interactive
211
+ ```
212
+
213
+ ```bash
214
+ # 3) 도구별 설치 루트를 커스텀
215
+ pnpm dlx --package=@dusky-bluehour/agent-service tri-agent-manager install \
216
+ --preset balanced-core \
217
+ --install-root codex=.codex,claude-code=.claude,antigravity=.agent \
218
+ --target /path/to/your-project \
219
+ --yes --non-interactive
220
+ ```
221
+
222
+ 설치 후 실행 가이드는 아래 파일에서 확인하실 수 있습니다.
223
+
224
+ - `<target>/.tri-agent-manager/USAGE.ko.md`
225
+
176
226
  ## 프리셋
177
227
 
178
228
  - `balanced-core`: 기본 운영팩(추천)
@@ -7,8 +7,8 @@
7
7
  "workflows": [
8
8
  {
9
9
  "id": "WF-SVC-001",
10
- "name": "Plan-Implement-Test-Review-Release",
11
- "summary": "신규 서비스 또는 대형 기능 배치에 사용하는 기본 운영 파이프라인",
10
+ "name": "서비스 E2E 파이프라인 (PlanImplementTestReviewRelease)",
11
+ "summary": "신규 서비스 또는 대형 기능 배치에 사용하는 기본 운영 파이프라인입니다.",
12
12
  "orchestrator": "manager-agent",
13
13
  "stages": [
14
14
  {
@@ -91,12 +91,13 @@
91
91
  "final_outputs": [
92
92
  "ART-RELEASE-READY",
93
93
  "ART-OPERATIONS-HANDBOOK"
94
- ]
94
+ ],
95
+ "when_to_use": "신규 서비스, 대형 기능 릴리즈"
95
96
  },
96
97
  {
97
98
  "id": "WF-SVC-002",
98
- "name": "반복 프론트엔드 개선",
99
- "summary": "UI 컴포넌트화, Hook 분리, 최적화를 단일 체인으로 실행",
99
+ "name": "반복 프론트엔드 개선 (UI→Hook→성능)",
100
+ "summary": "UI 컴포넌트화, Hook 분리, 성능 최적화를 단일 체인으로 실행합니다.",
100
101
  "orchestrator": "manager-agent",
101
102
  "stages": [
102
103
  {
@@ -142,12 +143,13 @@
142
143
  ],
143
144
  "final_outputs": [
144
145
  "ART-PERF-IMPROVED"
145
- ]
146
+ ],
147
+ "when_to_use": "프론트 구조 개선, 성능 개선"
146
148
  },
147
149
  {
148
150
  "id": "WF-SVC-003",
149
- "name": "보안 강화 배치",
150
- "summary": "위협 모델링과 취약점 감사 기반의 하드닝",
151
+ "name": "보안 강화 배치 (진단→보완→검증)",
152
+ "summary": "위협 모델링과 취약점 감사 기반 하드닝을 수행합니다.",
151
153
  "orchestrator": "manager-agent",
152
154
  "stages": [
153
155
  {
@@ -195,12 +197,13 @@
195
197
  ],
196
198
  "final_outputs": [
197
199
  "ART-SECURITY-VERIFIED"
198
- ]
200
+ ],
201
+ "when_to_use": "정기 보안 배치, 취약점 대응"
199
202
  },
200
203
  {
201
204
  "id": "WF-SVC-004",
202
- "name": "장애 대응-재발 방지",
203
- "summary": "Incident triage 이후 근본 원인 수정까지 수행",
205
+ "name": "장애 대응/재발 방지 (트리아지→근본수정→포스트모템)",
206
+ "summary": "Incident triage 이후 근본 원인 수정과 후속 조치까지 수행합니다.",
204
207
  "orchestrator": "incident-manager-agent",
205
208
  "stages": [
206
209
  {
@@ -249,12 +252,13 @@
249
252
  ],
250
253
  "final_outputs": [
251
254
  "ART-POSTMORTEM-PACK"
252
- ]
255
+ ],
256
+ "when_to_use": "운영 장애 대응, RCA 필요 이슈"
253
257
  },
254
258
  {
255
259
  "id": "WF-PRD-IMPLEMENT-E2E",
256
- "name": "PRD 대화형 작성 후 순차 자동 구현",
257
- "summary": "Manager가 PRD 대화형 단계와 구현 자동 단계를 분리 오케스트레이션",
260
+ "name": "PRD 대화형 작성→순차 자동 구현",
261
+ "summary": "Manager가 PRD 대화형 단계와 구현 자동 단계를 분리 오케스트레이션합니다.",
258
262
  "orchestrator": "manager-agent",
259
263
  "stages": [
260
264
  {
@@ -356,7 +360,8 @@
356
360
  "ART-PRD-MASTER",
357
361
  "ART-PRD-DETAILS",
358
362
  "ART-RELEASE-READY"
359
- ]
363
+ ],
364
+ "when_to_use": "PRD 기반 구현 자동화"
360
365
  }
361
366
  ]
362
367
  }
@@ -10,35 +10,46 @@
10
10
  "title": "Claude Code",
11
11
  "description": "서브에이전트/에이전트팀 중심으로 역할 분리를 강하게 적용하는 운영 구조",
12
12
  "root": "claude-code",
13
+ "install_root": ".claude",
14
+ "install_root_basis": "Claude Code 공식 가이드와 포함 README의 로컬 경로 규칙",
15
+ "install_root_reference": [
16
+ "claude-code/README.md",
17
+ "https://docs.anthropic.com/en/docs/claude-code/sub-agents"
18
+ ],
13
19
  "readme": "README.md",
14
20
  "components": [
15
21
  {
16
22
  "id": "skills",
17
23
  "path": "skills",
24
+ "install_path": "skills",
18
25
  "title": "스킬",
19
26
  "description": "수명주기, 리뷰, 보안, 릴리즈 등의 실행 규칙"
20
27
  },
21
28
  {
22
29
  "id": "subagents",
23
30
  "path": "subagents",
31
+ "install_path": "agents",
24
32
  "title": "서브에이전트",
25
33
  "description": "역할별 프롬프트 템플릿(리드, 백엔드, 보안, SRE 등)"
26
34
  },
27
35
  {
28
36
  "id": "agent-teams",
29
37
  "path": "agent-teams",
38
+ "install_path": "agent-teams",
30
39
  "title": "서브에이전트 팀",
31
40
  "description": "리드+전문가 협업 팀 구성과 기본 워크플로우 매핑"
32
41
  },
33
42
  {
34
43
  "id": "workflows",
35
44
  "path": "workflows",
45
+ "install_path": "workflows",
36
46
  "title": "워크플로우",
37
47
  "description": "기획-개발-검증-배포-운영 단계형 시나리오"
38
48
  },
39
49
  {
40
50
  "id": "commands",
41
51
  "path": "commands",
52
+ "install_path": "commands",
42
53
  "title": "명령 카탈로그",
43
54
  "description": "입력/실행/품질게이트/산출물 계약이 고정된 명령 집합"
44
55
  }
@@ -49,35 +60,45 @@
49
60
  "title": "Antigravity",
50
61
  "description": "Manager-Agent-Artifact 기반 오케스트레이션 구조",
51
62
  "root": "antigravity",
63
+ "install_root": ".agent",
64
+ "install_root_basis": "Antigravity 생태계의 워크스페이스 로컬 규약(.agent/*)을 기본값으로 사용",
65
+ "install_root_reference": [
66
+ "antigravity/README.md"
67
+ ],
52
68
  "readme": "README.md",
53
69
  "components": [
54
70
  {
55
71
  "id": "skills",
56
72
  "path": "skills",
73
+ "install_path": "skills",
57
74
  "title": "스킬",
58
75
  "description": "Plan-Implement-Test-Review-Release 실행 규칙"
59
76
  },
60
77
  {
61
78
  "id": "agents",
62
79
  "path": "agents",
80
+ "install_path": "agents",
63
81
  "title": "에이전트 카탈로그",
64
82
  "description": "Manager/Implementation/Review 등 역할 라우팅 정의"
65
83
  },
66
84
  {
67
85
  "id": "artifacts",
68
86
  "path": "artifacts",
87
+ "install_path": "artifacts",
69
88
  "title": "아티팩트 계약",
70
89
  "description": "단계 입출력 스키마와 검증 필수 필드"
71
90
  },
72
91
  {
73
92
  "id": "workflows",
74
93
  "path": "workflows",
94
+ "install_path": "workflows",
75
95
  "title": "워크플로우",
76
96
  "description": "에이전트 체인과 단계 게이트 정의"
77
97
  },
78
98
  {
79
99
  "id": "commands",
80
100
  "path": "commands",
101
+ "install_path": "commands",
81
102
  "title": "명령 카탈로그",
82
103
  "description": "공통 명령 계약"
83
104
  }
@@ -88,35 +109,46 @@
88
109
  "title": "Codex",
89
110
  "description": "Skills + AGENTS + Automations를 결합한 운영 구조",
90
111
  "root": "codex",
112
+ "install_root": ".codex",
113
+ "install_root_basis": "Codex 스킬/지침 문서의 프로젝트 로컬 경로 규칙",
114
+ "install_root_reference": [
115
+ "codex/README.md",
116
+ "https://developers.openai.com/codex/"
117
+ ],
91
118
  "readme": "README.md",
92
119
  "components": [
93
120
  {
94
121
  "id": "skills",
95
122
  "path": "skills",
123
+ "install_path": "skills",
96
124
  "title": "스킬",
97
125
  "description": "작업 유형별 실행 스킬"
98
126
  },
99
127
  {
100
128
  "id": "instructions",
101
129
  "path": "instructions",
130
+ "install_path": "instructions",
102
131
  "title": "AGENTS 템플릿",
103
132
  "description": "프로젝트별 AGENTS 규칙 기본/오버라이드 템플릿"
104
133
  },
105
134
  {
106
135
  "id": "automations",
107
136
  "path": "automations",
137
+ "install_path": "automations",
108
138
  "title": "자동화 레시피",
109
139
  "description": "주기 점검/리뷰/보안 배치 프리셋"
110
140
  },
111
141
  {
112
142
  "id": "workflows",
113
143
  "path": "workflows",
144
+ "install_path": "workflows",
114
145
  "title": "워크플로우",
115
146
  "description": "Codex 실행 명령(/plan,/review) 연계 단계 정의"
116
147
  },
117
148
  {
118
149
  "id": "commands",
119
150
  "path": "commands",
151
+ "install_path": "commands",
120
152
  "title": "명령 카탈로그",
121
153
  "description": "공통 명령 계약"
122
154
  }
@@ -7,8 +7,8 @@
7
7
  "workflows": [
8
8
  {
9
9
  "id": "WF-SVC-001",
10
- "name": "신규 서비스 기획-개발-배포 E2E",
11
- "summary": "초기 기획부터 운영 전환까지 하나의 흐름으로 통제한다.",
10
+ "name": "신규 서비스 E2E (기획→개발→검증→운영 전환)",
11
+ "summary": "초기 기획부터 운영 전환까지 리드+전문가 구조로 통제합니다.",
12
12
  "team_mode": "lead-plus-specialists",
13
13
  "stages": [
14
14
  {
@@ -121,12 +121,13 @@
121
121
  "서비스 릴리즈",
122
122
  "운영 핸드북",
123
123
  "품질/보안 리포트"
124
- ]
124
+ ],
125
+ "when_to_use": "신규 서비스 런칭, 대형 기능 롤아웃"
125
126
  },
126
127
  {
127
128
  "id": "WF-SVC-002",
128
- "name": "기능 개발 표준",
129
- "summary": "기존 서비스에 기능을 추가할 사용한다.",
129
+ "name": "기능 개발 표준 (범위→개발→QA)",
130
+ "summary": "기존 서비스 기능 추가에 맞춘 표준 실행 흐름입니다.",
130
131
  "team_mode": "lead-plus-specialists",
131
132
  "stages": [
132
133
  {
@@ -190,12 +191,13 @@
190
191
  ],
191
192
  "final_outputs": [
192
193
  "기능 릴리즈 준비 완료"
193
- ]
194
+ ],
195
+ "when_to_use": "일반 기능 개발, 스프린트 단위 구현"
194
196
  },
195
197
  {
196
198
  "id": "WF-SVC-003",
197
- "name": "코드 리뷰-개선 루프",
198
- "summary": "품질 저하 징후가 보이면 즉시 실행한다.",
199
+ "name": "코드 리뷰/개선 루프 (진단→수정→재검증)",
200
+ "summary": "품질 저하 징후가 보이면 리뷰와 개선 루프를 즉시 닫습니다.",
199
201
  "team_mode": "parallel-review",
200
202
  "stages": [
201
203
  {
@@ -263,12 +265,13 @@
263
265
  "final_outputs": [
264
266
  "개선 반영 PR",
265
267
  "재검증 통과 보고"
266
- ]
268
+ ],
269
+ "when_to_use": "PR 리뷰 강화, 품질 하락 대응"
267
270
  },
268
271
  {
269
272
  "id": "WF-SVC-004",
270
- "name": "보안 강화 배치",
271
- "summary": "정기 또는 이슈 발생 보안 점검을 집중 수행한다.",
273
+ "name": "보안 강화 배치 (위협모델→보완→검증)",
274
+ "summary": "정기 또는 이슈 기반 보안 점검을 집중 수행합니다.",
272
275
  "team_mode": "security-first",
273
276
  "stages": [
274
277
  {
@@ -331,12 +334,13 @@
331
334
  "final_outputs": [
332
335
  "보안 점검 결과",
333
336
  "보완 이력"
334
- ]
337
+ ],
338
+ "when_to_use": "보안 감사, 취약점 대응 배치"
335
339
  },
336
340
  {
337
341
  "id": "WF-SVC-005",
338
- "name": "배포 운영 전환",
339
- "summary": "릴리즈 직전 게이트와 운영 전환을 통합한다.",
342
+ "name": "배포/운영 전환 (게이트→배포→모니터링)",
343
+ "summary": "릴리즈 직전 게이트와 운영 전환을 통합해 실행합니다.",
340
344
  "team_mode": "release-train",
341
345
  "stages": [
342
346
  {
@@ -396,12 +400,13 @@
396
400
  "final_outputs": [
397
401
  "배포 로그",
398
402
  "운영 전환 문서"
399
- ]
403
+ ],
404
+ "when_to_use": "정기 릴리즈, 운영 전환 준비"
400
405
  },
401
406
  {
402
407
  "id": "WF-SVC-006",
403
- "name": "반복 리팩터링 패키지",
404
- "summary": "UI 컴포넌트화, Hook 분리, 성능 최적화를 묶어서 실행한다.",
408
+ "name": "반복 리팩터링 패키지 (UI→Hook→성능)",
409
+ "summary": "반복 프론트엔드 개선 작업을 번에 실행합니다.",
405
410
  "team_mode": "frontend-special-pack",
406
411
  "stages": [
407
412
  {
@@ -461,12 +466,13 @@
461
466
  "final_outputs": [
462
467
  "중복 축소 보고",
463
468
  "성능 개선 보고"
464
- ]
469
+ ],
470
+ "when_to_use": "컴포넌트화, Hook 분리, 성능 개선"
465
471
  },
466
472
  {
467
473
  "id": "WF-SVC-007",
468
- "name": "장애 대응 재발 방지",
469
- "summary": "장애 발생 시 복구와 재발 방지를 한 세트로 실행한다.",
474
+ "name": "장애 대응/재발 방지 (복구→원인분석→후속조치)",
475
+ "summary": "장애 발생 시 복구와 재발 방지를 한 세트로 수행합니다.",
470
476
  "team_mode": "incident-war-room",
471
477
  "stages": [
472
478
  {
@@ -530,12 +536,13 @@
530
536
  "final_outputs": [
531
537
  "장애 RCA",
532
538
  "재발 방지 실행 계획"
533
- ]
539
+ ],
540
+ "when_to_use": "서비스 장애, 긴급 운영 이슈"
534
541
  },
535
542
  {
536
543
  "id": "WF-PRD-IMPLEMENT-E2E",
537
- "name": "PRD 대화형 작성 후 순차 자동 구현",
538
- "summary": "PRD 대화형으로 고도화하고, 구현은 최종 수동 설정 전까지 순차 자동 실행한다.",
544
+ "name": "PRD 대화형 작성→순차 자동 구현",
545
+ "summary": "PRD 대화형으로 고도화하고 구현은 최종 수동 설정 전까지 자동 실행합니다.",
539
546
  "team_mode": "prd-to-production-pipeline",
540
547
  "stages": [
541
548
  {
@@ -674,7 +681,8 @@
674
681
  "PRD 묶음",
675
682
  "순차 구현 결과",
676
683
  "배포 준비 패키지"
677
- ]
684
+ ],
685
+ "when_to_use": "PRD 기반 대형 기능 자동 구현"
678
686
  }
679
687
  ]
680
688
  }
@@ -7,8 +7,8 @@
7
7
  "workflows": [
8
8
  {
9
9
  "id": "WF-SVC-001",
10
- "name": "신규 서비스 E2E",
11
- "summary": "Codex 단일 실행으로 기획부터 배포 준비까지 진행한다.",
10
+ "name": "신규 서비스 전체 사이클 (기획→구현→검증→배포 준비)",
11
+ "summary": " 프로젝트 또는 대형 기능을 기획부터 배포 준비까지 한 번에 진행할 때 사용합니다.",
12
12
  "execution_surface": [
13
13
  "local",
14
14
  "cloud"
@@ -86,12 +86,13 @@
86
86
  "배포 후보",
87
87
  "운영 문서",
88
88
  "검증 보고"
89
- ]
89
+ ],
90
+ "when_to_use": "신규 서비스 착수, 대형 기능 E2E 추진"
90
91
  },
91
92
  {
92
93
  "id": "WF-SVC-002",
93
- "name": "기능 개발 표준",
94
- "summary": "반복 기능 개발에 사용한다.",
94
+ "name": "기능 추가 표준 (범위 고정→구현→리뷰)",
95
+ "summary": "기존 서비스에 일반 기능을 안전하게 추가하는 표준 흐름입니다.",
95
96
  "execution_surface": [
96
97
  "local",
97
98
  "worktree"
@@ -145,12 +146,13 @@
145
146
  ],
146
147
  "final_outputs": [
147
148
  "병합 가능 PR"
148
- ]
149
+ ],
150
+ "when_to_use": "일반 기능 개발, 반복 개발 사이클"
149
151
  },
150
152
  {
151
153
  "id": "WF-SVC-003",
152
- "name": "보안 하드닝",
153
- "summary": "정기 보안 배치 또는 취약점 이슈 대응에 사용한다.",
154
+ "name": "보안 하드닝 (진단→보완→재검증)",
155
+ "summary": "보안 진단 코드 보완과 재검증까지 닫는 흐름입니다.",
154
156
  "execution_surface": [
155
157
  "local",
156
158
  "cloud"
@@ -204,12 +206,13 @@
204
206
  ],
205
207
  "final_outputs": [
206
208
  "보안 개선 보고"
207
- ]
209
+ ],
210
+ "when_to_use": "정기 보안 점검, 취약점 이슈 대응"
208
211
  },
209
212
  {
210
213
  "id": "WF-SVC-004",
211
- "name": "배포-운영 전환",
212
- "summary": "배포와 운영 안정화를 묶어서 실행한다.",
214
+ "name": "배포/운영 전환 (게이트→배포→인수인계)",
215
+ "summary": "릴리즈 게이트 통과부터 운영 안정화 인수인계까지 진행합니다.",
213
216
  "execution_surface": [
214
217
  "local",
215
218
  "cloud"
@@ -261,12 +264,13 @@
261
264
  ],
262
265
  "final_outputs": [
263
266
  "운영 전환 완료"
264
- ]
267
+ ],
268
+ "when_to_use": "릴리즈 직전 최종 점검, 운영 전환"
265
269
  },
266
270
  {
267
271
  "id": "WF-SVC-005",
268
- "name": "장애 대응 루프",
269
- "summary": "장애 접수부터 재발 방지까지 수행한다.",
272
+ "name": "장애 대응 루프 (분류→복구→재발 방지)",
273
+ "summary": "장애 접수 후 복구와 재발 방지 조치까지 수행합니다.",
270
274
  "execution_surface": [
271
275
  "local",
272
276
  "cloud"
@@ -322,12 +326,13 @@
322
326
  "final_outputs": [
323
327
  "RCA",
324
328
  "재발 방지 백로그"
325
- ]
329
+ ],
330
+ "when_to_use": "운영 장애 대응, 핫픽스 후속 조치"
326
331
  },
327
332
  {
328
333
  "id": "WF-PRD-IMPLEMENT-E2E",
329
- "name": "PRD 대화형 작성 후 순차 자동 구현",
330
- "summary": "PRD 단계는 대화형으로, 구현 단계는 최종 세팅 전까지 자동 순차 실행",
334
+ "name": "PRD 대화형 작성→순차 자동 구현",
335
+ "summary": "PRD 대화형으로 확정하고 구현은 최종 수동 세팅 전까지 자동 순차 실행합니다.",
331
336
  "execution_surface": [
332
337
  "local",
333
338
  "cloud"
@@ -438,7 +443,8 @@
438
443
  "PRD 패키지",
439
444
  "구현 결과",
440
445
  "배포 준비 패키지"
441
- ]
446
+ ],
447
+ "when_to_use": "요구사항이 큰 신규 기능을 PRD 기반으로 자동 추진"
442
448
  }
443
449
  ]
444
450
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dusky-bluehour/agent-service",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },