@k2works/claude-code-booster 2.0.0 → 2.0.1
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.
|
@@ -381,47 +381,37 @@ right side
|
|
|
381
381
|
## 5. XPチーム全体
|
|
382
382
|
|
|
383
383
|
```plantuml
|
|
384
|
-
|
|
385
384
|
@startuml
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
A -> B
|
|
399
|
-
A -> C
|
|
400
|
-
A -> D
|
|
401
|
-
A -> E
|
|
402
|
-
A -> F
|
|
403
|
-
A -> G
|
|
404
|
-
A -> H
|
|
405
|
-
A -> I
|
|
406
|
-
A -> J
|
|
407
|
-
|
|
408
|
-
G -> E
|
|
409
|
-
G -> F
|
|
410
|
-
G -> I
|
|
411
|
-
E -> D
|
|
412
|
-
D -> J
|
|
413
|
-
E -> J
|
|
414
|
-
J -> I
|
|
415
|
-
E -> C
|
|
416
|
-
E -> I
|
|
417
|
-
C -> I
|
|
418
|
-
E -> B
|
|
419
|
-
B -> J
|
|
420
|
-
B -> I
|
|
421
|
-
E -> H
|
|
422
|
-
H -> I
|
|
423
|
-
F -> I
|
|
385
|
+
title XPチーム全体
|
|
386
|
+
|
|
387
|
+
rectangle "XPチーム全体" as team {
|
|
388
|
+
actor "経営幹部" as G
|
|
389
|
+
actor "プロジェクトマネージャー" as E
|
|
390
|
+
actor "プロダクトマネージャー" as F
|
|
391
|
+
actor "アーキテクト" as D
|
|
392
|
+
actor "プログラマー" as J
|
|
393
|
+
actor "テスター" as B
|
|
394
|
+
actor "インタラクションデザイナー" as C
|
|
395
|
+
actor "テクニカルライター" as H
|
|
396
|
+
actor "ユーザー" as I
|
|
424
397
|
}
|
|
398
|
+
|
|
399
|
+
G --> E
|
|
400
|
+
G --> F
|
|
401
|
+
G --> I
|
|
402
|
+
E --> D
|
|
403
|
+
E --> J
|
|
404
|
+
E --> C
|
|
405
|
+
E --> B
|
|
406
|
+
E --> H
|
|
407
|
+
E --> I
|
|
408
|
+
D --> J
|
|
409
|
+
F --> I
|
|
410
|
+
B --> J
|
|
411
|
+
B --> I
|
|
412
|
+
C --> I
|
|
413
|
+
J --> I
|
|
414
|
+
H --> I
|
|
425
415
|
@enduml
|
|
426
416
|
```
|
|
427
417
|
|