@dusky-bluehour/agent-service 0.6.2

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.
Files changed (64) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +205 -0
  3. package/antigravity/README.md +37 -0
  4. package/antigravity/agents/agent-catalog.json +72 -0
  5. package/antigravity/artifacts/artifact-catalog.json +184 -0
  6. package/antigravity/commands/command-catalog.json +942 -0
  7. package/antigravity/skills/code-review-and-improvement/SKILL.md +15 -0
  8. package/antigravity/skills/frontend-repetition-pack/SKILL.md +15 -0
  9. package/antigravity/skills/incident-response/SKILL.md +15 -0
  10. package/antigravity/skills/prd-to-production-pipeline/SKILL.md +16 -0
  11. package/antigravity/skills/release-and-operations/SKILL.md +15 -0
  12. package/antigravity/skills/security-hardening/SKILL.md +15 -0
  13. package/antigravity/skills/service-lifecycle-orchestration/SKILL.md +16 -0
  14. package/antigravity/workflows/workflow-catalog.json +362 -0
  15. package/catalog/tool-catalog.ko.json +296 -0
  16. package/claude-code/README.md +47 -0
  17. package/claude-code/agent-teams/team-catalog.json +69 -0
  18. package/claude-code/commands/command-catalog.json +942 -0
  19. package/claude-code/skills/code-review-and-improvement/SKILL.md +16 -0
  20. package/claude-code/skills/frontend-repetition-pack/SKILL.md +16 -0
  21. package/claude-code/skills/incident-response/SKILL.md +16 -0
  22. package/claude-code/skills/prd-to-production-pipeline/SKILL.md +17 -0
  23. package/claude-code/skills/release-and-operations/SKILL.md +16 -0
  24. package/claude-code/skills/security-hardening/SKILL.md +15 -0
  25. package/claude-code/skills/service-lifecycle-orchestration/SKILL.md +17 -0
  26. package/claude-code/subagents/backend-engineer.md +20 -0
  27. package/claude-code/subagents/code-reviewer.md +19 -0
  28. package/claude-code/subagents/frontend-engineer.md +20 -0
  29. package/claude-code/subagents/hook-refactor-engineer.md +19 -0
  30. package/claude-code/subagents/incident-commander.md +19 -0
  31. package/claude-code/subagents/lead-orchestrator.md +18 -0
  32. package/claude-code/subagents/operations-owner.md +20 -0
  33. package/claude-code/subagents/performance-engineer.md +19 -0
  34. package/claude-code/subagents/prd-writer.md +20 -0
  35. package/claude-code/subagents/product-planner.md +19 -0
  36. package/claude-code/subagents/qa-engineer.md +19 -0
  37. package/claude-code/subagents/security-engineer.md +20 -0
  38. package/claude-code/subagents/solution-architect.md +19 -0
  39. package/claude-code/subagents/sre-release-engineer.md +20 -0
  40. package/claude-code/subagents/ui-component-engineer.md +19 -0
  41. package/claude-code/workflows/workflow-catalog.json +680 -0
  42. package/codex/README.md +38 -0
  43. package/codex/automations/automation-recipes.toml +30 -0
  44. package/codex/commands/command-catalog.json +942 -0
  45. package/codex/instructions/AGENTS.override.template.md +21 -0
  46. package/codex/instructions/AGENTS.template.md +31 -0
  47. package/codex/skills/code-review-and-improvement/SKILL.md +16 -0
  48. package/codex/skills/code-review-and-improvement/agents/openai.yaml +4 -0
  49. package/codex/skills/frontend-repetition-pack/SKILL.md +15 -0
  50. package/codex/skills/frontend-repetition-pack/agents/openai.yaml +4 -0
  51. package/codex/skills/incident-response/SKILL.md +16 -0
  52. package/codex/skills/incident-response/agents/openai.yaml +4 -0
  53. package/codex/skills/prd-to-production-pipeline/SKILL.md +16 -0
  54. package/codex/skills/prd-to-production-pipeline/agents/openai.yaml +4 -0
  55. package/codex/skills/release-and-operations/SKILL.md +15 -0
  56. package/codex/skills/release-and-operations/agents/openai.yaml +4 -0
  57. package/codex/skills/security-hardening/SKILL.md +15 -0
  58. package/codex/skills/security-hardening/agents/openai.yaml +4 -0
  59. package/codex/skills/service-lifecycle-orchestration/SKILL.md +17 -0
  60. package/codex/skills/service-lifecycle-orchestration/agents/openai.yaml +4 -0
  61. package/codex/workflows/workflow-catalog.json +444 -0
  62. package/package.json +44 -0
  63. package/scripts/init.mjs +993 -0
  64. package/scripts/validate.mjs +591 -0
@@ -0,0 +1,680 @@
1
+ {
2
+ "schema_version": "1.0.0",
3
+ "workflow_policy": {
4
+ "execution_rule": "각 단계는 entry_criteria 충족 후 실행하며, exit_criteria를 만족해야 다음 단계로 이동한다.",
5
+ "delegation_rule": "리드 에이전트는 병렬 가능한 하위 역할에만 작업을 분배한다."
6
+ },
7
+ "workflows": [
8
+ {
9
+ "id": "WF-SVC-001",
10
+ "name": "신규 서비스 기획-개발-배포 E2E",
11
+ "summary": "초기 기획부터 운영 전환까지 하나의 흐름으로 통제한다.",
12
+ "team_mode": "lead-plus-specialists",
13
+ "stages": [
14
+ {
15
+ "order": 1,
16
+ "stage_id": "STG-PLAN",
17
+ "owner_role": "product-planner",
18
+ "delegation": [
19
+ "product-planner"
20
+ ],
21
+ "commands": [
22
+ "CMD-PLAN-REQ-LOCK"
23
+ ],
24
+ "entry_criteria": [
25
+ "요청 배경 확보"
26
+ ],
27
+ "exit_criteria": [
28
+ "요구사항 기준서 승인"
29
+ ]
30
+ },
31
+ {
32
+ "order": 2,
33
+ "stage_id": "STG-ARCH",
34
+ "owner_role": "solution-architect",
35
+ "delegation": [
36
+ "solution-architect"
37
+ ],
38
+ "commands": [
39
+ "CMD-PLAN-ARCH-DECISION"
40
+ ],
41
+ "entry_criteria": [
42
+ "요구사항 기준 확정"
43
+ ],
44
+ "exit_criteria": [
45
+ "ADR 승인",
46
+ "롤백 전략 확정"
47
+ ]
48
+ },
49
+ {
50
+ "order": 3,
51
+ "stage_id": "STG-BUILD",
52
+ "owner_role": "backend-engineer",
53
+ "delegation": [
54
+ "backend-engineer",
55
+ "frontend-engineer",
56
+ "ui-component-engineer",
57
+ "hook-refactor-engineer",
58
+ "performance-engineer"
59
+ ],
60
+ "commands": [
61
+ "CMD-DEV-BE-API",
62
+ "CMD-DEV-FE-UI-COMPONENTIZE",
63
+ "CMD-DEV-FE-HOOK-SEPARATE",
64
+ "CMD-DEV-PERF-OPTIMIZE"
65
+ ],
66
+ "entry_criteria": [
67
+ "아키텍처 승인"
68
+ ],
69
+ "exit_criteria": [
70
+ "핵심 기능 구현 완료",
71
+ "성능 목표 1차 충족"
72
+ ]
73
+ },
74
+ {
75
+ "order": 4,
76
+ "stage_id": "STG-VERIFY",
77
+ "owner_role": "qa-engineer",
78
+ "delegation": [
79
+ "qa-engineer",
80
+ "code-reviewer",
81
+ "security-engineer"
82
+ ],
83
+ "commands": [
84
+ "CMD-TEST-UNIT-INTEGRATION",
85
+ "CMD-REVIEW-CODE",
86
+ "CMD-SEC-THREAT-MODEL",
87
+ "CMD-SEC-DEPENDENCY-AUDIT"
88
+ ],
89
+ "entry_criteria": [
90
+ "구현 완료"
91
+ ],
92
+ "exit_criteria": [
93
+ "차단 이슈 0건",
94
+ "치명 취약점 0건"
95
+ ]
96
+ },
97
+ {
98
+ "order": 5,
99
+ "stage_id": "STG-RELEASE",
100
+ "owner_role": "sre-release-engineer",
101
+ "delegation": [
102
+ "sre-release-engineer",
103
+ "operations-owner"
104
+ ],
105
+ "commands": [
106
+ "CMD-OPS-CI-CD-GATE",
107
+ "CMD-OPS-DEPLOY",
108
+ "CMD-OPS-MONITORING",
109
+ "CMD-DOC-HANDOFF"
110
+ ],
111
+ "entry_criteria": [
112
+ "검증 단계 완료"
113
+ ],
114
+ "exit_criteria": [
115
+ "배포 성공",
116
+ "운영 인수인계 완료"
117
+ ]
118
+ }
119
+ ],
120
+ "final_outputs": [
121
+ "서비스 릴리즈",
122
+ "운영 핸드북",
123
+ "품질/보안 리포트"
124
+ ]
125
+ },
126
+ {
127
+ "id": "WF-SVC-002",
128
+ "name": "기능 개발 표준",
129
+ "summary": "기존 서비스에 기능을 추가할 때 사용한다.",
130
+ "team_mode": "lead-plus-specialists",
131
+ "stages": [
132
+ {
133
+ "order": 1,
134
+ "stage_id": "STG-SCOPE",
135
+ "owner_role": "product-planner",
136
+ "delegation": [
137
+ "product-planner"
138
+ ],
139
+ "commands": [
140
+ "CMD-PLAN-REQ-LOCK"
141
+ ],
142
+ "entry_criteria": [
143
+ "기능 요청 접수"
144
+ ],
145
+ "exit_criteria": [
146
+ "범위와 승인 기준 확정"
147
+ ]
148
+ },
149
+ {
150
+ "order": 2,
151
+ "stage_id": "STG-DEV",
152
+ "owner_role": "frontend-engineer",
153
+ "delegation": [
154
+ "backend-engineer",
155
+ "frontend-engineer",
156
+ "ui-component-engineer",
157
+ "hook-refactor-engineer"
158
+ ],
159
+ "commands": [
160
+ "CMD-DEV-BE-API",
161
+ "CMD-DEV-FE-UI-COMPONENTIZE",
162
+ "CMD-DEV-FE-HOOK-SEPARATE"
163
+ ],
164
+ "entry_criteria": [
165
+ "범위 확정"
166
+ ],
167
+ "exit_criteria": [
168
+ "기능 구현 완료"
169
+ ]
170
+ },
171
+ {
172
+ "order": 3,
173
+ "stage_id": "STG-QA",
174
+ "owner_role": "qa-engineer",
175
+ "delegation": [
176
+ "qa-engineer",
177
+ "code-reviewer"
178
+ ],
179
+ "commands": [
180
+ "CMD-TEST-UNIT-INTEGRATION",
181
+ "CMD-REVIEW-CODE"
182
+ ],
183
+ "entry_criteria": [
184
+ "기능 구현 완료"
185
+ ],
186
+ "exit_criteria": [
187
+ "차단 이슈 0건"
188
+ ]
189
+ }
190
+ ],
191
+ "final_outputs": [
192
+ "기능 릴리즈 준비 완료"
193
+ ]
194
+ },
195
+ {
196
+ "id": "WF-SVC-003",
197
+ "name": "코드 리뷰-개선 루프",
198
+ "summary": "품질 저하 징후가 보이면 즉시 실행한다.",
199
+ "team_mode": "parallel-review",
200
+ "stages": [
201
+ {
202
+ "order": 1,
203
+ "stage_id": "STG-REVIEW",
204
+ "owner_role": "code-reviewer",
205
+ "delegation": [
206
+ "code-reviewer",
207
+ "security-engineer",
208
+ "performance-engineer"
209
+ ],
210
+ "commands": [
211
+ "CMD-REVIEW-CODE",
212
+ "CMD-SEC-THREAT-MODEL",
213
+ "CMD-DEV-PERF-OPTIMIZE"
214
+ ],
215
+ "entry_criteria": [
216
+ "리뷰 대상 diff 확보"
217
+ ],
218
+ "exit_criteria": [
219
+ "차단 이슈 목록 확정"
220
+ ]
221
+ },
222
+ {
223
+ "order": 2,
224
+ "stage_id": "STG-FIX",
225
+ "owner_role": "backend-engineer",
226
+ "delegation": [
227
+ "backend-engineer",
228
+ "frontend-engineer",
229
+ "hook-refactor-engineer"
230
+ ],
231
+ "commands": [
232
+ "CMD-DEV-BE-API",
233
+ "CMD-DEV-FE-HOOK-SEPARATE",
234
+ "CMD-IMPROVE-TECHDEBT"
235
+ ],
236
+ "entry_criteria": [
237
+ "개선 우선순위 확정"
238
+ ],
239
+ "exit_criteria": [
240
+ "수정 반영 완료"
241
+ ]
242
+ },
243
+ {
244
+ "order": 3,
245
+ "stage_id": "STG-RECHECK",
246
+ "owner_role": "qa-engineer",
247
+ "delegation": [
248
+ "qa-engineer",
249
+ "code-reviewer"
250
+ ],
251
+ "commands": [
252
+ "CMD-TEST-UNIT-INTEGRATION",
253
+ "CMD-REVIEW-CODE"
254
+ ],
255
+ "entry_criteria": [
256
+ "수정 반영 완료"
257
+ ],
258
+ "exit_criteria": [
259
+ "재검증 통과"
260
+ ]
261
+ }
262
+ ],
263
+ "final_outputs": [
264
+ "개선 반영 PR",
265
+ "재검증 통과 보고"
266
+ ]
267
+ },
268
+ {
269
+ "id": "WF-SVC-004",
270
+ "name": "보안 강화 배치",
271
+ "summary": "정기 또는 이슈 발생 시 보안 점검을 집중 수행한다.",
272
+ "team_mode": "security-first",
273
+ "stages": [
274
+ {
275
+ "order": 1,
276
+ "stage_id": "STG-THREAT",
277
+ "owner_role": "security-engineer",
278
+ "delegation": [
279
+ "security-engineer"
280
+ ],
281
+ "commands": [
282
+ "CMD-SEC-THREAT-MODEL",
283
+ "CMD-SEC-DEPENDENCY-AUDIT"
284
+ ],
285
+ "entry_criteria": [
286
+ "점검 범위 확정"
287
+ ],
288
+ "exit_criteria": [
289
+ "위험/통제 매핑 완료"
290
+ ]
291
+ },
292
+ {
293
+ "order": 2,
294
+ "stage_id": "STG-HARDEN",
295
+ "owner_role": "backend-engineer",
296
+ "delegation": [
297
+ "backend-engineer",
298
+ "frontend-engineer"
299
+ ],
300
+ "commands": [
301
+ "CMD-DEV-BE-API",
302
+ "CMD-IMPROVE-TECHDEBT"
303
+ ],
304
+ "entry_criteria": [
305
+ "보완 항목 확정"
306
+ ],
307
+ "exit_criteria": [
308
+ "보완 코드 반영"
309
+ ]
310
+ },
311
+ {
312
+ "order": 3,
313
+ "stage_id": "STG-SEC-QA",
314
+ "owner_role": "qa-engineer",
315
+ "delegation": [
316
+ "qa-engineer",
317
+ "security-engineer"
318
+ ],
319
+ "commands": [
320
+ "CMD-TEST-UNIT-INTEGRATION",
321
+ "CMD-REVIEW-CODE"
322
+ ],
323
+ "entry_criteria": [
324
+ "보완 코드 반영"
325
+ ],
326
+ "exit_criteria": [
327
+ "치명/고위험 0건"
328
+ ]
329
+ }
330
+ ],
331
+ "final_outputs": [
332
+ "보안 점검 결과",
333
+ "보완 이력"
334
+ ]
335
+ },
336
+ {
337
+ "id": "WF-SVC-005",
338
+ "name": "배포 및 운영 전환",
339
+ "summary": "릴리즈 직전 게이트와 운영 전환을 통합한다.",
340
+ "team_mode": "release-train",
341
+ "stages": [
342
+ {
343
+ "order": 1,
344
+ "stage_id": "STG-GATE",
345
+ "owner_role": "sre-release-engineer",
346
+ "delegation": [
347
+ "sre-release-engineer"
348
+ ],
349
+ "commands": [
350
+ "CMD-OPS-CI-CD-GATE"
351
+ ],
352
+ "entry_criteria": [
353
+ "검증 완료"
354
+ ],
355
+ "exit_criteria": [
356
+ "파이프라인 게이트 통과"
357
+ ]
358
+ },
359
+ {
360
+ "order": 2,
361
+ "stage_id": "STG-DEPLOY",
362
+ "owner_role": "sre-release-engineer",
363
+ "delegation": [
364
+ "sre-release-engineer",
365
+ "operations-owner"
366
+ ],
367
+ "commands": [
368
+ "CMD-OPS-DEPLOY",
369
+ "CMD-OPS-MONITORING"
370
+ ],
371
+ "entry_criteria": [
372
+ "게이트 통과"
373
+ ],
374
+ "exit_criteria": [
375
+ "배포 안정화"
376
+ ]
377
+ },
378
+ {
379
+ "order": 3,
380
+ "stage_id": "STG-HANDOFF",
381
+ "owner_role": "operations-owner",
382
+ "delegation": [
383
+ "operations-owner"
384
+ ],
385
+ "commands": [
386
+ "CMD-DOC-HANDOFF"
387
+ ],
388
+ "entry_criteria": [
389
+ "안정화 완료"
390
+ ],
391
+ "exit_criteria": [
392
+ "운영 인수인계 완료"
393
+ ]
394
+ }
395
+ ],
396
+ "final_outputs": [
397
+ "배포 로그",
398
+ "운영 전환 문서"
399
+ ]
400
+ },
401
+ {
402
+ "id": "WF-SVC-006",
403
+ "name": "반복 리팩터링 패키지",
404
+ "summary": "UI 컴포넌트화, Hook 분리, 성능 최적화를 묶어서 실행한다.",
405
+ "team_mode": "frontend-special-pack",
406
+ "stages": [
407
+ {
408
+ "order": 1,
409
+ "stage_id": "STG-COMPONENTIZE",
410
+ "owner_role": "ui-component-engineer",
411
+ "delegation": [
412
+ "ui-component-engineer"
413
+ ],
414
+ "commands": [
415
+ "CMD-DEV-FE-UI-COMPONENTIZE"
416
+ ],
417
+ "entry_criteria": [
418
+ "중복 UI 목록 확정"
419
+ ],
420
+ "exit_criteria": [
421
+ "공용 컴포넌트 추출 완료"
422
+ ]
423
+ },
424
+ {
425
+ "order": 2,
426
+ "stage_id": "STG-HOOK",
427
+ "owner_role": "hook-refactor-engineer",
428
+ "delegation": [
429
+ "hook-refactor-engineer"
430
+ ],
431
+ "commands": [
432
+ "CMD-DEV-FE-HOOK-SEPARATE"
433
+ ],
434
+ "entry_criteria": [
435
+ "컴포넌트화 완료"
436
+ ],
437
+ "exit_criteria": [
438
+ "로직 Hook 분리 완료"
439
+ ]
440
+ },
441
+ {
442
+ "order": 3,
443
+ "stage_id": "STG-PERF",
444
+ "owner_role": "performance-engineer",
445
+ "delegation": [
446
+ "performance-engineer",
447
+ "qa-engineer"
448
+ ],
449
+ "commands": [
450
+ "CMD-DEV-PERF-OPTIMIZE",
451
+ "CMD-TEST-UNIT-INTEGRATION"
452
+ ],
453
+ "entry_criteria": [
454
+ "Hook 분리 완료"
455
+ ],
456
+ "exit_criteria": [
457
+ "성능 목표 달성"
458
+ ]
459
+ }
460
+ ],
461
+ "final_outputs": [
462
+ "중복 축소 보고",
463
+ "성능 개선 보고"
464
+ ]
465
+ },
466
+ {
467
+ "id": "WF-SVC-007",
468
+ "name": "장애 대응 및 재발 방지",
469
+ "summary": "장애 발생 시 복구와 재발 방지를 한 세트로 실행한다.",
470
+ "team_mode": "incident-war-room",
471
+ "stages": [
472
+ {
473
+ "order": 1,
474
+ "stage_id": "STG-TRIAGE",
475
+ "owner_role": "incident-commander",
476
+ "delegation": [
477
+ "incident-commander",
478
+ "operations-owner"
479
+ ],
480
+ "commands": [
481
+ "CMD-INCIDENT-TRIAGE"
482
+ ],
483
+ "entry_criteria": [
484
+ "장애 탐지"
485
+ ],
486
+ "exit_criteria": [
487
+ "복구 및 영향도 확정"
488
+ ]
489
+ },
490
+ {
491
+ "order": 2,
492
+ "stage_id": "STG-POST-FIX",
493
+ "owner_role": "code-reviewer",
494
+ "delegation": [
495
+ "code-reviewer",
496
+ "backend-engineer",
497
+ "security-engineer"
498
+ ],
499
+ "commands": [
500
+ "CMD-REVIEW-CODE",
501
+ "CMD-IMPROVE-TECHDEBT",
502
+ "CMD-SEC-THREAT-MODEL"
503
+ ],
504
+ "entry_criteria": [
505
+ "서비스 복구"
506
+ ],
507
+ "exit_criteria": [
508
+ "재발 방지 액션 확정"
509
+ ]
510
+ },
511
+ {
512
+ "order": 3,
513
+ "stage_id": "STG-RUNBOOK",
514
+ "owner_role": "operations-owner",
515
+ "delegation": [
516
+ "operations-owner"
517
+ ],
518
+ "commands": [
519
+ "CMD-DOC-HANDOFF",
520
+ "CMD-OPS-MONITORING"
521
+ ],
522
+ "entry_criteria": [
523
+ "재발 방지 액션 확정"
524
+ ],
525
+ "exit_criteria": [
526
+ "런북 업데이트 완료"
527
+ ]
528
+ }
529
+ ],
530
+ "final_outputs": [
531
+ "장애 RCA",
532
+ "재발 방지 실행 계획"
533
+ ]
534
+ },
535
+ {
536
+ "id": "WF-PRD-IMPLEMENT-E2E",
537
+ "name": "PRD 대화형 작성 후 순차 자동 구현",
538
+ "summary": "PRD는 대화형으로 고도화하고, 구현은 최종 수동 설정 전까지 순차 자동 실행한다.",
539
+ "team_mode": "prd-to-production-pipeline",
540
+ "stages": [
541
+ {
542
+ "order": 1,
543
+ "stage_id": "STG-PRD-MASTER",
544
+ "owner_role": "prd-writer",
545
+ "interaction_mode": "interactive",
546
+ "delegation": [
547
+ "prd-writer"
548
+ ],
549
+ "commands": [
550
+ "CMD-PLAN-PRD-MASTER"
551
+ ],
552
+ "entry_criteria": [
553
+ "문제/목표 초안 확보"
554
+ ],
555
+ "exit_criteria": [
556
+ "마스터 PRD 승인"
557
+ ]
558
+ },
559
+ {
560
+ "order": 2,
561
+ "stage_id": "STG-PRD-DETAIL",
562
+ "owner_role": "prd-writer",
563
+ "interaction_mode": "interactive",
564
+ "delegation": [
565
+ "prd-writer",
566
+ "product-planner"
567
+ ],
568
+ "commands": [
569
+ "CMD-PLAN-PRD-DETAILS"
570
+ ],
571
+ "entry_criteria": [
572
+ "마스터 PRD 승인"
573
+ ],
574
+ "exit_criteria": [
575
+ "세부 PRD 묶음 확정",
576
+ "수용 기준 명시"
577
+ ]
578
+ },
579
+ {
580
+ "order": 3,
581
+ "stage_id": "STG-BOOTSTRAP",
582
+ "owner_role": "solution-architect",
583
+ "interaction_mode": "interactive",
584
+ "delegation": [
585
+ "solution-architect"
586
+ ],
587
+ "commands": [
588
+ "CMD-PLAN-IMPLEMENTATION-BOOTSTRAP"
589
+ ],
590
+ "entry_criteria": [
591
+ "세부 PRD 묶음 확정"
592
+ ],
593
+ "exit_criteria": [
594
+ "구현 배치 계획 확정",
595
+ "수동 설정 체크리스트 확정"
596
+ ]
597
+ },
598
+ {
599
+ "order": 4,
600
+ "stage_id": "STG-AUTORUN",
601
+ "owner_role": "lead-orchestrator",
602
+ "interaction_mode": "autonomous-sequential",
603
+ "delegation": [
604
+ "lead-orchestrator",
605
+ "backend-engineer",
606
+ "frontend-engineer",
607
+ "ui-component-engineer",
608
+ "hook-refactor-engineer",
609
+ "performance-engineer"
610
+ ],
611
+ "commands": [
612
+ "CMD-DEV-SEQUENTIAL-AUTORUN",
613
+ "CMD-DEV-BE-API",
614
+ "CMD-DEV-FE-UI-COMPONENTIZE",
615
+ "CMD-DEV-FE-HOOK-SEPARATE",
616
+ "CMD-DEV-PERF-OPTIMIZE"
617
+ ],
618
+ "entry_criteria": [
619
+ "구현 배치 계획 확정"
620
+ ],
621
+ "exit_criteria": [
622
+ "배치별 구현 완료",
623
+ "최종 수동 설정 전 상태 도달"
624
+ ]
625
+ },
626
+ {
627
+ "order": 5,
628
+ "stage_id": "STG-VERIFY-SEC",
629
+ "owner_role": "qa-engineer",
630
+ "interaction_mode": "autonomous-sequential",
631
+ "delegation": [
632
+ "qa-engineer",
633
+ "code-reviewer",
634
+ "security-engineer"
635
+ ],
636
+ "commands": [
637
+ "CMD-TEST-UNIT-INTEGRATION",
638
+ "CMD-REVIEW-CODE",
639
+ "CMD-SEC-THREAT-MODEL",
640
+ "CMD-SEC-DEPENDENCY-AUDIT"
641
+ ],
642
+ "entry_criteria": [
643
+ "자동 구현 완료"
644
+ ],
645
+ "exit_criteria": [
646
+ "차단 이슈 0건",
647
+ "치명 취약점 0건"
648
+ ]
649
+ },
650
+ {
651
+ "order": 6,
652
+ "stage_id": "STG-FINAL-SETUP-RELEASE",
653
+ "owner_role": "sre-release-engineer",
654
+ "interaction_mode": "manual-final-setup",
655
+ "delegation": [
656
+ "sre-release-engineer",
657
+ "operations-owner"
658
+ ],
659
+ "commands": [
660
+ "CMD-OPS-CI-CD-GATE",
661
+ "CMD-OPS-DEPLOY",
662
+ "CMD-DOC-HANDOFF"
663
+ ],
664
+ "entry_criteria": [
665
+ "검증 완료"
666
+ ],
667
+ "exit_criteria": [
668
+ "최종 세팅 완료",
669
+ "배포 준비 완료"
670
+ ]
671
+ }
672
+ ],
673
+ "final_outputs": [
674
+ "PRD 묶음",
675
+ "순차 구현 결과",
676
+ "배포 준비 패키지"
677
+ ]
678
+ }
679
+ ]
680
+ }