@almadar/core 10.89.0 → 10.91.0

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 (36) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +11 -3
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-CdLBg9zL.d.ts → effect-Bt8vKHwd.d.ts} +66 -42
  5. package/dist/{entityAccess-BmZHpQUv.d.ts → entityAccess-BdDX85rM.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +662 -49
  8. package/dist/factory/index.js.map +1 -1
  9. package/dist/factory-runtime/index.d.ts +3 -3
  10. package/dist/factory-runtime/index.js +11 -3
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/i18n/index.js +12 -0
  13. package/dist/i18n/index.js.map +1 -1
  14. package/dist/{index-CV_iM5Cm.d.ts → index-rOBf1Oag.d.ts} +83 -6
  15. package/dist/index.d.ts +34 -12
  16. package/dist/index.js +975 -57
  17. package/dist/index.js.map +1 -1
  18. package/dist/mock/index.d.ts +60 -5
  19. package/dist/mock/index.js +35 -4
  20. package/dist/mock/index.js.map +1 -1
  21. package/dist/patterns/component-mapping.json +6 -1
  22. package/dist/patterns/event-contracts.json +1 -1
  23. package/dist/patterns/index.d.ts +1875 -53
  24. package/dist/patterns/index.js +930 -51
  25. package/dist/patterns/index.js.map +1 -1
  26. package/dist/patterns/integrators-registry.json +264 -1
  27. package/dist/patterns/patterns-registry.json +654 -47
  28. package/dist/patterns/registry.json +654 -47
  29. package/dist/patterns/services-registry.json +284 -1
  30. package/dist/{schema-DYC_RnBX.d.ts → schema-ovDTDQz9.d.ts} +495 -323
  31. package/dist/{trait-DmWdtKlP.d.ts → trait-C3e3btfn.d.ts} +98 -55
  32. package/dist/types/index.d.ts +5 -5
  33. package/dist/types/index.js +13 -7
  34. package/dist/types/index.js.map +1 -1
  35. package/dist/{types-DdK77hq2.d.ts → types-rh0naR6C.d.ts} +2 -2
  36. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -317,7 +317,8 @@ var EntityFieldSchema = z.lazy(() => {
317
317
  properties: z.record(EntityFieldSchema).optional(),
318
318
  intrinsic: z.boolean().optional(),
319
319
  description: z.string().optional(),
320
- synonyms: z.string().optional()
320
+ synonyms: z.string().optional(),
321
+ mergedFrom: z.string().optional()
321
322
  };
322
323
  function scalarVariant(t) {
323
324
  return z.object({
@@ -415,7 +416,7 @@ var VISUAL_STYLES = ["pixel", "vector", "hd", "1-bit", "isometric"];
415
416
  var VisualStyleSchema = z.enum(VISUAL_STYLES);
416
417
  var ASSET_DIMENSIONS = ["2d", "3d"];
417
418
  var AssetDimensionSchema = z.enum(ASSET_DIMENSIONS);
418
- var ASSET_ASPECTS = ["1:1", "16:9", "5:7", "8:1"];
419
+ var ASSET_ASPECTS = ["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"];
419
420
  var AssetAspectSchema = z.enum(ASSET_ASPECTS);
420
421
  var ANIMATION_NAMES = ["idle", "walk", "skate", "jump", "fall", "attack", "hit", "death"];
421
422
  var AnimationNameSchema = z.enum(ANIMATION_NAMES);
@@ -485,7 +486,9 @@ var AssetSchema = SemanticAssetRefSchema.extend({
485
486
  atlas: z.string().optional(),
486
487
  sprite: z.string().optional(),
487
488
  name: z.string().optional(),
488
- thumbnailUrl: z.string().optional()
489
+ thumbnailUrl: z.string().optional(),
490
+ prompt: z.string().optional(),
491
+ choreography: z.record(z.string(), z.array(z.string())).optional()
489
492
  });
490
493
  var AssetCatalogEntrySchema = z.object({
491
494
  url: z.string(),
@@ -886,6 +889,9 @@ function isRuntimeEntity(entity) {
886
889
  function persistenceModeAllowsOverrides(persistence) {
887
890
  return persistence === "persistent" || persistence === void 0;
888
891
  }
892
+ var FieldValueSchema = z.lazy(
893
+ () => z.union([z.string(), z.number(), z.boolean(), z.date(), z.null(), z.array(FieldValueSchema), z.record(FieldValueSchema.optional())])
894
+ );
889
895
  function isFieldValue(value) {
890
896
  if (value === null) return true;
891
897
  const kind = typeof value;
@@ -968,9 +974,6 @@ function despawn(entityId) {
968
974
  function doEffects(...effects) {
969
975
  return ["do", ...effects];
970
976
  }
971
- function notify(channel, message, recipient) {
972
- return recipient ? ["notify", channel, message, recipient] : ["notify", channel, message];
973
- }
974
977
  function ref(binding, selector) {
975
978
  return selector ? ["ref", binding, selector] : ["ref", binding];
976
979
  }
@@ -1421,6 +1424,8 @@ var TraitSchema = z.object({
1421
1424
  entityBindingSynonyms: z.string().optional(),
1422
1425
  capabilities: z.array(z.string()).optional(),
1423
1426
  scope: TraitScopeSchema,
1427
+ /** `local` trait-header flag — declares client-only dispatch (mirrors Rust `OirTrait::local`). Undeclared = server-gated dispatch. */
1428
+ local: z.boolean().optional(),
1424
1429
  linkedEntity: z.string().optional(),
1425
1430
  linkedEntityId: EntityIdSchema.optional(),
1426
1431
  entityRefIds: z.record(z.string().min(1), EntityIdSchema).optional(),
@@ -2575,7 +2580,7 @@ function getInteractionModelForDomain(domain) {
2575
2580
  // src/patterns/patterns-registry.json
2576
2581
  var patterns_registry_default = {
2577
2582
  version: "1.0.0",
2578
- exportedAt: "2026-09-08T23:56:00.442Z",
2583
+ exportedAt: "2026-09-12T07:27:39.835Z",
2579
2584
  patterns: {
2580
2585
  "entity-table": {
2581
2586
  type: "entity-table",
@@ -6876,7 +6881,10 @@ var patterns_registry_default = {
6876
6881
  "1:1",
6877
6882
  "16:9",
6878
6883
  "5:7",
6879
- "8:1"
6884
+ "8:1",
6885
+ "4:1",
6886
+ "5:3",
6887
+ "1:2"
6880
6888
  ]
6881
6889
  },
6882
6890
  atlas: {
@@ -7036,7 +7044,10 @@ var patterns_registry_default = {
7036
7044
  "1:1",
7037
7045
  "16:9",
7038
7046
  "5:7",
7039
- "8:1"
7047
+ "8:1",
7048
+ "4:1",
7049
+ "5:3",
7050
+ "1:2"
7040
7051
  ]
7041
7052
  },
7042
7053
  atlas: {
@@ -10070,6 +10081,7 @@ var patterns_registry_default = {
10070
10081
  button: {
10071
10082
  type: "button",
10072
10083
  category: "component",
10084
+ sourceFile: "components/core/atoms/Button.tsx",
10073
10085
  tier: "atoms",
10074
10086
  family: "core",
10075
10087
  description: "Clickable button that emits events",
@@ -10214,7 +10226,10 @@ var patterns_registry_default = {
10214
10226
  "1:1",
10215
10227
  "16:9",
10216
10228
  "5:7",
10217
- "8:1"
10229
+ "8:1",
10230
+ "4:1",
10231
+ "5:3",
10232
+ "1:2"
10218
10233
  ]
10219
10234
  },
10220
10235
  atlas: {
@@ -10256,7 +10271,8 @@ var patterns_registry_default = {
10256
10271
  "object"
10257
10272
  ],
10258
10273
  description: "Payload to include with the action event",
10259
- payloadFor: "action"
10274
+ payloadFor: "action",
10275
+ eventPayloadBrand: true
10260
10276
  },
10261
10277
  label: {
10262
10278
  types: [
@@ -10281,6 +10297,7 @@ var patterns_registry_default = {
10281
10297
  badge: {
10282
10298
  type: "badge",
10283
10299
  category: "component",
10300
+ sourceFile: "components/core/atoms/Badge.tsx",
10284
10301
  tier: "atoms",
10285
10302
  family: "core",
10286
10303
  description: "Small label for status or count",
@@ -10412,7 +10429,10 @@ var patterns_registry_default = {
10412
10429
  "1:1",
10413
10430
  "16:9",
10414
10431
  "5:7",
10415
- "8:1"
10432
+ "8:1",
10433
+ "4:1",
10434
+ "5:3",
10435
+ "1:2"
10416
10436
  ]
10417
10437
  },
10418
10438
  atlas: {
@@ -10912,6 +10932,7 @@ var patterns_registry_default = {
10912
10932
  input: {
10913
10933
  type: "input",
10914
10934
  category: "component",
10935
+ sourceFile: "components/core/atoms/Input.tsx",
10915
10936
  tier: "atoms",
10916
10937
  family: "core",
10917
10938
  description: "Text input field",
@@ -11080,7 +11101,15 @@ var patterns_registry_default = {
11080
11101
  "function",
11081
11102
  "string"
11082
11103
  ],
11083
- description: "onChange handler or declarative event key for trait dispatch"
11104
+ description: "onChange handler or declarative event key for trait dispatch",
11105
+ kind: "event-ref",
11106
+ emitPayloadSchema: [
11107
+ {
11108
+ name: "_payload",
11109
+ type: "object",
11110
+ required: false
11111
+ }
11112
+ ]
11084
11113
  }
11085
11114
  }
11086
11115
  },
@@ -11133,13 +11162,22 @@ var patterns_registry_default = {
11133
11162
  "function",
11134
11163
  "string"
11135
11164
  ],
11136
- description: "onChange handler or declarative event key for trait dispatch"
11165
+ description: "onChange handler or declarative event key for trait dispatch",
11166
+ kind: "event-ref",
11167
+ emitPayloadSchema: [
11168
+ {
11169
+ name: "value",
11170
+ type: "string",
11171
+ required: true
11172
+ }
11173
+ ]
11137
11174
  }
11138
11175
  }
11139
11176
  },
11140
11177
  select: {
11141
11178
  type: "select",
11142
11179
  category: "component",
11180
+ sourceFile: "components/core/atoms/Select.tsx",
11143
11181
  tier: "atoms",
11144
11182
  family: "core",
11145
11183
  description: "Dropdown select input",
@@ -11303,14 +11341,52 @@ var patterns_registry_default = {
11303
11341
  "function",
11304
11342
  "string"
11305
11343
  ],
11306
- description: "onChange handler (native ChangeEvent) or declarative event key for trait dispatch"
11344
+ description: "onChange handler (native ChangeEvent) or declarative event key for trait dispatch",
11345
+ kind: "event-ref",
11346
+ emitPayloadSchema: [
11347
+ {
11348
+ name: "value",
11349
+ type: "string",
11350
+ required: true,
11351
+ schema: {
11352
+ types: [
11353
+ "string",
11354
+ "array"
11355
+ ],
11356
+ items: {
11357
+ types: [
11358
+ "string"
11359
+ ]
11360
+ }
11361
+ }
11362
+ }
11363
+ ]
11307
11364
  },
11308
11365
  onValueChange: {
11309
11366
  types: [
11310
11367
  "function",
11311
11368
  "string"
11312
11369
  ],
11313
- description: "Value-based change: a React callback (internal use) OR a declarative event key that emits `{ value }` on the bus (render-ui / lolo authoring). Mirrors the `onChange` handler|event convention so it's an event-emitting prop, not a bare callback."
11370
+ description: "Value-based change: a React callback (internal use) OR a declarative event key that emits `{ value }` on the bus (render-ui / lolo authoring). Mirrors the `onChange` handler|event convention so it's an event-emitting prop, not a bare callback.",
11371
+ kind: "event-ref",
11372
+ emitPayloadSchema: [
11373
+ {
11374
+ name: "value",
11375
+ type: "string",
11376
+ required: true,
11377
+ schema: {
11378
+ types: [
11379
+ "string",
11380
+ "array"
11381
+ ],
11382
+ items: {
11383
+ types: [
11384
+ "string"
11385
+ ]
11386
+ }
11387
+ }
11388
+ }
11389
+ ]
11314
11390
  }
11315
11391
  }
11316
11392
  },
@@ -11356,7 +11432,15 @@ var patterns_registry_default = {
11356
11432
  "function",
11357
11433
  "string"
11358
11434
  ],
11359
- description: "onChange handler or declarative event key for trait dispatch"
11435
+ description: "onChange handler or declarative event key for trait dispatch",
11436
+ kind: "event-ref",
11437
+ emitPayloadSchema: [
11438
+ {
11439
+ name: "checked",
11440
+ type: "boolean",
11441
+ required: true
11442
+ }
11443
+ ]
11360
11444
  }
11361
11445
  }
11362
11446
  },
@@ -13857,6 +13941,7 @@ var patterns_registry_default = {
13857
13941
  "input-group": {
13858
13942
  type: "input-group",
13859
13943
  category: "form",
13944
+ sourceFile: "components/core/molecules/InputGroup.tsx",
13860
13945
  tier: "molecules",
13861
13946
  family: "core",
13862
13947
  description: "InputGroup Molecule Component A component for grouping input with addons (icons, buttons, text). Uses Input, Button, Icon, and Typography atoms.",
@@ -14017,7 +14102,15 @@ var patterns_registry_default = {
14017
14102
  "function",
14018
14103
  "string"
14019
14104
  ],
14020
- description: "onChange handler or declarative event key for trait dispatch"
14105
+ description: "onChange handler or declarative event key for trait dispatch",
14106
+ kind: "event-ref",
14107
+ emitPayloadSchema: [
14108
+ {
14109
+ name: "_payload",
14110
+ type: "object",
14111
+ required: false
14112
+ }
14113
+ ]
14021
14114
  },
14022
14115
  leftAddon: {
14023
14116
  types: [
@@ -16315,6 +16408,7 @@ var patterns_registry_default = {
16315
16408
  "game-shell": {
16316
16409
  type: "game-shell",
16317
16410
  category: "game",
16411
+ sourceFile: "components/game/templates/GameShell.tsx",
16318
16412
  tier: "templates",
16319
16413
  family: "game",
16320
16414
  description: 'GameShell A full-screen layout wrapper for game applications. Replaces DashboardLayout for game clients \u2014 no sidebar nav, just full-viewport rendering with an optional HUD overlay bar. Used as a React Router layout route element: <Route element={<GameShell appName="TraitWars" />}> <Route index element={<WorldMapPage />} /> ... </Route>',
@@ -16440,7 +16534,10 @@ var patterns_registry_default = {
16440
16534
  "1:1",
16441
16535
  "16:9",
16442
16536
  "5:7",
16443
- "8:1"
16537
+ "8:1",
16538
+ "4:1",
16539
+ "5:3",
16540
+ "1:2"
16444
16541
  ]
16445
16542
  },
16446
16543
  atlas: {
@@ -16535,7 +16632,10 @@ var patterns_registry_default = {
16535
16632
  "1:1",
16536
16633
  "16:9",
16537
16634
  "5:7",
16538
- "8:1"
16635
+ "8:1",
16636
+ "4:1",
16637
+ "5:3",
16638
+ "1:2"
16539
16639
  ]
16540
16640
  },
16541
16641
  atlas: {
@@ -30803,6 +30903,7 @@ var patterns_registry_default = {
30803
30903
  "choice-button": {
30804
30904
  type: "choice-button",
30805
30905
  category: "game",
30906
+ sourceFile: "components/game/atoms/ChoiceButton.tsx",
30806
30907
  tier: "atoms",
30807
30908
  family: "game",
30808
30909
  description: "ChoiceButton component",
@@ -30892,7 +30993,10 @@ var patterns_registry_default = {
30892
30993
  "1:1",
30893
30994
  "16:9",
30894
30995
  "5:7",
30895
- "8:1"
30996
+ "8:1",
30997
+ "4:1",
30998
+ "5:3",
30999
+ "1:2"
30896
31000
  ]
30897
31001
  },
30898
31002
  atlas: {
@@ -30982,6 +31086,7 @@ var patterns_registry_default = {
30982
31086
  "control-button": {
30983
31087
  type: "control-button",
30984
31088
  category: "game",
31089
+ sourceFile: "components/game/atoms/ControlButton.tsx",
30985
31090
  tier: "atoms",
30986
31091
  family: "game",
30987
31092
  description: "ControlButton component",
@@ -31057,7 +31162,10 @@ var patterns_registry_default = {
31057
31162
  "1:1",
31058
31163
  "16:9",
31059
31164
  "5:7",
31060
- "8:1"
31165
+ "8:1",
31166
+ "4:1",
31167
+ "5:3",
31168
+ "1:2"
31061
31169
  ]
31062
31170
  },
31063
31171
  atlas: {
@@ -31174,6 +31282,7 @@ var patterns_registry_default = {
31174
31282
  "dialogue-bubble": {
31175
31283
  type: "dialogue-bubble",
31176
31284
  category: "game",
31285
+ sourceFile: "components/game/atoms/DialogueBubble.tsx",
31177
31286
  tier: "atoms",
31178
31287
  family: "game",
31179
31288
  description: "DialogueBubble component",
@@ -31264,7 +31373,10 @@ var patterns_registry_default = {
31264
31373
  "1:1",
31265
31374
  "16:9",
31266
31375
  "5:7",
31267
- "8:1"
31376
+ "8:1",
31377
+ "4:1",
31378
+ "5:3",
31379
+ "1:2"
31268
31380
  ]
31269
31381
  },
31270
31382
  atlas: {
@@ -31335,6 +31447,7 @@ var patterns_registry_default = {
31335
31447
  "health-bar": {
31336
31448
  type: "health-bar",
31337
31449
  category: "game",
31450
+ sourceFile: "components/game/atoms/HealthBar.tsx",
31338
31451
  tier: "atoms",
31339
31452
  family: "game",
31340
31453
  description: "HealthBar component",
@@ -31483,7 +31596,10 @@ var patterns_registry_default = {
31483
31596
  "1:1",
31484
31597
  "16:9",
31485
31598
  "5:7",
31486
- "8:1"
31599
+ "8:1",
31600
+ "4:1",
31601
+ "5:3",
31602
+ "1:2"
31487
31603
  ]
31488
31604
  },
31489
31605
  atlas: {
@@ -31578,7 +31694,10 @@ var patterns_registry_default = {
31578
31694
  "1:1",
31579
31695
  "16:9",
31580
31696
  "5:7",
31581
- "8:1"
31697
+ "8:1",
31698
+ "4:1",
31699
+ "5:3",
31700
+ "1:2"
31582
31701
  ]
31583
31702
  },
31584
31703
  atlas: {
@@ -31613,6 +31732,7 @@ var patterns_registry_default = {
31613
31732
  "score-display": {
31614
31733
  type: "score-display",
31615
31734
  category: "game",
31735
+ sourceFile: "components/game/atoms/ScoreDisplay.tsx",
31616
31736
  tier: "atoms",
31617
31737
  family: "game",
31618
31738
  description: "ScoreDisplay component",
@@ -31688,7 +31808,10 @@ var patterns_registry_default = {
31688
31808
  "1:1",
31689
31809
  "16:9",
31690
31810
  "5:7",
31691
- "8:1"
31811
+ "8:1",
31812
+ "4:1",
31813
+ "5:3",
31814
+ "1:2"
31692
31815
  ]
31693
31816
  },
31694
31817
  atlas: {
@@ -31775,6 +31898,7 @@ var patterns_registry_default = {
31775
31898
  "timer-display": {
31776
31899
  type: "timer-display",
31777
31900
  category: "game",
31901
+ sourceFile: "components/game/atoms/TimerDisplay.tsx",
31778
31902
  tier: "atoms",
31779
31903
  family: "game",
31780
31904
  description: "TimerDisplay component",
@@ -31901,7 +32025,10 @@ var patterns_registry_default = {
31901
32025
  "1:1",
31902
32026
  "16:9",
31903
32027
  "5:7",
31904
- "8:1"
32028
+ "8:1",
32029
+ "4:1",
32030
+ "5:3",
32031
+ "1:2"
31905
32032
  ]
31906
32033
  },
31907
32034
  atlas: {
@@ -34171,6 +34298,7 @@ var patterns_registry_default = {
34171
34298
  "game-hud": {
34172
34299
  type: "game-hud",
34173
34300
  category: "game",
34301
+ sourceFile: "components/game/molecules/GameHud.tsx",
34174
34302
  tier: "molecules",
34175
34303
  family: "game",
34176
34304
  description: "GameHud component",
@@ -34261,7 +34389,10 @@ var patterns_registry_default = {
34261
34389
  "1:1",
34262
34390
  "16:9",
34263
34391
  "5:7",
34264
- "8:1"
34392
+ "8:1",
34393
+ "4:1",
34394
+ "5:3",
34395
+ "1:2"
34265
34396
  ]
34266
34397
  },
34267
34398
  atlas: {
@@ -34355,7 +34486,10 @@ var patterns_registry_default = {
34355
34486
  "1:1",
34356
34487
  "16:9",
34357
34488
  "5:7",
34358
- "8:1"
34489
+ "8:1",
34490
+ "4:1",
34491
+ "5:3",
34492
+ "1:2"
34359
34493
  ]
34360
34494
  },
34361
34495
  atlas: {
@@ -34512,7 +34646,10 @@ var patterns_registry_default = {
34512
34646
  "1:1",
34513
34647
  "16:9",
34514
34648
  "5:7",
34515
- "8:1"
34649
+ "8:1",
34650
+ "4:1",
34651
+ "5:3",
34652
+ "1:2"
34516
34653
  ]
34517
34654
  },
34518
34655
  atlas: {
@@ -34606,7 +34743,10 @@ var patterns_registry_default = {
34606
34743
  "1:1",
34607
34744
  "16:9",
34608
34745
  "5:7",
34609
- "8:1"
34746
+ "8:1",
34747
+ "4:1",
34748
+ "5:3",
34749
+ "1:2"
34610
34750
  ]
34611
34751
  },
34612
34752
  atlas: {
@@ -34795,7 +34935,10 @@ var patterns_registry_default = {
34795
34935
  "1:1",
34796
34936
  "16:9",
34797
34937
  "5:7",
34798
- "8:1"
34938
+ "8:1",
34939
+ "4:1",
34940
+ "5:3",
34941
+ "1:2"
34799
34942
  ]
34800
34943
  },
34801
34944
  atlas: {
@@ -35142,7 +35285,10 @@ var patterns_registry_default = {
35142
35285
  "1:1",
35143
35286
  "16:9",
35144
35287
  "5:7",
35145
- "8:1"
35288
+ "8:1",
35289
+ "4:1",
35290
+ "5:3",
35291
+ "1:2"
35146
35292
  ]
35147
35293
  },
35148
35294
  atlas: {
@@ -35183,6 +35329,7 @@ var patterns_registry_default = {
35183
35329
  "stat-badge": {
35184
35330
  type: "stat-badge",
35185
35331
  category: "game",
35332
+ sourceFile: "components/game/molecules/StatBadge.tsx",
35186
35333
  tier: "molecules",
35187
35334
  family: "game",
35188
35335
  description: "StatBadge component",
@@ -35258,7 +35405,10 @@ var patterns_registry_default = {
35258
35405
  "1:1",
35259
35406
  "16:9",
35260
35407
  "5:7",
35261
- "8:1"
35408
+ "8:1",
35409
+ "4:1",
35410
+ "5:3",
35411
+ "1:2"
35262
35412
  ]
35263
35413
  },
35264
35414
  atlas: {
@@ -35353,7 +35503,10 @@ var patterns_registry_default = {
35353
35503
  "1:1",
35354
35504
  "16:9",
35355
35505
  "5:7",
35356
- "8:1"
35506
+ "8:1",
35507
+ "4:1",
35508
+ "5:3",
35509
+ "1:2"
35357
35510
  ]
35358
35511
  },
35359
35512
  atlas: {
@@ -35879,6 +36032,7 @@ var patterns_registry_default = {
35879
36032
  "game-audio-toggle": {
35880
36033
  type: "game-audio-toggle",
35881
36034
  category: "game",
36035
+ sourceFile: "components/game/atoms/GameAudioToggle.tsx",
35882
36036
  tier: "atoms",
35883
36037
  family: "game",
35884
36038
  description: "GameAudioToggle component",
@@ -36010,7 +36164,10 @@ var patterns_registry_default = {
36010
36164
  "1:1",
36011
36165
  "16:9",
36012
36166
  "5:7",
36013
- "8:1"
36167
+ "8:1",
36168
+ "4:1",
36169
+ "5:3",
36170
+ "1:2"
36014
36171
  ]
36015
36172
  },
36016
36173
  atlas: {
@@ -36105,7 +36262,10 @@ var patterns_registry_default = {
36105
36262
  "1:1",
36106
36263
  "16:9",
36107
36264
  "5:7",
36108
- "8:1"
36265
+ "8:1",
36266
+ "4:1",
36267
+ "5:3",
36268
+ "1:2"
36109
36269
  ]
36110
36270
  },
36111
36271
  atlas: {
@@ -36154,6 +36314,7 @@ var patterns_registry_default = {
36154
36314
  "trait-slot": {
36155
36315
  type: "trait-slot",
36156
36316
  category: "game",
36317
+ sourceFile: "components/game/molecules/TraitSlot.tsx",
36157
36318
  tier: "molecules",
36158
36319
  family: "game",
36159
36320
  description: "Event Contract: Emits: UI:CLICK Emits: UI:REMOVE",
@@ -36266,7 +36427,10 @@ var patterns_registry_default = {
36266
36427
  "1:1",
36267
36428
  "16:9",
36268
36429
  "5:7",
36269
- "8:1"
36430
+ "8:1",
36431
+ "4:1",
36432
+ "5:3",
36433
+ "1:2"
36270
36434
  ]
36271
36435
  },
36272
36436
  atlas: {
@@ -36509,7 +36673,10 @@ var patterns_registry_default = {
36509
36673
  "1:1",
36510
36674
  "16:9",
36511
36675
  "5:7",
36512
- "8:1"
36676
+ "8:1",
36677
+ "4:1",
36678
+ "5:3",
36679
+ "1:2"
36513
36680
  ]
36514
36681
  },
36515
36682
  atlas: {
@@ -36686,7 +36853,10 @@ var patterns_registry_default = {
36686
36853
  "1:1",
36687
36854
  "16:9",
36688
36855
  "5:7",
36689
- "8:1"
36856
+ "8:1",
36857
+ "4:1",
36858
+ "5:3",
36859
+ "1:2"
36690
36860
  ]
36691
36861
  },
36692
36862
  atlas: {
@@ -36912,7 +37082,10 @@ var patterns_registry_default = {
36912
37082
  "1:1",
36913
37083
  "16:9",
36914
37084
  "5:7",
36915
- "8:1"
37085
+ "8:1",
37086
+ "4:1",
37087
+ "5:3",
37088
+ "1:2"
36916
37089
  ]
36917
37090
  },
36918
37091
  atlas: {
@@ -37107,6 +37280,7 @@ var patterns_registry_default = {
37107
37280
  "action-palette": {
37108
37281
  type: "action-palette",
37109
37282
  category: "game",
37283
+ sourceFile: "components/game/molecules/ActionPalette.tsx",
37110
37284
  tier: "molecules",
37111
37285
  family: "game",
37112
37286
  description: "ActionPalette Component Grid of draggable ActionTile components for the Sequencer tier. Kids pick from these to build their sequence.",
@@ -37217,7 +37391,10 @@ var patterns_registry_default = {
37217
37391
  "1:1",
37218
37392
  "16:9",
37219
37393
  "5:7",
37220
- "8:1"
37394
+ "8:1",
37395
+ "4:1",
37396
+ "5:3",
37397
+ "1:2"
37221
37398
  ]
37222
37399
  },
37223
37400
  atlas: {
@@ -37405,6 +37582,7 @@ var patterns_registry_default = {
37405
37582
  "action-tile": {
37406
37583
  type: "action-tile",
37407
37584
  category: "game",
37585
+ sourceFile: "components/game/molecules/ActionTile.tsx",
37408
37586
  tier: "molecules",
37409
37587
  family: "game",
37410
37588
  description: "ActionTile Component A draggable action tile for the Sequencer tier (ages 5-8). Kids drag these from the ActionPalette into SequenceBar slots. Sets SlotItemData on dataTransfer for TraitSlot compatibility.",
@@ -37617,7 +37795,10 @@ var patterns_registry_default = {
37617
37795
  "1:1",
37618
37796
  "16:9",
37619
37797
  "5:7",
37620
- "8:1"
37798
+ "8:1",
37799
+ "4:1",
37800
+ "5:3",
37801
+ "1:2"
37621
37802
  ]
37622
37803
  },
37623
37804
  atlas: {
@@ -37780,6 +37961,7 @@ var patterns_registry_default = {
37780
37961
  "sequence-bar": {
37781
37962
  type: "sequence-bar",
37782
37963
  category: "game",
37964
+ sourceFile: "components/game/molecules/SequenceBar.tsx",
37783
37965
  tier: "molecules",
37784
37966
  family: "game",
37785
37967
  description: "SequenceBar Component A row of TraitSlot components forming the action sequence for the Sequencer tier (ages 5-8). Kids drag ActionTiles from the palette into these slots to build their sequence.",
@@ -37890,7 +38072,10 @@ var patterns_registry_default = {
37890
38072
  "1:1",
37891
38073
  "16:9",
37892
38074
  "5:7",
37893
- "8:1"
38075
+ "8:1",
38076
+ "4:1",
38077
+ "5:3",
38078
+ "1:2"
37894
38079
  ]
37895
38080
  },
37896
38081
  atlas: {
@@ -38118,7 +38303,10 @@ var patterns_registry_default = {
38118
38303
  "1:1",
38119
38304
  "16:9",
38120
38305
  "5:7",
38121
- "8:1"
38306
+ "8:1",
38307
+ "4:1",
38308
+ "5:3",
38309
+ "1:2"
38122
38310
  ]
38123
38311
  },
38124
38312
  atlas: {
@@ -41167,6 +41355,7 @@ var patterns_registry_default = {
41167
41355
  "canvas-2d": {
41168
41356
  type: "canvas-2d",
41169
41357
  category: "game",
41358
+ sourceFile: "components/game/molecules/Canvas2D.tsx",
41170
41359
  tier: "molecules",
41171
41360
  family: "game",
41172
41361
  description: "Canvas2D component",
@@ -41313,7 +41502,10 @@ var patterns_registry_default = {
41313
41502
  "1:1",
41314
41503
  "16:9",
41315
41504
  "5:7",
41316
- "8:1"
41505
+ "8:1",
41506
+ "4:1",
41507
+ "5:3",
41508
+ "1:2"
41317
41509
  ]
41318
41510
  },
41319
41511
  atlas: {
@@ -41625,6 +41817,7 @@ var patterns_registry_default = {
41625
41817
  "control-grid": {
41626
41818
  type: "control-grid",
41627
41819
  category: "game",
41820
+ sourceFile: "components/game/molecules/ControlGrid.tsx",
41628
41821
  tier: "molecules",
41629
41822
  family: "game",
41630
41823
  description: "ControlGrid component",
@@ -41736,7 +41929,10 @@ var patterns_registry_default = {
41736
41929
  "1:1",
41737
41930
  "16:9",
41738
41931
  "5:7",
41739
- "8:1"
41932
+ "8:1",
41933
+ "4:1",
41934
+ "5:3",
41935
+ "1:2"
41740
41936
  ]
41741
41937
  },
41742
41938
  atlas: {
@@ -41965,7 +42161,10 @@ var patterns_registry_default = {
41965
42161
  "1:1",
41966
42162
  "16:9",
41967
42163
  "5:7",
41968
- "8:1"
42164
+ "8:1",
42165
+ "4:1",
42166
+ "5:3",
42167
+ "1:2"
41969
42168
  ]
41970
42169
  },
41971
42170
  atlas: {
@@ -42036,6 +42235,7 @@ var patterns_registry_default = {
42036
42235
  "game-icon": {
42037
42236
  type: "game-icon",
42038
42237
  category: "game",
42238
+ sourceFile: "components/core/atoms/GameIcon.tsx",
42039
42239
  tier: "atoms",
42040
42240
  family: "core",
42041
42241
  description: "GameIcon component",
@@ -42111,7 +42311,10 @@ var patterns_registry_default = {
42111
42311
  "1:1",
42112
42312
  "16:9",
42113
42313
  "5:7",
42114
- "8:1"
42314
+ "8:1",
42315
+ "4:1",
42316
+ "5:3",
42317
+ "1:2"
42115
42318
  ]
42116
42319
  },
42117
42320
  atlas: {
@@ -50409,6 +50612,7 @@ var patterns_registry_default = {
50409
50612
  "draw-sprite": {
50410
50613
  type: "draw-sprite",
50411
50614
  category: "game",
50615
+ sourceFile: "components/game/atoms/DrawSprite.tsx",
50412
50616
  tier: "atoms",
50413
50617
  family: "game",
50414
50618
  description: "DrawSprite component",
@@ -50530,7 +50734,10 @@ var patterns_registry_default = {
50530
50734
  "1:1",
50531
50735
  "16:9",
50532
50736
  "5:7",
50533
- "8:1"
50737
+ "8:1",
50738
+ "4:1",
50739
+ "5:3",
50740
+ "1:2"
50534
50741
  ]
50535
50742
  },
50536
50743
  atlas: {
@@ -51514,6 +51721,7 @@ var patterns_registry_default = {
51514
51721
  "draw-sprite-layer": {
51515
51722
  type: "draw-sprite-layer",
51516
51723
  category: "game",
51724
+ sourceFile: "components/game/molecules/DrawSpriteLayer.tsx",
51517
51725
  tier: "molecules",
51518
51726
  family: "game",
51519
51727
  description: "DrawSpriteLayer component",
@@ -51656,7 +51864,10 @@ var patterns_registry_default = {
51656
51864
  "1:1",
51657
51865
  "16:9",
51658
51866
  "5:7",
51659
- "8:1"
51867
+ "8:1",
51868
+ "4:1",
51869
+ "5:3",
51870
+ "1:2"
51660
51871
  ]
51661
51872
  },
51662
51873
  atlas: {
@@ -51962,6 +52173,7 @@ var patterns_registry_default = {
51962
52173
  canvas: {
51963
52174
  type: "canvas",
51964
52175
  category: "game",
52176
+ sourceFile: "components/game/molecules/Canvas.tsx",
51965
52177
  tier: "molecules",
51966
52178
  family: "game",
51967
52179
  description: "Canvas component",
@@ -52201,7 +52413,10 @@ var patterns_registry_default = {
52201
52413
  "1:1",
52202
52414
  "16:9",
52203
52415
  "5:7",
52204
- "8:1"
52416
+ "8:1",
52417
+ "4:1",
52418
+ "5:3",
52419
+ "1:2"
52205
52420
  ]
52206
52421
  },
52207
52422
  atlas: {
@@ -54634,6 +54849,7 @@ var patterns_registry_default = {
54634
54849
  "draw-fx-layer": {
54635
54850
  type: "draw-fx-layer",
54636
54851
  category: "game",
54852
+ sourceFile: "components/game/molecules/DrawFxLayer.tsx",
54637
54853
  tier: "molecules",
54638
54854
  family: "game",
54639
54855
  description: "DrawFxLayer component",
@@ -55009,7 +55225,10 @@ var patterns_registry_default = {
55009
55225
  "1:1",
55010
55226
  "16:9",
55011
55227
  "5:7",
55012
- "8:1"
55228
+ "8:1",
55229
+ "4:1",
55230
+ "5:3",
55231
+ "1:2"
55013
55232
  ]
55014
55233
  },
55015
55234
  atlas: {
@@ -56300,6 +56519,399 @@ var patterns_registry_default = {
56300
56519
  default: "replace"
56301
56520
  }
56302
56521
  }
56522
+ },
56523
+ "draw-skinned-mesh": {
56524
+ type: "draw-skinned-mesh",
56525
+ category: "game",
56526
+ sourceFile: "components/game/atoms/DrawSkinnedMesh.tsx",
56527
+ tier: "atoms",
56528
+ family: "game",
56529
+ description: "DrawSkinnedMesh component",
56530
+ suggestedFor: [
56531
+ "draw",
56532
+ "skinned",
56533
+ "mesh",
56534
+ "draw skinned mesh"
56535
+ ],
56536
+ typicalSize: "small",
56537
+ propsSchema: {
56538
+ id: {
56539
+ types: [
56540
+ "string"
56541
+ ],
56542
+ description: "Optional source-tagged hit-test handle \u2014 the host indexes the drawable's ScenePos\u2192id so a pointer/raycast at that cell resolves to this id (unit/entity click). No id \u2192 the host emits only the coordinate (tile click)."
56543
+ },
56544
+ type: {
56545
+ types: [
56546
+ "string"
56547
+ ],
56548
+ description: "type prop",
56549
+ required: true,
56550
+ enumValues: [
56551
+ "draw-skinned-mesh"
56552
+ ]
56553
+ },
56554
+ position: {
56555
+ types: [
56556
+ "object"
56557
+ ],
56558
+ description: "Logical scene position; mesh local coords are world units relative to its projected top-left.",
56559
+ required: true,
56560
+ properties: {
56561
+ x: {
56562
+ types: [
56563
+ "number"
56564
+ ]
56565
+ },
56566
+ y: {
56567
+ types: [
56568
+ "number"
56569
+ ]
56570
+ },
56571
+ z: {
56572
+ types: [
56573
+ "number"
56574
+ ]
56575
+ }
56576
+ },
56577
+ propertyRequired: [
56578
+ "x",
56579
+ "y"
56580
+ ],
56581
+ scenePos: true
56582
+ },
56583
+ asset: {
56584
+ types: [
56585
+ "object"
56586
+ ],
56587
+ description: "The texture the mesh UVs cut into.",
56588
+ required: true,
56589
+ properties: {
56590
+ url: {
56591
+ types: [
56592
+ "asset"
56593
+ ]
56594
+ },
56595
+ role: {
56596
+ types: [
56597
+ "string"
56598
+ ]
56599
+ },
56600
+ category: {
56601
+ types: [
56602
+ "string"
56603
+ ]
56604
+ },
56605
+ animations: {
56606
+ types: [
56607
+ "array"
56608
+ ],
56609
+ items: {
56610
+ types: [
56611
+ "string"
56612
+ ]
56613
+ }
56614
+ },
56615
+ style: {
56616
+ types: [
56617
+ "string"
56618
+ ],
56619
+ enumValues: [
56620
+ "pixel",
56621
+ "vector",
56622
+ "hd",
56623
+ "1-bit",
56624
+ "isometric"
56625
+ ]
56626
+ },
56627
+ variant: {
56628
+ types: [
56629
+ "string"
56630
+ ]
56631
+ },
56632
+ dimension: {
56633
+ types: [
56634
+ "string"
56635
+ ],
56636
+ enumValues: [
56637
+ "2d",
56638
+ "3d"
56639
+ ]
56640
+ },
56641
+ aspect: {
56642
+ types: [
56643
+ "string"
56644
+ ],
56645
+ enumValues: [
56646
+ "1:1",
56647
+ "16:9",
56648
+ "5:7",
56649
+ "8:1",
56650
+ "4:1",
56651
+ "5:3",
56652
+ "1:2"
56653
+ ]
56654
+ },
56655
+ atlas: {
56656
+ types: [
56657
+ "asset"
56658
+ ]
56659
+ },
56660
+ sprite: {
56661
+ types: [
56662
+ "string"
56663
+ ]
56664
+ },
56665
+ name: {
56666
+ types: [
56667
+ "string"
56668
+ ]
56669
+ },
56670
+ thumbnailUrl: {
56671
+ types: [
56672
+ "string"
56673
+ ]
56674
+ }
56675
+ },
56676
+ propertyRequired: [
56677
+ "url",
56678
+ "role",
56679
+ "category"
56680
+ ]
56681
+ },
56682
+ mesh: {
56683
+ types: [
56684
+ "object"
56685
+ ],
56686
+ description: "Inline bind mesh; wins over `meshUrl`.",
56687
+ properties: {
56688
+ vertices: {
56689
+ types: [
56690
+ "array"
56691
+ ],
56692
+ items: {
56693
+ types: [
56694
+ "object"
56695
+ ],
56696
+ properties: {
56697
+ x: {
56698
+ types: [
56699
+ "number"
56700
+ ]
56701
+ },
56702
+ y: {
56703
+ types: [
56704
+ "number"
56705
+ ]
56706
+ },
56707
+ u: {
56708
+ types: [
56709
+ "number"
56710
+ ]
56711
+ },
56712
+ v: {
56713
+ types: [
56714
+ "number"
56715
+ ]
56716
+ },
56717
+ weights: {
56718
+ types: [
56719
+ "array"
56720
+ ],
56721
+ items: {
56722
+ types: [
56723
+ "object"
56724
+ ],
56725
+ properties: {
56726
+ bone: {
56727
+ types: [
56728
+ "number"
56729
+ ]
56730
+ },
56731
+ w: {
56732
+ types: [
56733
+ "number"
56734
+ ]
56735
+ }
56736
+ },
56737
+ required: [
56738
+ "bone",
56739
+ "w"
56740
+ ]
56741
+ }
56742
+ }
56743
+ },
56744
+ required: [
56745
+ "x",
56746
+ "y",
56747
+ "u",
56748
+ "v",
56749
+ "weights"
56750
+ ]
56751
+ }
56752
+ },
56753
+ triangles: {
56754
+ types: [
56755
+ "array"
56756
+ ],
56757
+ items: {
56758
+ types: [
56759
+ "array"
56760
+ ],
56761
+ items: {
56762
+ types: [
56763
+ "number"
56764
+ ]
56765
+ }
56766
+ }
56767
+ }
56768
+ },
56769
+ propertyRequired: [
56770
+ "vertices",
56771
+ "triangles"
56772
+ ]
56773
+ },
56774
+ meshUrl: {
56775
+ types: [
56776
+ "string"
56777
+ ],
56778
+ description: "URL of a JSON `SkinMesh` (fetched + cached); used when `mesh` is absent."
56779
+ },
56780
+ bones: {
56781
+ types: [
56782
+ "array"
56783
+ ],
56784
+ description: "The skeleton (bind pose; FK chain via `parent` names). Falls back to the rigbundle's `bones` when empty.",
56785
+ required: true,
56786
+ items: {
56787
+ types: [
56788
+ "object"
56789
+ ],
56790
+ properties: {
56791
+ name: {
56792
+ types: [
56793
+ "string"
56794
+ ]
56795
+ },
56796
+ parent: {
56797
+ types: [
56798
+ "string"
56799
+ ]
56800
+ },
56801
+ pivot: {
56802
+ types: [
56803
+ "array"
56804
+ ],
56805
+ items: {
56806
+ types: [
56807
+ "number"
56808
+ ]
56809
+ }
56810
+ },
56811
+ tip: {
56812
+ types: [
56813
+ "array"
56814
+ ],
56815
+ items: {
56816
+ types: [
56817
+ "number"
56818
+ ]
56819
+ }
56820
+ }
56821
+ },
56822
+ required: [
56823
+ "name",
56824
+ "parent",
56825
+ "pivot",
56826
+ "tip"
56827
+ ]
56828
+ }
56829
+ },
56830
+ pose: {
56831
+ types: [
56832
+ "object"
56833
+ ],
56834
+ description: "Static pose (bone name \u2192 degrees relative to bind). Overridden by `clip` + `frame`.",
56835
+ mapValue: {
56836
+ types: [
56837
+ "number"
56838
+ ]
56839
+ }
56840
+ },
56841
+ clip: {
56842
+ types: [
56843
+ "object"
56844
+ ],
56845
+ description: "Pose animation clip; with `frame`, pose = `frames[frame % frames.length]`.",
56846
+ properties: {
56847
+ frames: {
56848
+ types: [
56849
+ "array"
56850
+ ],
56851
+ items: {
56852
+ types: [
56853
+ "object"
56854
+ ],
56855
+ mapValue: {
56856
+ types: [
56857
+ "number"
56858
+ ]
56859
+ }
56860
+ }
56861
+ }
56862
+ },
56863
+ propertyRequired: [
56864
+ "frames"
56865
+ ]
56866
+ },
56867
+ clipName: {
56868
+ types: [
56869
+ "string"
56870
+ ],
56871
+ description: "Named clip inside the rigbundle at `meshUrl` (`clips[clipName].frames`); used when `clip` is absent. Empty/unknown = no clip."
56872
+ },
56873
+ frame: {
56874
+ types: [
56875
+ "number"
56876
+ ],
56877
+ description: "Clip frame counter (host-driven paint clock frame)."
56878
+ },
56879
+ opacity: {
56880
+ types: [
56881
+ "number"
56882
+ ],
56883
+ description: "0..1 opacity."
56884
+ },
56885
+ weightsOverlay: {
56886
+ types: [
56887
+ "boolean"
56888
+ ],
56889
+ description: "Paint per-triangle dominant-bone colors instead of the texture (rig inspection)."
56890
+ },
56891
+ ghost: {
56892
+ types: [
56893
+ "object"
56894
+ ],
56895
+ description: "Onion skin: render the mesh at this clip frame underneath, at this opacity.",
56896
+ properties: {
56897
+ frame: {
56898
+ types: [
56899
+ "number"
56900
+ ]
56901
+ },
56902
+ opacity: {
56903
+ types: [
56904
+ "number"
56905
+ ]
56906
+ }
56907
+ },
56908
+ propertyRequired: [
56909
+ "frame",
56910
+ "opacity"
56911
+ ]
56912
+ }
56913
+ },
56914
+ drawable: true
56303
56915
  }
56304
56916
  },
56305
56917
  categories: [
@@ -56325,7 +56937,7 @@ var patterns_registry_default = {
56325
56937
  // src/patterns/integrators-registry.json
56326
56938
  var integrators_registry_default = {
56327
56939
  version: "1.0.0",
56328
- exportedAt: "2026-09-07T01:58:57.916Z",
56940
+ exportedAt: "2026-09-12T12:14:53.173Z",
56329
56941
  integrators: {
56330
56942
  github: {
56331
56943
  name: "github",
@@ -59908,6 +60520,269 @@ var integrators_registry_default = {
59908
60520
  }
59909
60521
  }
59910
60522
  ]
60523
+ },
60524
+ rigger: {
60525
+ name: "rigger",
60526
+ description: "Local rigger service (FastAPI) \u2014 mesh rigging build + render",
60527
+ category: "media",
60528
+ actions: [
60529
+ {
60530
+ name: "health",
60531
+ description: "Liveness probe of the local rigger service.",
60532
+ params: [],
60533
+ responseShape: {
60534
+ ok: "boolean"
60535
+ }
60536
+ },
60537
+ {
60538
+ name: "buildMesh",
60539
+ description: "Build a rigged mesh bundle from a source image via the local rigger service.",
60540
+ params: [
60541
+ {
60542
+ name: "imagePath",
60543
+ type: "string",
60544
+ required: true,
60545
+ description: "Path to the source image."
60546
+ },
60547
+ {
60548
+ name: "rig",
60549
+ type: "object",
60550
+ required: true,
60551
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60552
+ }
60553
+ ],
60554
+ responseShape: {
60555
+ bundlePath: "string",
60556
+ boneCount: "number",
60557
+ vertexCount: "number",
60558
+ triangleCount: "number",
60559
+ clips: "string[]"
60560
+ }
60561
+ },
60562
+ {
60563
+ name: "render",
60564
+ description: "Render a rigged mesh bundle to output files via the local rigger service.",
60565
+ params: [
60566
+ {
60567
+ name: "imagePath",
60568
+ type: "string",
60569
+ required: true,
60570
+ description: "Path to the source image."
60571
+ },
60572
+ {
60573
+ name: "rig",
60574
+ type: "object",
60575
+ required: true,
60576
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60577
+ },
60578
+ {
60579
+ name: "preset",
60580
+ type: "string",
60581
+ required: true,
60582
+ description: "Render preset name."
60583
+ },
60584
+ {
60585
+ name: "outDir",
60586
+ type: "string",
60587
+ required: true,
60588
+ description: "Output directory for rendered files."
60589
+ },
60590
+ {
60591
+ name: "mode",
60592
+ type: "string",
60593
+ required: false,
60594
+ description: "Render path: 'mesh' (skinned, deforming) or 'cutout' (rigid per-part layers). Defaults to 'mesh'."
60595
+ },
60596
+ {
60597
+ name: "supersample",
60598
+ type: "number",
60599
+ required: false,
60600
+ description: "Supersampling factor for the cutout path. Defaults to 1."
60601
+ }
60602
+ ],
60603
+ responseShape: {
60604
+ outdir: "string",
60605
+ frames: "number",
60606
+ framePaths: "string[]",
60607
+ sheet: "string",
60608
+ gif: "string",
60609
+ atlas: "string"
60610
+ }
60611
+ },
60612
+ {
60613
+ name: "listPresets",
60614
+ description: "List the available animation presets (name, fps, frame count, bone roles) from the local rigger service.",
60615
+ params: [],
60616
+ responseShape: {
60617
+ presets: {
60618
+ type: "array",
60619
+ items: {
60620
+ type: "object",
60621
+ properties: {
60622
+ name: {
60623
+ type: "string",
60624
+ required: true
60625
+ },
60626
+ path: {
60627
+ type: "string",
60628
+ required: true
60629
+ },
60630
+ fps: {
60631
+ type: "number",
60632
+ required: true
60633
+ },
60634
+ frames: {
60635
+ type: "number",
60636
+ required: true
60637
+ },
60638
+ bones: {
60639
+ type: "object[]",
60640
+ required: true
60641
+ }
60642
+ }
60643
+ }
60644
+ }
60645
+ }
60646
+ },
60647
+ {
60648
+ name: "loadRig",
60649
+ description: "Load a rig file, resolving `cloneOf` parts to concrete box/pivot geometry.",
60650
+ params: [
60651
+ {
60652
+ name: "rigPath",
60653
+ type: "string",
60654
+ required: true,
60655
+ description: "Path to the rig JSON file."
60656
+ }
60657
+ ],
60658
+ responseShape: {
60659
+ rig: "object",
60660
+ resolved: "object"
60661
+ }
60662
+ },
60663
+ {
60664
+ name: "saveRig",
60665
+ description: "Save a rig file; the server validates it and rejects a malformed part.",
60666
+ params: [
60667
+ {
60668
+ name: "rigPath",
60669
+ type: "string",
60670
+ required: true,
60671
+ description: "Path to write the rig JSON file."
60672
+ },
60673
+ {
60674
+ name: "rig",
60675
+ type: "object",
60676
+ required: true,
60677
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60678
+ }
60679
+ ],
60680
+ responseShape: {
60681
+ rigPath: "string",
60682
+ parts: "number"
60683
+ }
60684
+ },
60685
+ {
60686
+ name: "ownership",
60687
+ description: "Render the per-part pixel ownership map for a rig over a source image.",
60688
+ params: [
60689
+ {
60690
+ name: "imagePath",
60691
+ type: "string",
60692
+ required: true,
60693
+ description: "Path to the source image."
60694
+ },
60695
+ {
60696
+ name: "rig",
60697
+ type: "object",
60698
+ required: true,
60699
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60700
+ },
60701
+ {
60702
+ name: "outPath",
60703
+ type: "string",
60704
+ required: true,
60705
+ description: "Path to write the ownership-map PNG."
60706
+ }
60707
+ ],
60708
+ responseShape: {
60709
+ outPath: "string",
60710
+ legend: {
60711
+ type: "array",
60712
+ items: {
60713
+ type: "object",
60714
+ properties: {
60715
+ name: {
60716
+ type: "string",
60717
+ required: true
60718
+ },
60719
+ color: {
60720
+ type: "string",
60721
+ required: true
60722
+ }
60723
+ }
60724
+ }
60725
+ }
60726
+ }
60727
+ },
60728
+ {
60729
+ name: "generate",
60730
+ description: "Generate one image on the local image server (text-to-image, or a Kontext edit conditioned on `sourcePath`).",
60731
+ params: [
60732
+ {
60733
+ name: "model",
60734
+ type: "'z-image-turbo' | 'kontext'",
60735
+ required: true,
60736
+ description: "Generation model: 'z-image-turbo' (text-to-image) or 'kontext' (edit; requires sourcePath)."
60737
+ },
60738
+ {
60739
+ name: "prompt",
60740
+ type: "string",
60741
+ required: true,
60742
+ description: "The generation/edit prompt."
60743
+ },
60744
+ {
60745
+ name: "seed",
60746
+ type: "number",
60747
+ required: false,
60748
+ description: "Random seed; omit for a fresh one each call."
60749
+ },
60750
+ {
60751
+ name: "size",
60752
+ type: "string",
60753
+ required: false,
60754
+ description: "Output image size, e.g. '1024x1024'. Defaults to '1024x1024'."
60755
+ },
60756
+ {
60757
+ name: "steps",
60758
+ type: "number",
60759
+ required: false,
60760
+ description: "Diffusion step count."
60761
+ },
60762
+ {
60763
+ name: "sourcePath",
60764
+ type: "string",
60765
+ required: false,
60766
+ description: "Path to the source image to edit; REQUIRED for 'kontext'."
60767
+ },
60768
+ {
60769
+ name: "outDir",
60770
+ type: "string",
60771
+ required: true,
60772
+ description: "Output directory the generated PNG is written under."
60773
+ }
60774
+ ],
60775
+ responseShape: {
60776
+ outPath: "string",
60777
+ model: "string",
60778
+ prompt: "string",
60779
+ seed: "number | null",
60780
+ size: "string",
60781
+ sourcePath: "string | null",
60782
+ elapsedMs: "number"
60783
+ }
60784
+ }
60785
+ ]
59911
60786
  }
59912
60787
  },
59913
60788
  categories: [
@@ -59927,7 +60802,7 @@ var integrators_registry_default = {
59927
60802
  // src/patterns/component-mapping.json
59928
60803
  var component_mapping_default = {
59929
60804
  version: "1.0.0",
59930
- exportedAt: "2026-09-08T23:56:00.442Z",
60805
+ exportedAt: "2026-09-12T07:27:39.835Z",
59931
60806
  mappings: {
59932
60807
  "page-header": {
59933
60808
  component: "PageHeader",
@@ -61246,6 +62121,11 @@ var component_mapping_default = {
61246
62121
  importPath: "@/components/game/atoms/DrawSprite",
61247
62122
  category: "game"
61248
62123
  },
62124
+ "draw-skinned-mesh": {
62125
+ component: "DrawSkinnedMesh",
62126
+ importPath: "@/components/game/atoms/DrawSkinnedMesh",
62127
+ category: "game"
62128
+ },
61249
62129
  "draw-text": {
61250
62130
  component: "DrawText",
61251
62131
  importPath: "@/components/game/atoms/DrawText",
@@ -61372,7 +62252,7 @@ var component_mapping_default = {
61372
62252
  // src/patterns/event-contracts.json
61373
62253
  var event_contracts_default = {
61374
62254
  version: "1.0.0",
61375
- exportedAt: "2026-09-08T23:56:00.442Z",
62255
+ exportedAt: "2026-09-12T07:27:39.835Z",
61376
62256
  contracts: {
61377
62257
  form: {
61378
62258
  emits: [
@@ -62639,6 +63519,7 @@ var PATTERN_TYPES = [
62639
63519
  "draw-mesh",
62640
63520
  "draw-shape",
62641
63521
  "draw-shape-layer",
63522
+ "draw-skinned-mesh",
62642
63523
  "draw-sprite",
62643
63524
  "draw-sprite-layer",
62644
63525
  "draw-text",
@@ -62855,6 +63736,9 @@ function isMainSlotRenderUi(effect) {
62855
63736
  return Array.isArray(effect) && effect[0] === "render-ui" && effect[1] === "main";
62856
63737
  }
62857
63738
 
63739
+ // src/patterns/self-overlay.ts
63740
+ var SELF_OVERLAY_PATTERN_TYPES = /* @__PURE__ */ new Set(["modal", "confirm-dialog"]);
63741
+
62858
63742
  // src/patterns/helpers/prompt-helpers.ts
62859
63743
  function getPatternsGroupedByCategory() {
62860
63744
  const patterns = patterns_registry_default.patterns || {};
@@ -67771,6 +68655,28 @@ function mergeEntityFrame(current, orderedWrites) {
67771
68655
  }
67772
68656
  return next;
67773
68657
  }
68658
+ function resolveEntityView(input) {
68659
+ const { frame, row, id, allowedFrameKeys } = input;
68660
+ const view = {};
68661
+ if (frame) {
68662
+ for (const key of allowedFrameKeys) {
68663
+ if (key === "id") continue;
68664
+ if (Object.prototype.hasOwnProperty.call(frame, key)) {
68665
+ view[key] = frame[key];
68666
+ }
68667
+ }
68668
+ }
68669
+ Object.assign(view, row ?? {});
68670
+ if (id !== void 0) view.id = id;
68671
+ return view;
68672
+ }
68673
+ function omitFrameFields(row, frameKeys) {
68674
+ const next = { ...row };
68675
+ for (const key of frameKeys) {
68676
+ delete next[key];
68677
+ }
68678
+ return next;
68679
+ }
67774
68680
 
67775
68681
  // src/i18n/orb-notation.json
67776
68682
  var orb_notation_default = {
@@ -67959,6 +68865,7 @@ var en_default = {
67959
68865
  persistent: "persistent",
67960
68866
  runtime: "runtime",
67961
68867
  shared: "shared",
68868
+ local: "local",
67962
68869
  identity: "identity",
67963
68870
  instance: "instance",
67964
68871
  collection: "collection"
@@ -68198,6 +69105,7 @@ var en_default = {
68198
69105
  location: "location",
68199
69106
  max: "max",
68200
69107
  maxAttempts: "maxAttempts",
69108
+ mergedFrom: "mergedFrom",
68201
69109
  min: "min",
68202
69110
  motion: "motion",
68203
69111
  mounts: "mounts",
@@ -68222,6 +69130,7 @@ var en_default = {
68222
69130
  patternPath: "patternPath",
68223
69131
  payload: "payload",
68224
69132
  payloadEntity: "payloadEntity",
69133
+ payloadFor: "payloadFor",
68225
69134
  payloadMapping: "payloadMapping",
68226
69135
  payloadSchema: "payloadSchema",
68227
69136
  persistence: "persistence",
@@ -68266,6 +69175,7 @@ var en_default = {
68266
69175
  shadows: "shadows",
68267
69176
  shape: "shape",
68268
69177
  shared: "shared",
69178
+ local: "local",
68269
69179
  singleton: "singleton",
68270
69180
  site: "site",
68271
69181
  slots: "slots",
@@ -68390,6 +69300,7 @@ var ar_default = {
68390
69300
  persistent: "\u062F\u0627\u0626\u0645",
68391
69301
  runtime: "\u0648\u0642\u062A_\u0627\u0644\u062A\u0634\u063A\u064A\u0644",
68392
69302
  shared: "\u0645\u0634\u062A\u0631\u0643",
69303
+ local: "\u0645\u062D\u0644\u064A",
68393
69304
  identity: "\u0647\u0648\u064A\u0629",
68394
69305
  instance: "\u0646\u0633\u062E\u0629",
68395
69306
  collection: "\u0645\u062C\u0645\u0648\u0639\u0629"
@@ -68629,6 +69540,7 @@ var ar_default = {
68629
69540
  location: "\u0645\u0648\u0642\u0639",
68630
69541
  max: "\u0623\u0642\u0635\u0649",
68631
69542
  maxAttempts: "\u0623\u0642\u0635\u0649_\u0639\u062F\u062F_\u0645\u062D\u0627\u0648\u0644\u0627\u062A",
69543
+ mergedFrom: "\u0645\u062F\u0645\u062C_\u0645\u0646",
68632
69544
  min: "\u0623\u062F\u0646\u0649",
68633
69545
  motion: "\u062D\u0631\u0643\u0629",
68634
69546
  mounts: "\u062A\u0631\u0643\u064A\u0628\u0627\u062A",
@@ -68653,6 +69565,7 @@ var ar_default = {
68653
69565
  patternPath: "\u0645\u0633\u0627\u0631_\u0627\u0644\u0646\u0645\u0637",
68654
69566
  payload: "\u062D\u0645\u0648\u0644\u0629",
68655
69567
  payloadEntity: "\u0643\u064A\u0627\u0646_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
69568
+ payloadFor: "\u062D\u0645\u0648\u0644\u0629_\u0644\u0623\u062C\u0644",
68656
69569
  payloadMapping: "\u062A\u062E\u0637\u064A\u0637_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
68657
69570
  payloadSchema: "\u0645\u062E\u0637\u0637_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
68658
69571
  persistence: "\u0627\u0633\u062A\u0645\u0631\u0627\u0631\u064A\u0629",
@@ -68697,6 +69610,7 @@ var ar_default = {
68697
69610
  shadows: "\u0638\u0644\u0627\u0644",
68698
69611
  shape: "\u0634\u0643\u0644",
68699
69612
  shared: "\u0645\u0634\u062A\u0631\u0643",
69613
+ local: "\u0645\u062D\u0644\u064A",
68700
69614
  singleton: "\u0648\u062D\u064A\u062F",
68701
69615
  site: "\u0645\u0648\u0642\u0639_\u0627\u0644\u0648\u064A\u0628",
68702
69616
  slots: "\u0641\u062A\u062D\u0627\u062A",
@@ -68821,6 +69735,7 @@ var sl_default = {
68821
69735
  persistent: "trajno",
68822
69736
  runtime: "izvajanje",
68823
69737
  shared: "skupno",
69738
+ local: "lokalno",
68824
69739
  identity: "identiteta",
68825
69740
  instance: "primerek",
68826
69741
  collection: "zbirka"
@@ -69060,6 +69975,7 @@ var sl_default = {
69060
69975
  location: "lokacija",
69061
69976
  max: "najvec",
69062
69977
  maxAttempts: "najvecPoskusov",
69978
+ mergedFrom: "zdruzenoIz",
69063
69979
  min: "najmanj",
69064
69980
  motion: "gibanje",
69065
69981
  mounts: "priklopi",
@@ -69084,6 +70000,7 @@ var sl_default = {
69084
70000
  patternPath: "potVzorca",
69085
70001
  payload: "podatki",
69086
70002
  payloadEntity: "podatkiEntiteta",
70003
+ payloadFor: "podatkiZa",
69087
70004
  payloadMapping: "podatkiPreslikava",
69088
70005
  payloadSchema: "podatkiShema",
69089
70006
  persistence: "trajnost",
@@ -69128,6 +70045,7 @@ var sl_default = {
69128
70045
  shadows: "sence",
69129
70046
  shape: "oblika",
69130
70047
  shared: "skupno",
70048
+ local: "lokalno",
69131
70049
  singleton: "edinec",
69132
70050
  site: "mesto",
69133
70051
  slots: "reze",
@@ -69977,6 +70895,6 @@ function reportIdenticalToEnglish(input) {
69977
70895
  return problems;
69978
70896
  }
69979
70897
 
69980
- export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, AudioManifestSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_UNIT_ANIMATION_ROWS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, I18N_SECTIONS, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LANGUAGE_CODES, LOLO_FIRST_TOKEN_KEYWORDS, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, MANIFEST_ASSET_LICENSES, MANIFEST_CANVAS_AFFINITIES, MANIFEST_ENTRY_KINDS, MANIFEST_SOURCE_CATALOGS, ManifestAssetLicenseSchema, ManifestCanvasAffinitySchema, ManifestEntryKindSchema, ManifestEntrySchema, ManifestFrameSpecSchema, ManifestSourceCatalogSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, ORB_NOTATION_KEYS, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalRefObjectSchema, OrbitalRefStringSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, PayloadTypeWhenSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, SPRITE_SHEET_LAYOUT, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SoundEntrySchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, aliasMap, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, assertNoUnsatisfiableEnum, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, checkI18nCoverage, classifyWorkflow, clearSchemaCache, collectBindings, collectCallsiteCaptureChildren, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, coreTables, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, defaultUnitAtlas, deref, deriveCollection, deriveExpectations, deriveId, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, expectedEntityName, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getNestedValue, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, getVocabulary, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, languageOfLoloFirstToken, languageOfOrbTopLevelKeys, ledgerCurName, ledgerRename, ledgerResolveName, lexLolo, localizeLoloSource, localizeMap, localizeOrbValue, manifestToAssetCatalog, mapTensorLastDim, maskSecretConfigValues, matchAssetQuery, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, overrideDeclaredKnobs, parseAssetKey, parseAssetQuery, parseBinding, parseEntityRef, parseI18nTables, parseImportedTraitRef, parseOperatorTables, parseOrbitalRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, rehydrateKnobDefs, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, reportIdenticalToEnglish, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, signatureToParamsSchema, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, traitReferencesCallsitePayload, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
70898
+ export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, AudioManifestSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_UNIT_ANIMATION_ROWS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FieldValueSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, I18N_SECTIONS, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LANGUAGE_CODES, LOLO_FIRST_TOKEN_KEYWORDS, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, MANIFEST_ASSET_LICENSES, MANIFEST_CANVAS_AFFINITIES, MANIFEST_ENTRY_KINDS, MANIFEST_SOURCE_CATALOGS, ManifestAssetLicenseSchema, ManifestCanvasAffinitySchema, ManifestEntryKindSchema, ManifestEntrySchema, ManifestFrameSpecSchema, ManifestSourceCatalogSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, ORB_NOTATION_KEYS, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalRefObjectSchema, OrbitalRefStringSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, PayloadTypeWhenSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SELF_OVERLAY_PATTERN_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, SPRITE_SHEET_LAYOUT, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SoundEntrySchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, aliasMap, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, assertNoUnsatisfiableEnum, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, checkI18nCoverage, classifyWorkflow, clearSchemaCache, collectBindings, collectCallsiteCaptureChildren, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, coreTables, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, defaultUnitAtlas, deref, deriveCollection, deriveExpectations, deriveId, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, expectedEntityName, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getNestedValue, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, getVocabulary, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, languageOfLoloFirstToken, languageOfOrbTopLevelKeys, ledgerCurName, ledgerRename, ledgerResolveName, lexLolo, localizeLoloSource, localizeMap, localizeOrbValue, manifestToAssetCatalog, mapTensorLastDim, maskSecretConfigValues, matchAssetQuery, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, omitFrameFields, overrideDeclaredKnobs, parseAssetKey, parseAssetQuery, parseBinding, parseEntityRef, parseI18nTables, parseImportedTraitRef, parseOperatorTables, parseOrbitalRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, rehydrateKnobDefs, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, reportIdenticalToEnglish, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolveEntityView, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, signatureToParamsSchema, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, traitReferencesCallsitePayload, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
69981
70899
  //# sourceMappingURL=index.js.map
69982
70900
  //# sourceMappingURL=index.js.map