From 79d11ab96c3540861c521d88e5a391208dc7a28a Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Thu, 14 May 2026 07:12:19 +0200 Subject: [PATCH] fix(docs): pipeline diagram nodes all same size Build had a one-line label while every other node had two, so Mermaid auto-sized it narrower. Add a matching subtitle ("Implement by assembly") so all four nodes render the same width. --- docs/WayOfWork/spec-driven-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/WayOfWork/spec-driven-development.md b/docs/WayOfWork/spec-driven-development.md index 0b30be4f..692cead0 100644 --- a/docs/WayOfWork/spec-driven-development.md +++ b/docs/WayOfWork/spec-driven-development.md @@ -18,7 +18,7 @@ All development follows four stages. Each stage feeds the next: discovery become flowchart LR A["1 · Obtain
Discover requirements"] B["2 · Specify
Write structured specs"] - C["3 · Build"]:::accent + C["3 · Build
Implement by assembly"]:::accent D["4 · Validate
Verify against specs"] A --> B --> C --> D classDef accent fill:#F36C21,stroke:#F36C21,color:#fff;