com.wallstop-studios.dxmessaging 2.1.5 → 2.1.6

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 (161) hide show
  1. package/.artifacts/SourceGenerators.Tests/obj/Debug/net9.0/WallstopStudios.DxMessaging.SourceGenerators.Tests.AssemblyInfo.cs +1 -1
  2. package/.cspell.json +4 -1
  3. package/.github/workflows/actionlint.yml +11 -1
  4. package/.github/workflows/csharpier-autofix.yml +34 -3
  5. package/.github/workflows/dotnet-tests.yml +13 -0
  6. package/.github/workflows/format-on-demand.yml +38 -44
  7. package/.github/workflows/json-format-check.yml +24 -0
  8. package/.github/workflows/lint-doc-links.yml +13 -0
  9. package/.github/workflows/markdown-json.yml +21 -4
  10. package/.github/workflows/markdown-link-text-check.yml +10 -0
  11. package/.github/workflows/markdown-link-validity.yml +10 -0
  12. package/.github/workflows/markdownlint.yml +7 -5
  13. package/.github/workflows/prettier-autofix.yml +67 -11
  14. package/.github/workflows/release-drafter.yml +2 -2
  15. package/.github/workflows/sync-wiki.yml +3 -3
  16. package/.github/workflows/yaml-format-lint.yml +26 -0
  17. package/.llm/context.md +113 -3
  18. package/.llm/skills/documentation/changelog-management.md +38 -0
  19. package/.llm/skills/documentation/documentation-style-guide.md +18 -0
  20. package/.llm/skills/documentation/documentation-update-workflow.md +2 -0
  21. package/.llm/skills/documentation/documentation-updates.md +2 -0
  22. package/.llm/skills/documentation/markdown-compatibility.md +476 -0
  23. package/.llm/skills/documentation/mermaid-theming.md +326 -0
  24. package/.llm/skills/documentation/mkdocs-navigation.md +290 -0
  25. package/.llm/skills/github-actions/git-renormalize-patterns.md +231 -0
  26. package/.llm/skills/github-actions/workflow-consistency.md +346 -0
  27. package/.llm/skills/index.md +53 -27
  28. package/.llm/skills/scripting/javascript-code-quality.md +417 -0
  29. package/.llm/skills/scripting/regex-documentation.md +461 -0
  30. package/.llm/skills/scripting/shell-best-practices.md +55 -4
  31. package/.llm/skills/scripting/validation-patterns.md +418 -0
  32. package/.llm/skills/specification.md +4 -1
  33. package/.llm/skills/testing/test-code-quality.md +243 -0
  34. package/.llm/skills/testing/test-production-code.md +348 -0
  35. package/CHANGELOG.md +11 -0
  36. package/README.md +0 -11
  37. package/Tests/Runtime/Benchmarks/WallstopStudios.DxMessaging.Tests.Runtime.Benchmarks.asmdef +1 -6
  38. package/Tests/Runtime/Integrations/Reflex/WallstopStudios.DxMessaging.Tests.Runtime.Reflex.asmdef +1 -1
  39. package/Tests/Runtime/Integrations/VContainer/WallstopStudios.DxMessaging.Tests.Runtime.VContainer.asmdef +1 -1
  40. package/Tests/Runtime/Integrations/Zenject/WallstopStudios.DxMessaging.Tests.Runtime.Zenject.asmdef +1 -1
  41. package/coverage/clover.xml +216 -3
  42. package/coverage/clover.xml.meta +7 -7
  43. package/coverage/coverage-final.json +2 -1
  44. package/coverage/coverage-final.json.meta +7 -7
  45. package/coverage/lcov-report/base.css.meta +1 -1
  46. package/coverage/lcov-report/block-navigation.js.meta +1 -1
  47. package/coverage/lcov-report/favicon.png.meta +1 -1
  48. package/coverage/lcov-report/index.html +25 -10
  49. package/coverage/lcov-report/index.html.meta +7 -7
  50. package/coverage/lcov-report/prettify.css.meta +1 -1
  51. package/coverage/lcov-report/prettify.js.meta +1 -1
  52. package/coverage/lcov-report/sort-arrow-sprite.png.meta +1 -1
  53. package/coverage/lcov-report/sorter.js.meta +1 -1
  54. package/coverage/lcov-report/transform-docs-to-wiki.js.html +1 -1
  55. package/coverage/lcov-report/transform-docs-to-wiki.js.html.meta +7 -7
  56. package/coverage/lcov-report/vendor.meta +1 -1
  57. package/coverage/lcov-report.meta +8 -8
  58. package/coverage/lcov.info +365 -0
  59. package/coverage/lcov.info.meta +7 -7
  60. package/docs/architecture/design-and-architecture.md +0 -1
  61. package/docs/concepts/index.md +37 -0
  62. package/docs/concepts/index.md.meta +7 -0
  63. package/docs/concepts/interceptors-and-ordering.md +0 -2
  64. package/docs/concepts/mental-model.md +390 -0
  65. package/docs/concepts/mental-model.md.meta +7 -0
  66. package/docs/concepts/message-types.md +0 -1
  67. package/docs/getting-started/getting-started.md +1 -0
  68. package/docs/getting-started/index.md +6 -5
  69. package/docs/getting-started/overview.md +1 -0
  70. package/docs/getting-started/quick-start.md +2 -1
  71. package/docs/getting-started/visual-guide.md +4 -10
  72. package/docs/hooks.py +10 -1
  73. package/docs/images/DxMessaging-banner.svg +1 -1
  74. package/docs/index.md +7 -7
  75. package/docs/javascripts/mermaid-config.js +44 -4
  76. package/docs/reference/helpers.md +130 -154
  77. package/docs/reference/quick-reference.md +5 -1
  78. package/docs/reference/reference.md +124 -130
  79. package/mkdocs.yml +2 -0
  80. package/package.json +1 -1
  81. package/scripts/__tests__/generate-skills-index.test.js +397 -0
  82. package/scripts/__tests__/generate-skills-index.test.js.meta +7 -0
  83. package/scripts/__tests__/mermaid-config.test.js +467 -0
  84. package/scripts/__tests__/mermaid-config.test.js.meta +7 -0
  85. package/scripts/__tests__/validate-skills-optional-fields.test.js +1474 -0
  86. package/scripts/__tests__/validate-skills-optional-fields.test.js.meta +7 -0
  87. package/scripts/__tests__/validate-skills-required-fields.test.js +188 -0
  88. package/scripts/__tests__/validate-skills-required-fields.test.js.meta +7 -0
  89. package/scripts/__tests__/validate-skills-tags.test.js +353 -0
  90. package/scripts/__tests__/validate-skills-tags.test.js.meta +7 -0
  91. package/scripts/__tests__/validate-workflows.test.js +188 -0
  92. package/scripts/__tests__/validate-workflows.test.js.meta +7 -0
  93. package/scripts/generate-skills-index.js +88 -3
  94. package/scripts/validate-skills.js +230 -30
  95. package/scripts/validate-workflows.js +272 -0
  96. package/scripts/validate-workflows.js.meta +7 -0
  97. package/site/404.html +1 -1
  98. package/site/advanced/emit-shorthands/index.html +2 -2
  99. package/site/advanced/message-bus-providers/index.html +2 -2
  100. package/site/advanced/registration-builders/index.html +2 -2
  101. package/site/advanced/runtime-configuration/index.html +2 -2
  102. package/site/advanced/string-messages/index.html +2 -2
  103. package/site/advanced.meta +1 -1
  104. package/site/architecture/comparisons/index.html +2 -2
  105. package/site/architecture/design-and-architecture/index.html +2 -2
  106. package/site/architecture/performance/index.html +1 -1
  107. package/site/architecture.meta +1 -1
  108. package/site/concepts/index.html +1 -0
  109. package/site/concepts/index.html.meta +7 -0
  110. package/site/concepts/interceptors-and-ordering/index.html +4 -4
  111. package/site/concepts/listening-patterns/index.html +2 -2
  112. package/site/concepts/mental-model/index.html +146 -0
  113. package/site/concepts/mental-model/index.html.meta +7 -0
  114. package/site/concepts/mental-model.meta +8 -0
  115. package/site/concepts/message-types/index.html +2 -2
  116. package/site/concepts/targeting-and-context/index.html +2 -2
  117. package/site/concepts.meta +1 -1
  118. package/site/examples/end-to-end/index.html +2 -2
  119. package/site/examples/end-to-end-scene-transitions/index.html +2 -2
  120. package/site/examples.meta +1 -1
  121. package/site/getting-started/getting-started/index.html +3 -3
  122. package/site/getting-started/index.html +4 -4
  123. package/site/getting-started/install/index.html +3 -3
  124. package/site/getting-started/overview/index.html +2 -2
  125. package/site/getting-started/quick-start/index.html +2 -2
  126. package/site/getting-started/visual-guide/index.html +11 -11
  127. package/site/getting-started.meta +1 -1
  128. package/site/guides/advanced/index.html +2 -2
  129. package/site/guides/diagnostics/index.html +2 -2
  130. package/site/guides/migration-guide/index.html +2 -2
  131. package/site/guides/patterns/index.html +2 -2
  132. package/site/guides/testing/index.html +2 -2
  133. package/site/guides/unity-integration/index.html +2 -2
  134. package/site/guides.meta +1 -1
  135. package/site/hooks.py.meta +1 -1
  136. package/site/images/DxMessaging-banner.svg +119 -0
  137. package/site/images/DxMessaging-banner.svg.meta +7 -0
  138. package/site/images.meta +8 -0
  139. package/site/index.html +2 -2
  140. package/site/integrations/index.html +2 -2
  141. package/site/integrations/reflex/index.html +2 -2
  142. package/site/integrations/vcontainer/index.html +2 -2
  143. package/site/integrations/zenject/index.html +2 -2
  144. package/site/integrations.meta +1 -1
  145. package/site/javascripts/csharp-highlight.js.meta +7 -7
  146. package/site/javascripts/mermaid-config.js +4 -1
  147. package/site/javascripts/mermaid-config.js.meta +1 -1
  148. package/site/javascripts.meta +1 -1
  149. package/site/reference/compatibility/index.html +1 -1
  150. package/site/reference/faq/index.html +1 -1
  151. package/site/reference/glossary/index.html +2 -2
  152. package/site/reference/helpers/index.html +15 -15
  153. package/site/reference/quick-reference/index.html +3 -3
  154. package/site/reference/reference/index.html +37 -37
  155. package/site/reference/troubleshooting/index.html +1 -1
  156. package/site/reference.meta +1 -1
  157. package/site/search/search_index.json +1 -1
  158. package/site/sitemap.xml +46 -38
  159. package/site/sitemap.xml.gz +0 -0
  160. package/site/stylesheets/extra.css.meta +1 -1
  161. package/site/stylesheets.meta +1 -1
@@ -0,0 +1,365 @@
1
+ TN:
2
+ SF:scripts/wiki/transform-docs-to-wiki.js
3
+ FN:27,(anonymous_0)
4
+ FN:32,(anonymous_1)
5
+ FN:55,(anonymous_2)
6
+ FN:61,isExternalLink
7
+ FN:65,isAnchorOnlyLink
8
+ FN:69,docsPathToWikiPage
9
+ FN:89,(anonymous_6)
10
+ FN:93,findMarkdownLinks
11
+ FN:201,transformImagePath
12
+ FN:212,transformLine
13
+ FN:263,transformFile
14
+ FN:282,getAllMarkdownFiles
15
+ FN:300,copyImages
16
+ FN:328,processAllFiles
17
+ FN:374,main
18
+ FNF:15
19
+ FNH:11
20
+ FNDA:13,(anonymous_0)
21
+ FNDA:51,(anonymous_1)
22
+ FNDA:1,(anonymous_2)
23
+ FNDA:23,isExternalLink
24
+ FNDA:11,isAnchorOnlyLink
25
+ FNDA:18,docsPathToWikiPage
26
+ FNDA:23,(anonymous_6)
27
+ FNDA:44,findMarkdownLinks
28
+ FNDA:1,transformImagePath
29
+ FNDA:24,transformLine
30
+ FNDA:5,transformFile
31
+ FNDA:0,getAllMarkdownFiles
32
+ FNDA:0,copyImages
33
+ FNDA:0,processAllFiles
34
+ FNDA:0,main
35
+ DA:18,1
36
+ DA:19,1
37
+ DA:21,1
38
+ DA:28,13
39
+ DA:29,13
40
+ DA:33,51
41
+ DA:34,51
42
+ DA:36,51
43
+ DA:37,26
44
+ DA:38,26
45
+ DA:40,26
46
+ DA:41,12
47
+ DA:42,12
48
+ DA:43,14
49
+ DA:47,11
50
+ DA:48,11
51
+ DA:52,51
52
+ DA:56,1
53
+ DA:57,1
54
+ DA:62,23
55
+ DA:66,11
56
+ DA:70,18
57
+ DA:72,18
58
+ DA:73,4
59
+ DA:74,4
60
+ DA:75,1
61
+ DA:80,17
62
+ DA:81,2
63
+ DA:85,15
64
+ DA:87,15
65
+ DA:89,23
66
+ DA:94,44
67
+ DA:95,44
68
+ DA:97,44
69
+ DA:98,261
70
+ DA:99,2
71
+ DA:100,2
72
+ DA:103,259
73
+ DA:109,14
74
+ DA:110,14
75
+ DA:111,14
76
+ DA:112,33
77
+ DA:113,33
78
+ DA:116,14
79
+ DA:117,14
80
+ DA:118,14
81
+ DA:119,9
82
+ DA:120,9
83
+ DA:123,5
84
+ DA:124,5
85
+ DA:128,245
86
+ DA:129,245
87
+ DA:131,245
88
+ DA:132,219
89
+ DA:133,219
90
+ DA:136,26
91
+ DA:138,26
92
+ DA:139,26
93
+ DA:140,26
94
+ DA:141,201
95
+ DA:142,0
96
+ DA:143,0
97
+ DA:145,201
98
+ DA:146,201
99
+ DA:147,27
100
+ DA:148,27
101
+ DA:149,26
102
+ DA:150,26
103
+ DA:155,26
104
+ DA:156,0
105
+ DA:157,0
106
+ DA:160,26
107
+ DA:161,26
108
+ DA:162,26
109
+ DA:163,26
110
+ DA:164,305
111
+ DA:165,0
112
+ DA:166,0
113
+ DA:168,305
114
+ DA:169,305
115
+ DA:170,27
116
+ DA:171,27
117
+ DA:172,26
118
+ DA:173,26
119
+ DA:178,26
120
+ DA:179,0
121
+ DA:180,0
122
+ DA:183,26
123
+ DA:184,26
124
+ DA:185,26
125
+ DA:187,26
126
+ DA:195,26
127
+ DA:198,44
128
+ DA:202,1
129
+ DA:203,0
130
+ DA:206,1
131
+ DA:207,1
132
+ DA:208,1
133
+ DA:209,1
134
+ DA:213,24
135
+ DA:215,24
136
+ DA:216,12
137
+ DA:219,12
138
+ DA:220,12
139
+ DA:221,13
140
+ DA:223,13
141
+ DA:224,2
142
+ DA:227,11
143
+ DA:228,1
144
+ DA:231,10
145
+ DA:232,1
146
+ DA:233,1
147
+ DA:234,1
148
+ DA:235,1
149
+ DA:238,9
150
+ DA:239,9
151
+ DA:240,9
152
+ DA:241,9
153
+ DA:242,1
154
+ DA:243,1
155
+ DA:246,9
156
+ DA:249,9
157
+ DA:250,1
158
+ DA:251,8
159
+ DA:252,7
160
+ DA:254,1
161
+ DA:257,9
162
+ DA:260,12
163
+ DA:264,5
164
+ DA:265,5
165
+ DA:266,5
166
+ DA:268,5
167
+ DA:269,27
168
+ DA:270,27
169
+ DA:272,27
170
+ DA:273,12
171
+ DA:275,15
172
+ DA:279,5
173
+ DA:283,0
174
+ DA:284,0
175
+ DA:286,0
176
+ DA:287,0
177
+ DA:288,0
178
+ DA:289,0
179
+ DA:290,0
180
+ DA:292,0
181
+ DA:293,0
182
+ DA:297,0
183
+ DA:301,0
184
+ DA:302,0
185
+ DA:304,0
186
+ DA:305,0
187
+ DA:306,0
188
+ DA:307,0
189
+ DA:309,0
190
+ DA:310,0
191
+ DA:311,0
192
+ DA:312,0
193
+ DA:313,0
194
+ DA:314,0
195
+ DA:315,0
196
+ DA:316,0
197
+ DA:317,0
198
+ DA:319,0
199
+ DA:320,0
200
+ DA:321,0
201
+ DA:325,0
202
+ DA:329,0
203
+ DA:330,0
204
+ DA:333,0
205
+ DA:334,0
206
+ DA:335,0
207
+ DA:338,0
208
+ DA:339,0
209
+ DA:341,0
210
+ DA:342,0
211
+ DA:343,0
212
+ DA:344,0
213
+ DA:345,0
214
+ DA:347,0
215
+ DA:348,0
216
+ DA:349,0
217
+ DA:352,0
218
+ DA:353,0
219
+ DA:354,0
220
+ DA:355,0
221
+ DA:358,0
222
+ DA:360,0
223
+ DA:361,0
224
+ DA:362,0
225
+ DA:363,0
226
+ DA:364,0
227
+ DA:365,0
228
+ DA:366,0
229
+ DA:370,0
230
+ DA:375,0
231
+ DA:376,0
232
+ DA:377,0
233
+ DA:378,0
234
+ DA:381,0
235
+ DA:382,0
236
+ DA:383,0
237
+ DA:384,0
238
+ DA:386,0
239
+ DA:390,1
240
+ DA:391,0
241
+ DA:392,0
242
+ DA:394,0
243
+ DA:395,0
244
+ DA:400,1
245
+ LF:210
246
+ LH:131
247
+ BRDA:36,0,0,26
248
+ BRDA:36,0,1,25
249
+ BRDA:40,1,0,12
250
+ BRDA:40,1,1,14
251
+ BRDA:43,2,0,11
252
+ BRDA:43,2,1,3
253
+ BRDA:44,3,0,14
254
+ BRDA:44,3,1,13
255
+ BRDA:72,4,0,4
256
+ BRDA:72,4,1,14
257
+ BRDA:72,5,0,18
258
+ BRDA:72,5,1,15
259
+ BRDA:74,6,0,1
260
+ BRDA:74,6,1,3
261
+ BRDA:80,7,0,2
262
+ BRDA:80,7,1,15
263
+ BRDA:80,8,0,17
264
+ BRDA:80,8,1,16
265
+ BRDA:98,9,0,2
266
+ BRDA:98,9,1,259
267
+ BRDA:98,10,0,261
268
+ BRDA:98,10,1,2
269
+ BRDA:103,11,0,14
270
+ BRDA:103,11,1,245
271
+ BRDA:111,12,0,47
272
+ BRDA:111,12,1,46
273
+ BRDA:118,13,0,9
274
+ BRDA:118,13,1,5
275
+ BRDA:128,14,0,245
276
+ BRDA:128,14,1,3
277
+ BRDA:129,15,0,3
278
+ BRDA:129,15,1,242
279
+ BRDA:129,16,0,23
280
+ BRDA:129,16,1,219
281
+ BRDA:131,17,0,219
282
+ BRDA:131,17,1,26
283
+ BRDA:136,18,0,3
284
+ BRDA:136,18,1,23
285
+ BRDA:141,19,0,0
286
+ BRDA:141,19,1,201
287
+ BRDA:141,20,0,201
288
+ BRDA:141,20,1,0
289
+ BRDA:145,21,0,27
290
+ BRDA:145,21,1,174
291
+ BRDA:146,22,0,27
292
+ BRDA:146,22,1,174
293
+ BRDA:148,23,0,26
294
+ BRDA:148,23,1,1
295
+ BRDA:155,24,0,0
296
+ BRDA:155,24,1,26
297
+ BRDA:155,25,0,26
298
+ BRDA:155,25,1,26
299
+ BRDA:155,25,2,26
300
+ BRDA:164,26,0,0
301
+ BRDA:164,26,1,305
302
+ BRDA:164,27,0,305
303
+ BRDA:164,27,1,0
304
+ BRDA:168,28,0,27
305
+ BRDA:168,28,1,278
306
+ BRDA:169,29,0,27
307
+ BRDA:169,29,1,278
308
+ BRDA:171,30,0,26
309
+ BRDA:171,30,1,1
310
+ BRDA:178,31,0,0
311
+ BRDA:178,31,1,26
312
+ BRDA:202,32,0,0
313
+ BRDA:202,32,1,1
314
+ BRDA:215,33,0,12
315
+ BRDA:215,33,1,12
316
+ BRDA:223,34,0,2
317
+ BRDA:223,34,1,11
318
+ BRDA:227,35,0,1
319
+ BRDA:227,35,1,10
320
+ BRDA:231,36,0,1
321
+ BRDA:231,36,1,9
322
+ BRDA:241,37,0,1
323
+ BRDA:241,37,1,8
324
+ BRDA:249,38,0,1
325
+ BRDA:249,38,1,8
326
+ BRDA:251,39,0,7
327
+ BRDA:251,39,1,1
328
+ BRDA:251,40,0,8
329
+ BRDA:251,40,1,7
330
+ BRDA:272,41,0,12
331
+ BRDA:272,41,1,15
332
+ BRDA:272,42,0,27
333
+ BRDA:272,42,1,19
334
+ BRDA:288,43,0,0
335
+ BRDA:288,43,1,0
336
+ BRDA:289,44,0,0
337
+ BRDA:289,44,1,0
338
+ BRDA:289,45,0,0
339
+ BRDA:289,45,1,0
340
+ BRDA:292,46,0,0
341
+ BRDA:292,46,1,0
342
+ BRDA:300,47,0,0
343
+ BRDA:306,48,0,0
344
+ BRDA:306,48,1,0
345
+ BRDA:310,49,0,0
346
+ BRDA:310,49,1,0
347
+ BRDA:312,50,0,0
348
+ BRDA:312,50,1,0
349
+ BRDA:329,51,0,0
350
+ BRDA:329,51,1,0
351
+ BRDA:334,52,0,0
352
+ BRDA:334,52,1,0
353
+ BRDA:347,53,0,0
354
+ BRDA:347,53,1,0
355
+ BRDA:360,54,0,0
356
+ BRDA:360,54,1,0
357
+ BRDA:362,55,0,0
358
+ BRDA:362,55,1,0
359
+ BRDA:376,56,0,0
360
+ BRDA:376,56,1,0
361
+ BRDA:390,57,0,0
362
+ BRDA:390,57,1,1
363
+ BRF:116
364
+ BRH:81
365
+ end_of_record
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: e91918dcbd7131a458a1f3319018b1eb
3
- DefaultImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: e91918dcbd7131a458a1f3319018b1eb
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -50,7 +50,6 @@ DxMessaging was built with these principles:
50
50
  ## Architecture Overview
51
51
 
52
52
  ```mermaid
53
- %%{init: {'theme': 'neutral'}}%%
54
53
  flowchart TB
55
54
  subgraph App["Application Layer"]
56
55
  CompA[Component A<br/>Token.Reg]
@@ -0,0 +1,37 @@
1
+ # Concepts
2
+
3
+ [← Documentation Home](../index.md) | [Getting Started](../getting-started/getting-started.md)
4
+
5
+ ---
6
+
7
+ This section explains the core concepts behind DxMessaging. **Concepts** are the foundational ideas and mental models that inform how you design and structure your messaging—understanding these will help you make better architectural decisions and avoid common pitfalls.
8
+
9
+ ## Start Here
10
+
11
+ - **[Mental Model](mental-model.md)** — How to think about DxMessaging. Covers the philosophy, the three message types with analogies, tokens and lifecycle, and when to use what. Read this first.
12
+
13
+ ## Core Concepts
14
+
15
+ - **[Message Types](message-types.md)** — Deep dive into Untargeted, Targeted, and Broadcast messages with code examples and decision guides.
16
+
17
+ - **[Targeting and Context](targeting-and-context.md)** — How DxMessaging uses GameObjects and Components as message context, and the role of `InstanceId`.
18
+
19
+ - **[Listening Patterns](listening-patterns.md)** — All the ways to receive messages: targeted, untargeted, broadcast, and "without targeting/source" patterns.
20
+
21
+ - **[Interceptors and Ordering](interceptors-and-ordering.md)** — Control message flow with priorities, post-processors, and interceptors.
22
+
23
+ ## Quick Reference
24
+
25
+ | Concept | One-Line Summary |
26
+ | ---------------------------------------- | ------------------------------------- |
27
+ | [Mental Model](mental-model.md) | Philosophy and first principles |
28
+ | [Message Types](message-types.md) | The three message categories |
29
+ | [Targeting](targeting-and-context.md) | GameObjects and Components as context |
30
+ | [Listening](listening-patterns.md) | Ways to receive messages |
31
+ | [Ordering](interceptors-and-ordering.md) | Priority and interception |
32
+
33
+ ## Related Sections
34
+
35
+ - [Getting Started](../getting-started/index.md) — Hands-on walkthrough
36
+ - [Guides](../guides/patterns.md) — Practical patterns and recipes
37
+ - [Reference](../reference/reference.md) — API documentation
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: 934573434622b2b43a7e5d65117aec09
3
+ TextScriptImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -84,7 +84,6 @@ Notes on handler groups
84
84
  Visual overview
85
85
 
86
86
  ```mermaid
87
- %%{init: {'theme': 'neutral'}}%%
88
87
  flowchart LR
89
88
  subgraph Untargeted["Untargeted Messages"]
90
89
  direction TB
@@ -126,7 +125,6 @@ flowchart LR
126
125
  Example sequence
127
126
 
128
127
  ```mermaid
129
- %%{init: {'theme': 'neutral'}}%%
130
128
  sequenceDiagram
131
129
  participant P as Producer
132
130
  participant I as Interceptor(s)