pxengine 0.1.153 → 0.1.154

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.
package/dist/index.mjs CHANGED
@@ -10849,6 +10849,19 @@ var FENCE_TAG_ALIASES = {
10849
10849
  "google-sheets": "GoogleSheetsCard",
10850
10850
  "google-sheets-connect": "GoogleSheetsConnectCard",
10851
10851
  "google-sheets-list": "GoogleSheetsListCard",
10852
+ // The creators widget is registered as "CreatorWidget" and its canonical
10853
+ // fence tag is `creator-widget`. Agents (notably on smaller models like
10854
+ // Haiku) frequently emit near-synonym tags — `creator-list`, `creators`,
10855
+ // `creator-grid` — for the same widget. Without these aliases such a tag
10856
+ // kebab→PascalCases to a non-existent component ("CreatorList"), so the
10857
+ // block resolves to neither a built-in nor an organism and renders the
10858
+ // "Couldn't load this widget" placeholder. Map the synonyms to the one
10859
+ // real component so the creators widget renders regardless of the exact
10860
+ // tag the model chose. (DEV-342)
10861
+ "creator-list": "CreatorWidget",
10862
+ "creators": "CreatorWidget",
10863
+ "creator-grid": "CreatorWidget",
10864
+ "creator_list": "CreatorWidget",
10852
10865
  // Acronym-cased components: kebab→PascalCase title-cases each part
10853
10866
  // independently ("mcq" → "Mcq", "mcq-card" → "McqCard"), which does not match
10854
10867
  // the exported acronym name "MCQCard". The agent emits the `mcq` fence tag