@diagrammo/dgmo 0.8.2 → 0.8.4

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 (120) hide show
  1. package/.claude/commands/dgmo-diagram-this.md +60 -0
  2. package/.claude/commands/dgmo-document-project.md +128 -0
  3. package/.claude/commands/dgmo.md +185 -50
  4. package/.cursorrules +32 -37
  5. package/.github/copilot-instructions.md +35 -44
  6. package/.windsurfrules +32 -37
  7. package/README.md +4 -4
  8. package/dist/cli.cjs +189 -194
  9. package/dist/editor.cjs +336 -0
  10. package/dist/editor.cjs.map +1 -0
  11. package/dist/editor.d.cts +27 -0
  12. package/dist/editor.d.ts +27 -0
  13. package/dist/editor.js +305 -0
  14. package/dist/editor.js.map +1 -0
  15. package/dist/index.cjs +3699 -1564
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +7 -6
  18. package/dist/index.d.ts +7 -6
  19. package/dist/index.js +3699 -1564
  20. package/dist/index.js.map +1 -1
  21. package/docs/language-reference.md +822 -1060
  22. package/gallery/fixtures/arc.dgmo +18 -0
  23. package/gallery/fixtures/area.dgmo +19 -0
  24. package/gallery/fixtures/bar-stacked.dgmo +10 -0
  25. package/gallery/fixtures/bar.dgmo +10 -0
  26. package/gallery/fixtures/c4-full.dgmo +52 -0
  27. package/gallery/fixtures/c4.dgmo +17 -0
  28. package/gallery/fixtures/chord.dgmo +12 -0
  29. package/gallery/fixtures/class-basic.dgmo +14 -0
  30. package/gallery/fixtures/class-full.dgmo +43 -0
  31. package/gallery/fixtures/doughnut.dgmo +8 -0
  32. package/gallery/fixtures/flowchart-basic.dgmo +3 -0
  33. package/gallery/fixtures/flowchart-colors.dgmo +5 -0
  34. package/gallery/fixtures/flowchart-complex.dgmo +17 -0
  35. package/gallery/fixtures/flowchart-decision.dgmo +5 -0
  36. package/gallery/fixtures/flowchart-full.dgmo +13 -0
  37. package/gallery/fixtures/flowchart-groups.dgmo +10 -0
  38. package/gallery/fixtures/flowchart-loop.dgmo +7 -0
  39. package/gallery/fixtures/flowchart-nested.dgmo +7 -0
  40. package/gallery/fixtures/flowchart-shapes.dgmo +5 -0
  41. package/gallery/fixtures/function.dgmo +8 -0
  42. package/gallery/fixtures/funnel.dgmo +7 -0
  43. package/gallery/fixtures/gantt-full.dgmo +49 -0
  44. package/gallery/fixtures/gantt.dgmo +42 -0
  45. package/gallery/fixtures/heatmap.dgmo +8 -0
  46. package/gallery/fixtures/infra-full.dgmo +78 -0
  47. package/gallery/fixtures/infra-overload.dgmo +25 -0
  48. package/gallery/fixtures/infra.dgmo +47 -0
  49. package/gallery/fixtures/initiative-status-full.dgmo +46 -0
  50. package/gallery/fixtures/initiative-status-phases.dgmo +29 -0
  51. package/gallery/fixtures/initiative-status.dgmo +9 -0
  52. package/gallery/fixtures/line.dgmo +19 -0
  53. package/gallery/fixtures/multi-line.dgmo +11 -0
  54. package/gallery/fixtures/org-basic.dgmo +16 -0
  55. package/gallery/fixtures/org-full.dgmo +69 -0
  56. package/gallery/fixtures/org-teams.dgmo +25 -0
  57. package/gallery/fixtures/pie.dgmo +9 -0
  58. package/gallery/fixtures/polar-area.dgmo +8 -0
  59. package/gallery/fixtures/quadrant.dgmo +18 -0
  60. package/gallery/fixtures/radar.dgmo +8 -0
  61. package/gallery/fixtures/sankey.dgmo +31 -0
  62. package/gallery/fixtures/scatter.dgmo +21 -0
  63. package/gallery/fixtures/sequence-tags-protocols.dgmo +45 -0
  64. package/gallery/fixtures/sequence-tags.dgmo +41 -0
  65. package/gallery/fixtures/sequence.dgmo +35 -0
  66. package/gallery/fixtures/sitemap-basic.dgmo +12 -0
  67. package/gallery/fixtures/sitemap-full.dgmo +156 -0
  68. package/gallery/fixtures/slope.dgmo +8 -0
  69. package/gallery/fixtures/spr-eras.dgmo +62 -0
  70. package/gallery/fixtures/state.dgmo +30 -0
  71. package/gallery/fixtures/timeline-intraday.dgmo +14 -0
  72. package/gallery/fixtures/timeline.dgmo +32 -0
  73. package/gallery/fixtures/venn.dgmo +10 -0
  74. package/gallery/fixtures/wordcloud.dgmo +24 -0
  75. package/package.json +51 -2
  76. package/src/c4/layout.ts +372 -90
  77. package/src/c4/parser.ts +113 -62
  78. package/src/chart.ts +149 -64
  79. package/src/class/parser.ts +84 -28
  80. package/src/class/renderer.ts +2 -2
  81. package/src/cli.ts +179 -77
  82. package/src/completion.ts +381 -182
  83. package/src/d3.ts +1026 -428
  84. package/src/dgmo-mermaid.ts +16 -13
  85. package/src/dgmo-router.ts +70 -24
  86. package/src/echarts.ts +682 -169
  87. package/src/editor/dgmo.grammar +69 -0
  88. package/src/editor/dgmo.grammar.d.ts +2 -0
  89. package/src/editor/dgmo.grammar.js +18 -0
  90. package/src/editor/dgmo.grammar.terms.d.ts +5 -0
  91. package/src/editor/dgmo.grammar.terms.js +35 -0
  92. package/src/editor/highlight.ts +36 -0
  93. package/src/editor/index.ts +28 -0
  94. package/src/editor/keywords.ts +220 -0
  95. package/src/editor/tokens.ts +30 -0
  96. package/src/er/parser.ts +55 -29
  97. package/src/er/renderer.ts +112 -53
  98. package/src/gantt/calculator.ts +91 -29
  99. package/src/gantt/parser.ts +291 -97
  100. package/src/gantt/renderer.ts +1120 -350
  101. package/src/graph/flowchart-parser.ts +48 -75
  102. package/src/graph/state-parser.ts +54 -27
  103. package/src/infra/parser.ts +161 -177
  104. package/src/infra/renderer.ts +723 -271
  105. package/src/infra/types.ts +0 -1
  106. package/src/initiative-status/parser.ts +144 -56
  107. package/src/kanban/parser.ts +27 -19
  108. package/src/org/layout.ts +111 -44
  109. package/src/org/parser.ts +71 -27
  110. package/src/org/resolver.ts +3 -3
  111. package/src/palettes/index.ts +3 -2
  112. package/src/render.ts +1 -2
  113. package/src/sequence/parser.ts +209 -100
  114. package/src/sitemap/parser.ts +73 -44
  115. package/src/utils/arrows.ts +2 -22
  116. package/src/utils/duration.ts +39 -21
  117. package/src/utils/legend-constants.ts +0 -2
  118. package/src/utils/parsing.ts +82 -72
  119. package/src/utils/tag-groups.ts +4 -41
  120. package/src/infra/serialize.ts +0 -67
@@ -0,0 +1,11 @@
1
+ multi-line Quarterly Revenue vs Operating Cost
2
+ x-label Quarter
3
+ y-label Amount ($M)
4
+
5
+ series Revenue (blue), Operating Cost (red), Net Profit (green)
6
+ Q1 2023 4.2, 3.1, 1.1
7
+ Q2 2023 4.8, 3.3, 1.5
8
+ Q3 2023 5.1, 3.5, 1.6
9
+ Q4 2023 5.9, 3.7, 2.2
10
+ Q1 2024 6.3, 3.9, 2.4
11
+ Q2 2024 7.1, 4.2, 2.9
@@ -0,0 +1,16 @@
1
+ org Small Startup
2
+
3
+ Jane Smith
4
+ role: CEO
5
+
6
+ Alex Chen
7
+ role: CTO
8
+
9
+ Maria Lopez
10
+ role: Head of Design
11
+
12
+ Sam Wilson
13
+ role: Head of Sales
14
+
15
+ Tom Brown
16
+ role: Account Executive
@@ -0,0 +1,69 @@
1
+ org Acme Corp
2
+
3
+ tag Location
4
+ NY(blue)
5
+ LA(yellow)
6
+ CO(green)
7
+ Remote(purple)
8
+
9
+ tag Status
10
+ FTE(green)
11
+ Contractor(orange)
12
+
13
+ Jane Smith
14
+ role: CEO
15
+ location: NY
16
+ status: FTE
17
+
18
+ Alex Chen
19
+ role: CTO
20
+ location: LA
21
+ status: FTE
22
+
23
+ [Platform Team]
24
+ goal: Core infrastructure and APIs
25
+ charter: Platform reliability and developer experience
26
+
27
+ Alice Park
28
+ role: Senior Engineer
29
+ focus: APIs
30
+ location: NY
31
+ status: FTE
32
+ Bob Torres
33
+ role: Junior Engineer
34
+ location: CO
35
+ status: FTE
36
+
37
+ [Frontend Team]
38
+ goal: Ship new design system by Q3
39
+
40
+ Carol Wu
41
+ role: Senior Engineer
42
+ location: Remote
43
+ status: FTE
44
+ Dave Kim
45
+ role: Junior Engineer
46
+ location: LA
47
+ status: Contractor
48
+
49
+ Maria Lopez
50
+ role: Head of Design
51
+ location: LA
52
+ status: FTE
53
+
54
+ Frank Lee
55
+ role: Senior Designer
56
+ location: Remote
57
+ status: Contractor
58
+
59
+ Sam Wilson
60
+ role: VP of Sales
61
+ location: NY
62
+ status: FTE
63
+
64
+ Tom Brown
65
+ role: Account Executive
66
+ location: NY
67
+ Lisa Park
68
+ role: Account Executive
69
+ location: CO
@@ -0,0 +1,25 @@
1
+ org Engineering Division
2
+
3
+ Alex Chen
4
+ role: CTO
5
+
6
+ [Platform Team]
7
+ goal: Core infrastructure and APIs
8
+ charter: Platform reliability and developer experience
9
+
10
+ Alice Park | role: Senior Engineer | location: NY
11
+ Bob Torres | role: Junior Engineer | location: CO
12
+
13
+ [Frontend Team]
14
+ goal: Ship new design system by Q3
15
+
16
+ Carol Wu
17
+ role: Senior Engineer
18
+ Dave Kim
19
+ role: Junior Engineer
20
+
21
+ [Data Team]
22
+ goal: ML pipeline and analytics
23
+
24
+ Eve Martinez
25
+ role: Data Scientist
@@ -0,0 +1,9 @@
1
+ pie Browser Market Share (2025)
2
+
3
+ Chrome 63.5
4
+ Safari 19.8
5
+ Firefox 6.2
6
+ Edge 5.1
7
+ Samsung Internet 2.8
8
+ Opera 1.4
9
+ Other 1.2
@@ -0,0 +1,8 @@
1
+ polar-area Incident Categories (Last 30 Days)
2
+
3
+ Security 12
4
+ Performance 28
5
+ Availability 8
6
+ Data Loss 3
7
+ Configuration 19
8
+ Network 15
@@ -0,0 +1,18 @@
1
+ quadrant Feature Prioritization Matrix
2
+
3
+ x-label Low Effort, High Effort
4
+ y-label Low Impact, High Impact
5
+
6
+ top-left Quick Wins
7
+ top-right Major Projects
8
+ bottom-left Fill-ins
9
+ bottom-right Avoid
10
+
11
+ Dark Mode (blue) 0.25, 0.85
12
+ API v2 (red) 0.8, 0.9
13
+ Fix Typos 0.1, 0.15
14
+ SSO Integration 0.75, 0.7
15
+ Export CSV 0.3, 0.6
16
+ Refactor Auth 0.85, 0.3
17
+ Add Tooltips 0.15, 0.45
18
+ Mobile App 0.9, 0.95
@@ -0,0 +1,8 @@
1
+ radar Engineering Team Skills Assessment
2
+
3
+ Frontend 85
4
+ Backend 72
5
+ DevOps 68
6
+ Testing 90
7
+ Documentation 55
8
+ Architecture 78
@@ -0,0 +1,31 @@
1
+ sankey Website Traffic Flow
2
+
3
+ // Source channels — colored by type
4
+ Organic Search (green)
5
+ Landing Page 450
6
+ Paid Ads (orange)
7
+ Landing Page 280
8
+ Social Media (blue)
9
+ Landing Page 180
10
+ Email (purple)
11
+ Landing Page 120
12
+ Direct (teal)
13
+ Landing Page 90
14
+
15
+ // Engagement & Conversion
16
+ Landing Page
17
+ Sign Up 340
18
+ Browse Products 520
19
+ Bounce 260 (red)
20
+
21
+ Sign Up
22
+ Free Trial 240
23
+ Paid Plan 100
24
+
25
+ Browse Products
26
+ Add to Cart 310
27
+ Exit 210 (red)
28
+
29
+ Add to Cart
30
+ Purchase (green) 220
31
+ Abandon 90 (red)
@@ -0,0 +1,21 @@
1
+ scatter Startup Funding vs Revenue
2
+ x-label Funding ($M)
3
+ y-label Annual Revenue ($M)
4
+
5
+ [SaaS](blue)
6
+ Acme Cloud 12, 8.5
7
+ DataSync 5.2, 3.1
8
+ CloudOps 25, 18.4
9
+ PlatformX 8, 5.7
10
+ NexGen 3.5, 1.2
11
+
12
+ [Fintech](green)
13
+ PayFlow 45, 32
14
+ LendTech 18, 12.5
15
+ CoinBase+ 60, 41
16
+ QuickPay 9, 6.8
17
+
18
+ [HealthTech](red)
19
+ MediScan 15, 7.2
20
+ HealthAI 22, 14.1
21
+ CareLink 7, 3.8
@@ -0,0 +1,45 @@
1
+ sequence Order Fulfillment — Protocols & Ownership
2
+ active-tag Protocol
3
+
4
+ tag Protocol alias p
5
+ REST(blue)
6
+ gRPC(green)
7
+ Async(orange)
8
+ SQL(purple)
9
+
10
+ tag Owner alias o
11
+ Checkout(teal)
12
+ Fulfillment(orange)
13
+ Payments(red)
14
+ Data(blue)
15
+
16
+ Buyer is an actor
17
+ CheckoutSvc is a service | o: Checkout
18
+ InventorySvc is a service | o: Fulfillment
19
+ PaymentSvc is a service | o: Payments
20
+ OrderDB is a database | o: Data
21
+ EventBus is a queue
22
+
23
+ == Place Order ==
24
+ Buyer -POST /checkout-> CheckoutSvc | p: REST
25
+ CheckoutSvc -reserveItems(skus)-> InventorySvc | p: gRPC
26
+ InventorySvc -UPDATE stock-> OrderDB | p: SQL
27
+ OrderDB -ok-> InventorySvc
28
+ InventorySvc -reserved-> CheckoutSvc
29
+
30
+ == Payment ==
31
+ CheckoutSvc -charge(amount)-> PaymentSvc | p: REST
32
+ PaymentSvc -confirmed-> CheckoutSvc
33
+
34
+ == Fulfillment ==
35
+ CheckoutSvc -INSERT order-> OrderDB | p: SQL
36
+ CheckoutSvc ~OrderPlaced~> EventBus | p: Async
37
+
38
+ parallel Notify
39
+ EventBus ~fulfill~> InventorySvc | p: Async
40
+ EventBus ~analytics~> OrderDB | p: Async
41
+
42
+ InventorySvc -createShipment-> InventorySvc
43
+ InventorySvc ~ShipmentCreated~> EventBus | p: Async
44
+ EventBus ~shipment update~> CheckoutSvc | p: Async
45
+ CheckoutSvc -shipment confirmation-> Buyer | p: REST
@@ -0,0 +1,41 @@
1
+ sequence API Gateway — Infrastructure Concerns
2
+ active-tag Concern
3
+
4
+ tag Concern alias c
5
+ Caching(blue)
6
+ Auth(green)
7
+ RateLimiting(orange)
8
+ BusinessLogic(purple) default
9
+
10
+ tag Team alias t
11
+ Platform(teal)
12
+ Product(orange)
13
+ Security(red)
14
+
15
+ Mobile is an actor
16
+ Gateway is a gateway | t: Platform
17
+ Redis is a cache | c: Caching, t: Platform
18
+
19
+ [Backend] | t: Product
20
+ UserAPI is a service
21
+ OrderAPI is a service
22
+ DB is a database
23
+
24
+ == Authentication ==
25
+ Mobile -POST /orders-> Gateway
26
+ Gateway -verify token-> Gateway | c: Auth
27
+ Gateway -check rate limit-> Redis | c: RateLimiting
28
+
29
+ == Business Logic ==
30
+ Gateway -POST /orders-> OrderAPI
31
+ OrderAPI -getUser(id)-> UserAPI
32
+ UserAPI -SELECT user-> DB
33
+ DB -user-> UserAPI
34
+ UserAPI -user-> OrderAPI
35
+ OrderAPI -INSERT order-> DB
36
+ DB -ok-> OrderAPI
37
+ OrderAPI -201 Created-> Gateway
38
+
39
+ == Response ==
40
+ Gateway -cache response-> Redis | c: Caching
41
+ Gateway -201 Created-> Mobile
@@ -0,0 +1,35 @@
1
+ sequence E-Commerce Checkout
2
+
3
+ User is an actor
4
+ App is a frontend
5
+ API is a gateway
6
+ Orders is a service
7
+ Payments is an external aka Stripe
8
+ DB is a database
9
+
10
+ [Place Order]
11
+ User -click checkout-> App
12
+ App -POST /orders-> API
13
+ API -createOrder(items)-> Orders
14
+
15
+ if items in stock
16
+ Orders -reserveStock(skus)-> DB
17
+ DB -ok-> Orders
18
+ Orders -POST /charges-> Payments
19
+ Payments -charge_id-> Orders
20
+
21
+ parallel Notify
22
+ Orders ~UPDATE analytics~> DB
23
+ Orders ~emit OrderPlaced~> API
24
+
25
+ API -order confirmation-> App
26
+ App -receipt page-> User
27
+ else
28
+ Orders -409 Out of Stock-> API
29
+ API -error-> App
30
+ App -items unavailable-> User
31
+
32
+ [Fulfillment]
33
+ loop Retry up to 3 times
34
+ API -reconcileCharge(id)-> Payments
35
+ Payments -status-> API
@@ -0,0 +1,12 @@
1
+ sitemap Simple Website
2
+
3
+ Home
4
+ -about-> About
5
+ -blog-> Blog
6
+
7
+ [Content]
8
+ About
9
+ Blog
10
+ -read-> Post
11
+
12
+ Post
@@ -0,0 +1,156 @@
1
+ sitemap Grand Slam Tickets
2
+ direction-tb
3
+
4
+ tag Auth
5
+ Public(green)
6
+ Required(blue)
7
+ Admin(red)
8
+
9
+ tag Type
10
+ Landing(purple)
11
+ Form(orange)
12
+ Content(cyan)
13
+ Transactional(yellow)
14
+
15
+ Home
16
+ Auth: Public
17
+ Type: Landing
18
+ -browse-> Game Schedule
19
+ -search-> Search
20
+ -sign in-> Login
21
+ -my tickets-> My Account
22
+
23
+ [Browse & Discovery]
24
+ Game Schedule
25
+ Auth: Public
26
+ Type: Content
27
+ -select game-> Game Detail
28
+ -filter-> Search
29
+
30
+ Search
31
+ Auth: Public
32
+ Type: Form
33
+ -results-> Game Detail
34
+ -no results-> Game Schedule
35
+
36
+ Game Detail
37
+ Auth: Public
38
+ Type: Content
39
+ -buy tickets-> Seat Picker
40
+ -view promotions-> Promotions
41
+ -back-> Game Schedule
42
+
43
+ Promotions
44
+ Auth: Public
45
+ Type: Content
46
+ -select deal-> Game Detail
47
+
48
+ [Purchase Flow]
49
+ Seat Picker
50
+ Auth: Public
51
+ Type: Form
52
+ -select seats-> Cart
53
+ -back-> Game Detail
54
+
55
+ Cart
56
+ Auth: Public
57
+ Type: Transactional
58
+ -checkout-> Login
59
+ -add more-> Seat Picker
60
+ -apply promo-> Cart
61
+
62
+ Checkout
63
+ Auth: Required
64
+ Type: Form
65
+ -submit-> Payment
66
+ -edit cart-> Cart
67
+
68
+ Payment
69
+ Auth: Required
70
+ Type: Transactional
71
+ -success-> Confirmation
72
+ -declined-> Payment
73
+ -cancel-> Cart
74
+
75
+ Confirmation
76
+ Auth: Required
77
+ Type: Transactional
78
+ -view tickets-> My Tickets
79
+ -buy more-> Game Schedule
80
+
81
+ [Account]
82
+ Login
83
+ Auth: Public
84
+ Type: Form
85
+ -success-> My Account
86
+ -forgot password-> Reset Password
87
+ -create account-> Register
88
+
89
+ Register
90
+ Auth: Public
91
+ Type: Form
92
+ -success-> My Account
93
+ -already have account-> Login
94
+
95
+ Reset Password
96
+ Auth: Public
97
+ Type: Form
98
+ -submitted-> Login
99
+
100
+ My Account
101
+ Auth: Required
102
+ Type: Landing
103
+ -view tickets-> My Tickets
104
+ -edit profile-> Profile
105
+ -payment methods-> Payment Methods
106
+
107
+ My Tickets
108
+ Auth: Required
109
+ Type: Content
110
+ -transfer-> Ticket Transfer
111
+ -sell-> Ticket Resale
112
+ -view detail-> Ticket Detail
113
+
114
+ Ticket Detail
115
+ Auth: Required
116
+ Type: Content
117
+ -download-> Ticket Detail
118
+ -add to wallet-> Ticket Detail
119
+ -get directions-> Stadium Map
120
+
121
+ Ticket Transfer
122
+ Auth: Required
123
+ Type: Form
124
+ -sent-> My Tickets
125
+
126
+ Ticket Resale
127
+ Auth: Required
128
+ Type: Form
129
+ -listed-> My Tickets
130
+
131
+ Profile
132
+ Auth: Required
133
+ Type: Form
134
+ -saved-> My Account
135
+
136
+ Payment Methods
137
+ Auth: Required
138
+ Type: Form
139
+ -saved-> My Account
140
+
141
+ [Stadium Info]
142
+ Stadium Map
143
+ Auth: Public
144
+ Type: Content
145
+ -find food-> Concessions
146
+ -find parking-> Parking
147
+
148
+ Concessions
149
+ Auth: Public
150
+ Type: Content
151
+ -pre-order-> Cart
152
+
153
+ Parking
154
+ Auth: Public
155
+ Type: Content
156
+ -buy pass-> Cart
@@ -0,0 +1,8 @@
1
+ slope Programming Language Popularity
2
+
3
+ 2020, 2022, 2025
4
+ Python (blue) 3, 1, 1
5
+ JavaScript (yellow) 1, 2, 2
6
+ TypeScript (cyan) 7, 4, 3
7
+ Rust (orange) 18, 12, 5
8
+ Go (green) 10, 8, 7
@@ -0,0 +1,62 @@
1
+ line U.S. Strategic Petroleum Reserve
2
+ y-label Million Barrels
3
+
4
+ era '77 -> '81 Carter (blue)
5
+ era '81 -> '89 Reagan (red)
6
+ era '89 -> '93 Bush (red)
7
+ era '93 -> '01 Clinton (blue)
8
+ era '01 -> '09 Bush (red)
9
+ era '09 -> '17 Obama (blue)
10
+ era '17 -> '21 Trump (red)
11
+ era '21 -> '25 Biden (blue)
12
+ era '25 -> '25 Trump (red)
13
+
14
+ '77 7
15
+ '78 67
16
+ '79 91
17
+ '80 108
18
+ '81 230
19
+ '82 294
20
+ '83 379
21
+ '84 451
22
+ '85 493
23
+ '86 512
24
+ '87 541
25
+ '88 560
26
+ '89 580
27
+ '90 586
28
+ '91 569
29
+ '92 575
30
+ '93 587
31
+ '94 592
32
+ '95 592
33
+ '96 566
34
+ '97 563
35
+ '98 571
36
+ '99 567
37
+ '00 541
38
+ '01 550
39
+ '02 599
40
+ '03 638
41
+ '04 676
42
+ '05 685
43
+ '06 689
44
+ '07 697
45
+ '08 702
46
+ '09 727
47
+ '10 727
48
+ '11 696
49
+ '12 695
50
+ '13 696
51
+ '14 691
52
+ '15 695
53
+ '16 695
54
+ '17 663
55
+ '18 649
56
+ '19 635
57
+ '20 638
58
+ '21 594
59
+ '22 372
60
+ '23 355
61
+ '24 394
62
+ '25 413
@@ -0,0 +1,30 @@
1
+ state Order Lifecycle
2
+
3
+ [*] -> Pending
4
+
5
+ Pending
6
+ -submit-> Validating
7
+
8
+ Validating
9
+ -approved-> Processing
10
+ -rejected-> Cancelled
11
+
12
+ [Fulfillment]
13
+ Processing
14
+ -pack-> Shipping
15
+ -out of stock-> Cancelled
16
+
17
+ Shipping
18
+ -delivered-> Delivered
19
+ -lost-> Refunded
20
+
21
+ [Resolution]
22
+ Delivered
23
+ -return request-> Returning
24
+
25
+ Returning
26
+ -received-> Refunded
27
+
28
+ Cancelled -> [*]
29
+ Refunded -> [*]
30
+ Delivered -> [*]
@@ -0,0 +1,14 @@
1
+ gantt Conference Day 1
2
+ start 2024-06-15 08:00
3
+
4
+ 30min Registration
5
+ 1.5h Opening Keynote
6
+ 15min Break
7
+ parallel
8
+ 1h Track A - Workshop
9
+ 1h Track B - Panel
10
+ 30min Lunch
11
+ 2h Afternoon Sessions
12
+
13
+ marker 2024-06-15 12:30 Lunch
14
+ era 2024-06-15 08:00 -> 2024-06-15 09:30 Morning Block
@@ -0,0 +1,32 @@
1
+ timeline Product Roadmap 2024-2025
2
+ sort tag:Team
3
+
4
+ tag Team alias t
5
+ Engineering(blue)
6
+ Design(purple)
7
+ Product(green)
8
+
9
+ era 2024-01 -> 2024-06 Phase 1 - Foundation
10
+ era 2024-07 -> 2024-12 Phase 2 - Growth
11
+ era 2025-01 -> 2025-06 Phase 3 - Scale
12
+
13
+ marker 2024-03 Beta Launch
14
+ marker 2024-09 GA Release
15
+ marker 2025-01 Series A
16
+
17
+ 2024-01->2024-03 Core API Development | t: Engineering
18
+ 2024-02->2024-05 Auth & Permissions | t: Engineering
19
+ 2024-04->2024-07 Real-time Features | t: Engineering
20
+ 2024-08->2024-11 Performance Optimization | t: Engineering
21
+ 2025-01->2025-04 Multi-region Deploy | t: Engineering
22
+
23
+ 2024-01->2024-02 Design System v1 | t: Design
24
+ 2024-03->2024-05 User Research | t: Design
25
+ 2024-06->2024-08 Design System v2 | t: Design
26
+ 2024-09->2024-11 Accessibility Audit | t: Design
27
+ 2025-02->2025-05 Mobile Redesign | t: Design
28
+
29
+ 2024-02 Competitor Analysis | t: Product
30
+ 2024-06 User Survey | t: Product
31
+ 2024-10 Pricing Strategy | t: Product
32
+ 2025-01->2025-03 Enterprise Features | t: Product
@@ -0,0 +1,10 @@
1
+ venn Full-Stack Developer Skills
2
+
3
+ Frontend(blue) alias fe
4
+ Backend(green) alias be
5
+ DevOps(orange) alias de
6
+
7
+ fe + be Web Systems
8
+ be + de Platform Ops
9
+ fe + de Dev Tools
10
+ fe + be + de Full Stack