Skip to content

Commit 5e220f3

Browse files
authored
Merge branch 'main' into fix/e2e-test-orchestration
2 parents 552d587 + 75f56dd commit 5e220f3

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

docs/guides/en/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Instead of one AI trying to handle everything, specialized sub-agents handle spe
8686

8787
This approach prevents context overflow and maintains quality even for large projects.
8888

89-
For technical details, see [this article](https://qiita.com/shinpr/items/98771c2b8d2e15cafcd5).
89+
For technical details, see [this article](https://dev.to/shinpr/zero-context-exhaustion-building-production-ready-ai-coding-teams-with-claude-code-sub-agents-31b).
9090

9191
## Troubleshooting
9292

docs/guides/en/use-cases.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,24 @@ New to this? Start with the [Quick Start Guide](./quickstart.md). This is your d
1818
graph LR
1919
A[Requirements] --> B[Scale Detection]
2020
B -->|Small:1-2 files| C[Direct Implementation]
21-
B -->|Medium:3-5 files| D[Design Doc<br>→Implementation]
22-
B -->|Large:6+ files| E[PRD→ADR<br>→Design Doc<br>→Implementation]
21+
B -->|Medium:3-5 files| D[Design Doc→Implementation]
22+
B -->|Large:6+ files| E[PRD→ADR→Design Doc→Implementation]
2323
```
2424

2525
## Inside /implement Command
2626

2727
```mermaid
2828
graph TD
29-
Start[/implement requirements] --> RA[requirement-analyzer<br>scale detection]
29+
Start["/implement requirements"] --> RA["requirement-analyzer scale detection"]
3030
RA -->|Small| Direct[Direct implementation]
31-
RA -->|Medium| TD[technical-designer<br>Design Doc]
32-
RA -->|Large| PRD[prd-creator<br>PRD]
31+
RA -->|Medium| TD["technical-designer Design Doc"]
32+
RA -->|Large| PRD["prd-creator PRD"]
3333
34-
PRD --> ADR[technical-designer<br>ADR]
34+
PRD --> ADR["technical-designer ADR"]
3535
ADR --> TD
36-
TD --> WP[work-planner<br>Work plan]
37-
WP --> TE[task-executor<br>Execute tasks]
38-
Direct --> QF[quality-fixer<br>Quality checks]
36+
TD --> WP["work-planner Work plan"]
37+
WP --> TE["task-executor Execute tasks"]
38+
Direct --> QF["quality-fixer Quality checks"]
3939
TE --> QF
4040
QF --> End[Complete]
4141

docs/guides/ja/use-cases.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,24 @@
1818
graph LR
1919
A[要件] --> B[規模判定]
2020
B -->|小:1-2ファイル| C[実装のみ]
21-
B -->|中:3-5ファイル| D[Design Doc<br>→実装]
22-
B -->|大:6ファイル以上| E[PRD→ADR<br>→Design Doc<br>→実装]
21+
B -->|中:3-5ファイル| D[Design Doc→実装]
22+
B -->|大:6ファイル以上| E[PRD→ADR→Design Doc→実装]
2323
```
2424

2525
## /implementコマンドの裏側
2626

2727
```mermaid
2828
graph TD
29-
Start[/implement 要件] --> RA[requirement-analyzer<br>規模判定]
29+
Start["/implement 要件"] --> RA["requirement-analyzer 規模判定"]
3030
RA -->|小規模| Direct[直接実装]
31-
RA -->|中規模| TD[technical-designer<br>Design Doc作成]
32-
RA -->|大規模| PRD[prd-creator<br>PRD作成]
31+
RA -->|中規模| TD["technical-designer Design Doc作成"]
32+
RA -->|大規模| PRD["prd-creator PRD作成"]
3333
34-
PRD --> ADR[technical-designer<br>ADR作成]
34+
PRD --> ADR["technical-designer ADR作成"]
3535
ADR --> TD
36-
TD --> WP[work-planner<br>作業計画書]
37-
WP --> TE[task-executor<br>タスク実行]
38-
Direct --> QF[quality-fixer<br>品質チェック]
36+
TD --> WP["work-planner 作業計画書"]
37+
WP --> TE["task-executor タスク実行"]
38+
Direct --> QF["quality-fixer 品質チェック"]
3939
TE --> QF
4040
QF --> End[完了]
4141

0 commit comments

Comments
 (0)