@diagrammo/dgmo 0.8.21 → 0.8.23

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 (114) hide show
  1. package/AGENTS.md +2 -1
  2. package/README.md +1 -0
  3. package/dist/cli.cjs +145 -93
  4. package/dist/editor.cjs +20 -3
  5. package/dist/editor.cjs.map +1 -1
  6. package/dist/editor.js +20 -3
  7. package/dist/editor.js.map +1 -1
  8. package/dist/highlight.cjs +15 -2
  9. package/dist/highlight.cjs.map +1 -1
  10. package/dist/highlight.js +15 -2
  11. package/dist/highlight.js.map +1 -1
  12. package/dist/index.cjs +20843 -14937
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +426 -17
  15. package/dist/index.d.ts +426 -17
  16. package/dist/index.js +20795 -14912
  17. package/dist/index.js.map +1 -1
  18. package/dist/internal.cjs +380 -0
  19. package/dist/internal.cjs.map +1 -0
  20. package/dist/internal.d.cts +179 -0
  21. package/dist/internal.d.ts +179 -0
  22. package/dist/internal.js +337 -0
  23. package/dist/internal.js.map +1 -0
  24. package/docs/guide/chart-cycle.md +156 -0
  25. package/docs/guide/chart-journey-map.md +179 -0
  26. package/docs/guide/chart-pyramid.md +111 -0
  27. package/docs/guide/chart-sitemap.md +18 -1
  28. package/docs/guide/chart-tech-radar.md +219 -0
  29. package/docs/guide/registry.json +6 -0
  30. package/docs/language-reference.md +177 -6
  31. package/gallery/fixtures/boxes-and-lines.dgmo +10 -3
  32. package/gallery/fixtures/c4-full.dgmo +2 -2
  33. package/gallery/fixtures/cycle/ooda-loop.dgmo +25 -0
  34. package/gallery/fixtures/cycle/pdca-circle-nodes.dgmo +12 -0
  35. package/gallery/fixtures/cycle/pdca-minimal.dgmo +6 -0
  36. package/gallery/fixtures/cycle/sprint-cycle-span.dgmo +17 -0
  37. package/gallery/fixtures/gantt-full.dgmo +2 -2
  38. package/gallery/fixtures/gantt.dgmo +2 -2
  39. package/gallery/fixtures/infra-full.dgmo +2 -2
  40. package/gallery/fixtures/infra.dgmo +1 -1
  41. package/gallery/fixtures/pyramid/dikw.dgmo +17 -0
  42. package/gallery/fixtures/pyramid/inverted-funnel.dgmo +16 -0
  43. package/gallery/fixtures/pyramid/minimal.dgmo +5 -0
  44. package/gallery/fixtures/sequence-tags-protocols.dgmo +2 -2
  45. package/gallery/fixtures/sequence-tags.dgmo +2 -2
  46. package/gallery/fixtures/tech-radar-dense.dgmo +77 -0
  47. package/gallery/fixtures/tech-radar.dgmo +36 -0
  48. package/gallery/fixtures/timeline.dgmo +1 -1
  49. package/package.json +11 -1
  50. package/src/boxes-and-lines/layout.ts +309 -33
  51. package/src/boxes-and-lines/parser.ts +86 -10
  52. package/src/boxes-and-lines/renderer.ts +250 -91
  53. package/src/boxes-and-lines/types.ts +1 -1
  54. package/src/c4/layout.ts +8 -8
  55. package/src/c4/parser.ts +35 -2
  56. package/src/c4/renderer.ts +19 -3
  57. package/src/c4/types.ts +1 -0
  58. package/src/chart.ts +14 -7
  59. package/src/cli.ts +5 -35
  60. package/src/completion.ts +233 -41
  61. package/src/cycle/layout.ts +723 -0
  62. package/src/cycle/parser.ts +352 -0
  63. package/src/cycle/renderer.ts +566 -0
  64. package/src/cycle/types.ts +98 -0
  65. package/src/d3.ts +107 -8
  66. package/src/dgmo-router.ts +82 -3
  67. package/src/echarts.ts +8 -5
  68. package/src/editor/dgmo.grammar +5 -1
  69. package/src/editor/dgmo.grammar.js +1 -1
  70. package/src/editor/keywords.ts +17 -0
  71. package/src/gantt/parser.ts +2 -8
  72. package/src/graph/flowchart-parser.ts +15 -21
  73. package/src/graph/state-parser.ts +5 -10
  74. package/src/index.ts +63 -2
  75. package/src/infra/layout.ts +218 -74
  76. package/src/infra/parser.ts +32 -8
  77. package/src/infra/renderer.ts +14 -8
  78. package/src/infra/types.ts +10 -3
  79. package/src/internal.ts +16 -0
  80. package/src/journey-map/layout.ts +386 -0
  81. package/src/journey-map/parser.ts +540 -0
  82. package/src/journey-map/renderer.ts +1521 -0
  83. package/src/journey-map/types.ts +47 -0
  84. package/src/kanban/parser.ts +3 -10
  85. package/src/kanban/renderer.ts +31 -15
  86. package/src/mindmap/parser.ts +12 -18
  87. package/src/mindmap/renderer.ts +14 -13
  88. package/src/mindmap/text-wrap.ts +22 -12
  89. package/src/mindmap/types.ts +2 -2
  90. package/src/org/collapse.ts +81 -0
  91. package/src/org/parser.ts +2 -6
  92. package/src/org/renderer.ts +212 -4
  93. package/src/pyramid/parser.ts +172 -0
  94. package/src/pyramid/renderer.ts +684 -0
  95. package/src/pyramid/types.ts +28 -0
  96. package/src/render.ts +2 -8
  97. package/src/sequence/parser.ts +62 -20
  98. package/src/sequence/renderer.ts +146 -40
  99. package/src/sharing.ts +1 -0
  100. package/src/sitemap/layout.ts +21 -6
  101. package/src/sitemap/parser.ts +26 -17
  102. package/src/sitemap/renderer.ts +34 -0
  103. package/src/sitemap/types.ts +1 -0
  104. package/src/tech-radar/index.ts +14 -0
  105. package/src/tech-radar/interactive.ts +1112 -0
  106. package/src/tech-radar/layout.ts +190 -0
  107. package/src/tech-radar/parser.ts +385 -0
  108. package/src/tech-radar/renderer.ts +1159 -0
  109. package/src/tech-radar/shared.ts +187 -0
  110. package/src/tech-radar/types.ts +81 -0
  111. package/src/utils/description-helpers.ts +33 -0
  112. package/src/utils/legend-layout.ts +3 -1
  113. package/src/utils/parsing.ts +47 -7
  114. package/src/utils/tag-groups.ts +46 -60
@@ -19,12 +19,15 @@
19
19
  { "slug": "chart-er", "title": "Entity Relationship", "group": "software", "file": "chart-er.md" },
20
20
  { "slug": "chart-flowchart", "title": "Flowchart", "group": "software", "file": "chart-flowchart.md" },
21
21
  { "slug": "chart-infra", "title": "Infrastructure", "group": "software", "file": "chart-infra.md" },
22
+ { "slug": "chart-mindmap", "title": "Mind Map", "group": "software", "file": "chart-mindmap.md" },
22
23
  { "slug": "chart-sequence", "title": "Sequence Diagram", "group": "software", "file": "chart-sequence.md" },
23
24
  { "slug": "chart-sitemap", "title": "Sitemap", "group": "software", "file": "chart-sitemap.md" },
24
25
  { "slug": "chart-state", "title": "State Diagram", "group": "software", "file": "chart-state.md" },
26
+ { "slug": "chart-wireframe", "title": "Wireframe", "group": "software", "file": "chart-wireframe.md" },
25
27
 
26
28
  { "slug": "chart-area", "title": "Area Chart", "group": "data", "file": "chart-area.md" },
27
29
  { "slug": "chart-bar", "title": "Bar Chart", "group": "data", "file": "chart-bar.md" },
30
+ { "slug": "chart-cycle", "title": "Cycle Diagram", "group": "data", "file": "chart-cycle.md" },
28
31
  { "slug": "chart-chord", "title": "Chord Diagram", "group": "data", "file": "chart-chord.md" },
29
32
  { "slug": "chart-doughnut", "title": "Doughnut Chart", "group": "data", "file": "chart-doughnut.md" },
30
33
  { "slug": "chart-function", "title": "Function Plot", "group": "data", "file": "chart-function.md" },
@@ -38,10 +41,13 @@
38
41
  { "slug": "chart-slope", "title": "Slope Chart", "group": "data", "file": "chart-slope.md" },
39
42
  { "slug": "chart-bar-stacked", "title": "Stacked Bar Chart", "group": "data", "file": "chart-bar-stacked.md" },
40
43
 
44
+ { "slug": "chart-journey-map", "title": "Journey Map", "group": "business", "file": "chart-journey-map.md" },
41
45
  { "slug": "chart-funnel", "title": "Funnel Chart", "group": "business", "file": "chart-funnel.md" },
42
46
  { "slug": "chart-org", "title": "Org Chart", "group": "business", "file": "chart-org.md" },
47
+ { "slug": "chart-pyramid", "title": "Pyramid Diagram", "group": "business", "file": "chart-pyramid.md" },
43
48
  { "slug": "chart-quadrant", "title": "Quadrant Chart", "group": "business", "file": "chart-quadrant.md" },
44
49
  { "slug": "chart-sankey", "title": "Sankey Diagram", "group": "business", "file": "chart-sankey.md" },
50
+ { "slug": "chart-tech-radar", "title": "Technology Radar", "group": "business", "file": "chart-tech-radar.md" },
45
51
  { "slug": "chart-venn", "title": "Venn Diagram (Beta)", "group": "business", "file": "chart-venn.md" },
46
52
  { "slug": "chart-wordcloud", "title": "Word Cloud", "group": "business", "file": "chart-wordcloud.md" },
47
53
 
@@ -20,8 +20,9 @@
20
20
  14. [Timeline Diagrams](#14-timeline-diagrams)
21
21
  15. [Data Charts](#15-data-charts)
22
22
  16. [Visualizations](#16-visualizations)
23
- 17. [Wireframe Diagrams](#17-wireframe-diagrams)
24
- 18. [Colon Usage Summary](#18-colon-usage-summary)
23
+ 17. [Tech Radar Diagrams](#17-tech-radar-diagrams)
24
+ 18. [Wireframe Diagrams](#18-wireframe-diagrams)
25
+ 19. [Colon Usage Summary](#19-colon-usage-summary)
25
26
 
26
27
  ---
27
28
 
@@ -609,7 +610,28 @@ deployment
609
610
  container Web App // reference existing container
610
611
  ```
611
612
 
612
- ### 7.7 Options
613
+ ### 7.7 Element Descriptions
614
+
615
+ ```
616
+ // Indented metadata form (colon required)
617
+ Web App is a container
618
+ description: SPA built with React
619
+ description: Supports SSR and client-side routing
620
+
621
+ // Keyword form (colon optional)
622
+ API is a container
623
+ description Handles all REST endpoints
624
+
625
+ // Pipe metadata form
626
+ Database is a container | description: PostgreSQL with read replicas
627
+ ```
628
+
629
+ - Multiple `description` lines accumulate into a multi-line description
630
+ - `description` is extracted as a dedicated field, not stored in general metadata
631
+ - Supports inline markdown: `**bold**`, `*italic*`, `` `code` ``, `[links](url)`
632
+ - `- bullet text` renders as `• bullet text`
633
+
634
+ ### 7.8 Options
613
635
 
614
636
  - `direction-tb` (boolean; default is LR)
615
637
 
@@ -813,7 +835,28 @@ All permutations supported: node→group, group→node, group→group. Brackets
813
835
  Pricing | Auth: Public
814
836
  ```
815
837
 
816
- ### 11.5 Options
838
+ ### 11.5 Node Descriptions
839
+
840
+ ```
841
+ // Keyword form (colon optional)
842
+ About
843
+ description Company history and team bios
844
+
845
+ // Pipe metadata form
846
+ Pricing | description: Compare plans and features
847
+
848
+ // Multi-line
849
+ Blog
850
+ description: Engineering and product updates
851
+ description: Published weekly
852
+ ```
853
+
854
+ - `description` keyword required (bare prose lines are not auto-detected as descriptions)
855
+ - Multiple `description` lines accumulate into a multi-line description
856
+ - Supports inline markdown: `**bold**`, `*italic*`, `` `code` ``, `[links](url)`
857
+ - `- bullet text` renders as `• bullet text`
858
+
859
+ ### 11.6 Options
817
860
 
818
861
  - `direction-tb` (boolean; default is LR)
819
862
 
@@ -1327,7 +1370,73 @@ Navigator 0.85 0.8
1327
1370
 
1328
1371
  ---
1329
1372
 
1330
- ## 17. Wireframe Diagrams
1373
+ ## 17. Tech Radar Diagrams
1374
+
1375
+ ```
1376
+ tech-radar Title
1377
+
1378
+ rings
1379
+ Adopt
1380
+ Trial
1381
+ Assess
1382
+ Hold
1383
+
1384
+ Techniques | quadrant: top-right
1385
+ Continuous Deployment | ring: Adopt, trend: stable
1386
+ Fully adopted across all services.
1387
+ Micro Frontends | ring: Trial, trend: up
1388
+
1389
+ Tools | quadrant: top-left
1390
+ Vite | ring: Adopt, trend: up
1391
+ Webpack | ring: Hold, trend: down
1392
+ ```
1393
+
1394
+ ### Rings
1395
+
1396
+ Declared in a `rings` block, one per indented line. Order: innermost (first) to outermost (last). Any names, any count.
1397
+
1398
+ Aliases supported: `Adopt alias a` — then blips can use `ring: a`.
1399
+
1400
+ ### Quadrants
1401
+
1402
+ Exactly 4 required. Each is a top-level header with pipe metadata:
1403
+
1404
+ ```
1405
+ Name | quadrant: position
1406
+ ```
1407
+
1408
+ **Positions:** `top-left`, `top-right`, `bottom-left`, `bottom-right` — each used exactly once.
1409
+
1410
+ Optional color override: `Tools | quadrant: top-left, color: purple`
1411
+
1412
+ Default colors: top-left=blue, top-right=green, bottom-left=red, bottom-right=orange.
1413
+
1414
+ ### Blips
1415
+
1416
+ Indented under their quadrant. Require `ring` metadata (case-insensitive match). Optional `trend`:
1417
+
1418
+ ```
1419
+ Item Name | ring: Adopt, trend: stable
1420
+ ```
1421
+
1422
+ **Trends:** `new` (double circle), `up` (inward crescent), `down` (outward crescent), `stable` (plain circle). Omitting renders plain circle.
1423
+
1424
+ ### Descriptions
1425
+
1426
+ Further-indented lines below a blip. Supports inline markdown (bold, italic, code, links).
1427
+
1428
+ ```
1429
+ Rust | ring: Assess, trend: new
1430
+ Evaluating for **performance-critical** services.
1431
+ ```
1432
+
1433
+ ### Numbering
1434
+
1435
+ Blips receive sequential global numbers. Order: quadrants clockwise (top-left → top-right → bottom-right → bottom-left), then by ring (innermost first), then declaration order.
1436
+
1437
+ ---
1438
+
1439
+ ## 18. Wireframe Diagrams
1331
1440
 
1332
1441
  Wireframe diagrams use **visual-mnemonic syntax** where bracket characters communicate element type.
1333
1442
 
@@ -1461,7 +1570,68 @@ wireframe Login Page
1461
1570
 
1462
1571
  ---
1463
1572
 
1464
- ## 18. Colon Usage Summary
1573
+ ## 19. Pyramid Diagrams
1574
+
1575
+ Hierarchical pyramid visualization with stacked layers, descriptions, and optional per-layer color. Source order reads apex-first (top of file = top of pyramid).
1576
+
1577
+ ### Declaration
1578
+
1579
+ ```
1580
+ pyramid [Title]
1581
+
1582
+ LayerLabel
1583
+ LayerLabel | color: blue
1584
+ LayerLabel | color: green
1585
+ Indented description
1586
+ ```
1587
+
1588
+ The first line declares the chart type and an optional title. Each non-indented, non-directive line declares one layer. At least two layers are required.
1589
+
1590
+ ### Example
1591
+
1592
+ ```
1593
+ pyramid Maslow's Hierarchy
1594
+
1595
+ Self-Actualization | color: purple
1596
+ Morality, creativity, acceptance of facts.
1597
+
1598
+ Esteem | color: blue
1599
+ Respect, recognition, confidence.
1600
+
1601
+ Love & Belonging | color: green
1602
+ Friendship, intimacy, family.
1603
+
1604
+ Safety | color: yellow
1605
+ Security, employment, health.
1606
+
1607
+ Physiological | color: orange
1608
+ Food, water, warmth, rest.
1609
+ ```
1610
+
1611
+ ### Layer Pipe Metadata
1612
+
1613
+ | Key | Type | Default | Description |
1614
+ |-----|------|---------|-------------|
1615
+ | `color` | palette name | auto | Layer color |
1616
+ | `description` | string | — | One-liner description |
1617
+
1618
+ ### Descriptions
1619
+
1620
+ Indented lines under a layer are description text. Markdown inline formatting (`**bold**`, `*italic*`, `` `code` ``, `[links](url)`) is supported. Bullets written as `- item` render as `• item`.
1621
+
1622
+ ### Directives
1623
+
1624
+ | Directive | Effect |
1625
+ |-----------|--------|
1626
+ | `inverted` | Flip apex to the bottom (funnel orientation). Source order is preserved — the first layer is always the visual top. |
1627
+
1628
+ ### Overflow Handling
1629
+
1630
+ When descriptions don't fit a layer's band the renderer wraps at the column edge, truncates with `…`, auto-alternates descriptions left ↔ right when one column can't hold them, and (in-app) reveals the full description on highlight while hiding siblings.
1631
+
1632
+ ---
1633
+
1634
+ ## 20. Colon Usage Summary
1465
1635
 
1466
1636
  ### Constructs Where Colons Are REQUIRED
1467
1637
 
@@ -1480,6 +1650,7 @@ wireframe Login Page
1480
1650
  | Construct | Diagram Type | Example |
1481
1651
  |-----------|-------------|---------|
1482
1652
  | Class relationship label | class | `--|> Vessel : extends` or `--|> Vessel extends` |
1653
+ | Description keyword (indented) | sitemap, c4 | `description text` or `description: text` |
1483
1654
 
1484
1655
  ### Colons NOT USED
1485
1656
 
@@ -9,20 +9,27 @@ hide priority:Low
9
9
  direction LR
10
10
 
11
11
  // --- Services ---
12
- API Gateway | t: Backend, description: Main entry point for all requests
12
+ API Gateway | t: Backend
13
+ Main entry point for all requests
14
+ Routes to **backend services**
13
15
  -routes-> UserService
14
16
  -routes-> ProductService
15
17
  -routes-> OrderService
16
18
 
17
- UserService | t: Backend, description: Handles auth and profiles
19
+ UserService | t: Backend
20
+ Handles auth and profiles
21
+ Uses `JWT` tokens for sessions
18
22
  -reads-> UserDB
19
23
  -checks-> SessionCache
20
24
 
21
25
  ProductService | t: Frontend, description: Product catalog and search
26
+ Supports *full-text* search
22
27
  -queries-> ProductDB
23
28
  -invalidates-> ProductCache
24
29
 
25
- OrderService | t: Backend, description: Order processing pipeline
30
+ OrderService | t: Backend
31
+ Order processing pipeline
32
+ Validates inventory before commit
26
33
  -writes-> OrderDB
27
34
  -publishes-> OrderQueue
28
35
 
@@ -1,12 +1,12 @@
1
1
  c4 Online Bookstore — C4 Architecture
2
2
 
3
- tag Technology alias tech
3
+ tag Technology tech
4
4
  React(blue)
5
5
  Node(green)
6
6
  Python(orange)
7
7
  PostgreSQL(purple)
8
8
 
9
- tag Team alias t
9
+ tag Team t
10
10
  Frontend(blue)
11
11
  Backend(green)
12
12
  Platform(teal)
@@ -0,0 +1,25 @@
1
+ cycle OODA Loop
2
+
3
+ Observe | color: blue
4
+ Gather raw information from the environment
5
+ Monitor unfolding circumstances
6
+ -Unfold circumstances-> | color: blue
7
+ Synthesize raw data into actionable context
8
+ Identify **key patterns** and anomalies
9
+
10
+ Orient | color: green
11
+ Analyze and synthesize observations
12
+ Form a mental model of the situation
13
+ -Form hypothesis-> | color: green
14
+ Apply previous experience and cultural filters
15
+ Perform *destructive deduction* to break old models
16
+
17
+ Decide | color: orange
18
+ Select a course of action
19
+ -Commit to action-> | color: orange
20
+
21
+ Act | color: red
22
+ Execute the chosen course of action
23
+ Generate results that feed back
24
+ -Generate feedback-> | color: red
25
+ Results flow back into observation
@@ -0,0 +1,12 @@
1
+ cycle PDCA
2
+
3
+ circle-nodes
4
+
5
+ Plan | color: blue
6
+ Define goals and processes
7
+ Do | color: green
8
+ Implement the plan
9
+ Check | color: orange
10
+ Evaluate results
11
+ Act | color: red
12
+ Adjust and improve
@@ -0,0 +1,6 @@
1
+ cycle PDCA
2
+
3
+ Plan | color: blue
4
+ Do | color: green
5
+ Check | color: orange
6
+ Act | color: red
@@ -0,0 +1,17 @@
1
+ cycle Sprint Cycle
2
+
3
+ Planning | color: blue, span: 1
4
+ Sprint kickoff and backlog grooming
5
+ -Start sprint->
6
+
7
+ Development | color: green, span: 3
8
+ Build and test features
9
+ -Demo ready->
10
+
11
+ Review | color: orange, span: 1
12
+ Sprint demo and stakeholder feedback
13
+ -Retrospective->
14
+
15
+ Retro | color: purple, span: 0.5
16
+ Team reflection and process improvement
17
+ -Next sprint->
@@ -4,13 +4,13 @@ today-marker 2024-03-01
4
4
  critical-path
5
5
  dependencies
6
6
 
7
- tag Team alias t
7
+ tag Team t
8
8
  Engineering(blue)
9
9
  Design(purple)
10
10
  QA(orange)
11
11
  Marketing(green)
12
12
 
13
- tag Phase alias p
13
+ tag Phase p
14
14
  Foundation(green)
15
15
  Growth(orange)
16
16
  Launch(red)
@@ -4,12 +4,12 @@ today-marker 2024-03-01
4
4
  critical-path
5
5
  dependencies
6
6
 
7
- tag Team alias t
7
+ tag Team t
8
8
  Engineering(blue)
9
9
  Design(purple)
10
10
  QA(orange)
11
11
 
12
- tag Phase alias p
12
+ tag Phase p
13
13
  Foundation(green)
14
14
  Growth(orange)
15
15
 
@@ -1,11 +1,11 @@
1
1
  infra E-Commerce Platform — Full Infrastructure
2
2
 
3
- tag Team alias t
3
+ tag Team t
4
4
  Backend(blue)
5
5
  Platform(teal)
6
6
  Data(purple)
7
7
 
8
- tag Tier alias r
8
+ tag Tier r
9
9
  Edge(green)
10
10
  Core(blue)
11
11
  Storage(orange)
@@ -1,6 +1,6 @@
1
1
  infra Production Traffic Flow
2
2
 
3
- tag Team alias t
3
+ tag Team t
4
4
  Backend(blue)
5
5
  Platform(teal)
6
6
 
@@ -0,0 +1,17 @@
1
+ pyramid The DIKW Pyramid
2
+
3
+ Wisdom | color: purple
4
+ Ethical judgment, acting with
5
+ insight — knowing *why*.
6
+
7
+ Knowledge | color: blue
8
+ Synthesized information —
9
+ knowing *how*.
10
+
11
+ Information | color: green
12
+ Processed data with context —
13
+ knowing *what*.
14
+
15
+ Data | color: yellow
16
+ Raw facts and measurements —
17
+ unprocessed signals.
@@ -0,0 +1,16 @@
1
+ pyramid Acquisition Funnel
2
+
3
+ inverted
4
+
5
+ Visitors | color: blue
6
+ Landed on the site from any channel
7
+ this month.
8
+
9
+ Signups | color: cyan
10
+ Provided an email and confirmed.
11
+
12
+ Activated | color: green
13
+ Completed the first meaningful action.
14
+
15
+ Paid | color: orange
16
+ Converted to a paid plan.
@@ -0,0 +1,5 @@
1
+ pyramid
2
+
3
+ Top
4
+ Middle
5
+ Bottom
@@ -1,13 +1,13 @@
1
1
  sequence Order Fulfillment — Protocols & Ownership
2
2
  active-tag Protocol
3
3
 
4
- tag Protocol alias p
4
+ tag Protocol p
5
5
  REST(blue)
6
6
  gRPC(green)
7
7
  Async(orange)
8
8
  SQL(purple)
9
9
 
10
- tag Owner alias o
10
+ tag Owner o
11
11
  Checkout(teal)
12
12
  Fulfillment(orange)
13
13
  Payments(red)
@@ -1,13 +1,13 @@
1
1
  sequence API Gateway — Infrastructure Concerns
2
2
  active-tag Concern
3
3
 
4
- tag Concern alias c
4
+ tag Concern c
5
5
  Caching(blue)
6
6
  Auth(green)
7
7
  RateLimiting(orange)
8
8
  BusinessLogic(purple) default
9
9
 
10
- tag Team alias t
10
+ tag Team t
11
11
  Platform(teal)
12
12
  Product(orange)
13
13
  Security(red)
@@ -0,0 +1,77 @@
1
+ tech-radar Dense Radar Stress Test
2
+
3
+ rings
4
+ Adopt
5
+ Trial
6
+ Assess
7
+ Hold
8
+
9
+ Techniques | quadrant: top-right
10
+ CI/CD | ring: Adopt, trend: stable
11
+ IaC | ring: Adopt, trend: stable
12
+ Microservices | ring: Adopt, trend: stable
13
+ Event Sourcing | ring: Trial, trend: up
14
+ CQRS | ring: Trial, trend: up
15
+ Feature Flags | ring: Adopt, trend: new
16
+ Chaos Engineering | ring: Assess, trend: new
17
+ Trunk-Based Dev | ring: Trial, trend: up
18
+ Contract Testing | ring: Trial, trend: new
19
+ Design Tokens | ring: Assess, trend: new
20
+ Micro Frontends | ring: Assess, trend: up
21
+ Server Components | ring: Trial, trend: new
22
+ Edge Functions | ring: Trial, trend: up
23
+ Zero Trust | ring: Adopt, trend: stable
24
+ Observability | ring: Adopt, trend: stable
25
+ Platform Engineering | ring: Trial, trend: new
26
+
27
+ Tools | quadrant: top-left
28
+ GitHub Copilot | ring: Trial, trend: new
29
+ Vite | ring: Adopt, trend: up
30
+ Playwright | ring: Adopt, trend: stable
31
+ Turborepo | ring: Trial, trend: new
32
+ Docker | ring: Adopt, trend: stable
33
+ Grafana | ring: Adopt, trend: stable
34
+ Datadog | ring: Trial, trend: up
35
+ Webpack | ring: Hold, trend: down
36
+ Storybook | ring: Adopt, trend: stable
37
+ Figma | ring: Adopt, trend: stable
38
+ Linear | ring: Trial, trend: new
39
+ Pulumi | ring: Assess, trend: new
40
+ Tailscale | ring: Trial, trend: up
41
+ Renovate | ring: Adopt, trend: stable
42
+ Bruno | ring: Assess, trend: new
43
+ Cursor | ring: Trial, trend: new
44
+
45
+ Platforms | quadrant: bottom-left
46
+ Kubernetes | ring: Adopt, trend: stable
47
+ Cloudflare Workers | ring: Trial, trend: up
48
+ AWS Lambda | ring: Hold, trend: down
49
+ Vercel | ring: Trial, trend: up
50
+ Fly.io | ring: Assess, trend: new
51
+ Neon | ring: Trial, trend: new
52
+ PlanetScale | ring: Hold, trend: down
53
+ Supabase | ring: Assess, trend: up
54
+ Upstash | ring: Trial, trend: new
55
+ Railway | ring: Assess, trend: new
56
+ Deno Deploy | ring: Assess, trend: new
57
+ Google Cloud Run | ring: Adopt, trend: stable
58
+ Azure AKS | ring: Trial, trend: up
59
+ Hetzner | ring: Assess, trend: new
60
+ Tigris | ring: Assess, trend: new
61
+
62
+ Languages & Frameworks | quadrant: bottom-right
63
+ TypeScript | ring: Adopt, trend: stable
64
+ Rust | ring: Assess, trend: new
65
+ React | ring: Adopt, trend: stable
66
+ Go | ring: Adopt, trend: stable
67
+ Python | ring: Adopt, trend: stable
68
+ Svelte | ring: Assess, trend: up
69
+ Solid | ring: Assess, trend: new
70
+ Zig | ring: Hold, trend: stable
71
+ Kotlin | ring: Trial, trend: up
72
+ Swift | ring: Adopt, trend: stable
73
+ Astro | ring: Trial, trend: new
74
+ HTMX | ring: Assess, trend: new
75
+ Effect-TS | ring: Assess, trend: new
76
+ Bun | ring: Trial, trend: up
77
+ Deno | ring: Assess, trend: up
@@ -0,0 +1,36 @@
1
+ tech-radar Engineering Tech Radar Q2 2026
2
+
3
+ rings
4
+ Adopt
5
+ Trial
6
+ Assess
7
+ Hold
8
+
9
+ Techniques | quadrant: top-right
10
+ Continuous Deployment | ring: Adopt, trend: stable
11
+ Fully adopted across all services.
12
+ Infrastructure as Code | ring: Adopt, trend: stable
13
+ Micro Frontends | ring: Trial, trend: up
14
+ Exploring for the portal project.
15
+ Trunk-Based Development | ring: Assess, trend: new
16
+
17
+ Tools | quadrant: top-left
18
+ GitHub Copilot | ring: Trial, trend: new
19
+ Evaluating for developer productivity.
20
+ Vite | ring: Adopt, trend: up
21
+ Webpack | ring: Hold, trend: down
22
+ Migrating to Vite across all projects.
23
+ Playwright | ring: Adopt, trend: stable
24
+ Turborepo | ring: Trial, trend: new
25
+
26
+ Platforms | quadrant: bottom-left
27
+ Kubernetes | ring: Adopt, trend: stable
28
+ Cloudflare Workers | ring: Trial, trend: up
29
+ AWS Lambda | ring: Hold, trend: down
30
+ Consolidating onto Kubernetes.
31
+
32
+ Languages & Frameworks | quadrant: bottom-right
33
+ TypeScript | ring: Adopt, trend: stable
34
+ Rust | ring: Assess, trend: new
35
+ Evaluating for performance-critical services.
36
+ React | ring: Adopt, trend: stable
@@ -1,7 +1,7 @@
1
1
  timeline Product Roadmap 2024-2025
2
2
  sort tag:Team
3
3
 
4
- tag Team alias t
4
+ tag Team t
5
5
  Engineering(blue)
6
6
  Design(purple)
7
7
  Product(green)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diagrammo/dgmo",
3
- "version": "0.8.21",
3
+ "version": "0.8.23",
4
4
  "description": "DGMO diagram markup language — parser, renderer, and color system",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -40,6 +40,16 @@
40
40
  "types": "./dist/highlight.d.cts",
41
41
  "default": "./dist/highlight.cjs"
42
42
  }
43
+ },
44
+ "./internal": {
45
+ "import": {
46
+ "types": "./dist/internal.d.ts",
47
+ "default": "./dist/internal.js"
48
+ },
49
+ "require": {
50
+ "types": "./dist/internal.d.cts",
51
+ "default": "./dist/internal.cjs"
52
+ }
43
53
  }
44
54
  },
45
55
  "files": [