@stackwright-pro/mcp 0.2.0-alpha.27 → 0.2.0-alpha.28

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/server.mjs CHANGED
@@ -1882,21 +1882,27 @@ var PHASE_ORDER = [
1882
1882
  "designer",
1883
1883
  "theme",
1884
1884
  "api",
1885
- "auth",
1886
1885
  "data",
1886
+ "workflow",
1887
1887
  "pages",
1888
1888
  "dashboard",
1889
- "workflow"
1889
+ "auth"
1890
1890
  ];
1891
1891
  var PHASE_DEPENDENCIES = {
1892
1892
  designer: [],
1893
1893
  theme: ["designer"],
1894
1894
  api: [],
1895
- auth: [],
1896
1895
  data: ["api"],
1897
- pages: ["designer", "theme", "api", "data", "auth"],
1898
- dashboard: ["designer", "theme", "api", "data"],
1899
- workflow: ["auth"]
1896
+ // workflow: no hard deps uses service: references with Prism mock fallback
1897
+ // when API artifacts aren't available; roles come from user answers
1898
+ workflow: [],
1899
+ // pages: 'api' is transitive through 'data'; auth removed — page-otter has
1900
+ // graceful fallback and reads role names from workflow artifacts instead
1901
+ pages: ["designer", "theme", "data"],
1902
+ dashboard: ["designer", "theme", "data"],
1903
+ // auth is the terminal phase — reads all available artifacts at runtime;
1904
+ // no hard upstream requirements so it always runs and never gets skipped
1905
+ auth: []
1900
1906
  };
1901
1907
  var PHASE_ARTIFACT = {
1902
1908
  designer: "design-language.json",
@@ -3187,7 +3193,7 @@ var _checksums = /* @__PURE__ */ new Map([
3187
3193
  ],
3188
3194
  [
3189
3195
  "stackwright-pro-auth-otter.json",
3190
- "375e309642f433754e2791f08f5f31ecd6b69fb960ad72c65fd074104938b4b6"
3196
+ "e4314897e7dead94cbd07cf58cd9df1a2614a207c85bdddf9259121945903721"
3191
3197
  ],
3192
3198
  [
3193
3199
  "stackwright-pro-dashboard-otter.json",
@@ -3203,11 +3209,11 @@ var _checksums = /* @__PURE__ */ new Map([
3203
3209
  ],
3204
3210
  [
3205
3211
  "stackwright-pro-foreman-otter.json",
3206
- "cac784535a6a5b9ee8584f11f5312372dae2c92b97bf29135c6521d0d11f3d50"
3212
+ "e361cc30f013e1e423ebb4f59c54fd1452d049fabcc0539ce56b4a49cb5ec3ea"
3207
3213
  ],
3208
3214
  [
3209
3215
  "stackwright-pro-page-otter.json",
3210
- "b9981f6bf38c71af86191262a785c25776888fc4e1c64d8b094983bf852fecd6"
3216
+ "0323d9c9f4b4008b516d7615f24c0ebab9470bdf9cd37e1d48cfc06ccf6fccee"
3211
3217
  ],
3212
3218
  [
3213
3219
  "stackwright-pro-theme-otter.json",
@@ -3215,7 +3221,7 @@ var _checksums = /* @__PURE__ */ new Map([
3215
3221
  ],
3216
3222
  [
3217
3223
  "stackwright-pro-workflow-otter.json",
3218
- "16da6c109d0b5ee60d0a14e009dbeab02a7bbac3b0947795769da053565b9821"
3224
+ "ec203f222b2771f2bc3b29f340d881480c6a23188667e533476f4245e78453ef"
3219
3225
  ]
3220
3226
  ]);
3221
3227
  Object.freeze(_checksums);
@@ -3912,7 +3918,7 @@ var package_default = {
3912
3918
  "test:coverage": "vitest run --coverage"
3913
3919
  },
3914
3920
  name: "@stackwright-pro/mcp",
3915
- version: "0.2.0-alpha.27",
3921
+ version: "0.2.0-alpha.28",
3916
3922
  description: "MCP tools for Stackwright Pro - Data Explorer, Security, ISR, and Dashboard generation",
3917
3923
  license: "PROPRIETARY",
3918
3924
  main: "./dist/server.js",