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.cjs CHANGED
@@ -11197,6 +11197,19 @@ var FENCE_TAG_ALIASES = {
11197
11197
  "google-sheets": "GoogleSheetsCard",
11198
11198
  "google-sheets-connect": "GoogleSheetsConnectCard",
11199
11199
  "google-sheets-list": "GoogleSheetsListCard",
11200
+ // The creators widget is registered as "CreatorWidget" and its canonical
11201
+ // fence tag is `creator-widget`. Agents (notably on smaller models like
11202
+ // Haiku) frequently emit near-synonym tags — `creator-list`, `creators`,
11203
+ // `creator-grid` — for the same widget. Without these aliases such a tag
11204
+ // kebab→PascalCases to a non-existent component ("CreatorList"), so the
11205
+ // block resolves to neither a built-in nor an organism and renders the
11206
+ // "Couldn't load this widget" placeholder. Map the synonyms to the one
11207
+ // real component so the creators widget renders regardless of the exact
11208
+ // tag the model chose. (DEV-342)
11209
+ "creator-list": "CreatorWidget",
11210
+ "creators": "CreatorWidget",
11211
+ "creator-grid": "CreatorWidget",
11212
+ "creator_list": "CreatorWidget",
11200
11213
  // Acronym-cased components: kebab→PascalCase title-cases each part
11201
11214
  // independently ("mcq" → "Mcq", "mcq-card" → "McqCard"), which does not match
11202
11215
  // the exported acronym name "MCQCard". The agent emits the `mcq` fence tag