@framingui/mcp-server 0.6.9 → 0.6.11

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 (103) hide show
  1. package/README.md +55 -12
  2. package/dist/cli/commands.d.ts +2 -0
  3. package/dist/cli/commands.d.ts.map +1 -0
  4. package/dist/cli/commands.js +20 -0
  5. package/dist/cli/commands.js.map +1 -0
  6. package/dist/cli/help.d.ts +5 -0
  7. package/dist/cli/help.d.ts.map +1 -0
  8. package/dist/cli/help.js +59 -0
  9. package/dist/cli/help.js.map +1 -0
  10. package/dist/cli/index.d.ts +1 -1
  11. package/dist/cli/index.js +47 -3
  12. package/dist/cli/index.js.map +1 -1
  13. package/dist/cli/init.d.ts.map +1 -1
  14. package/dist/cli/init.js +3 -13
  15. package/dist/cli/init.js.map +1 -1
  16. package/dist/cli/package-manager.d.ts +5 -0
  17. package/dist/cli/package-manager.d.ts.map +1 -0
  18. package/dist/cli/package-manager.js +34 -0
  19. package/dist/cli/package-manager.js.map +1 -0
  20. package/dist/cli/update.d.ts +8 -0
  21. package/dist/cli/update.d.ts.map +1 -0
  22. package/dist/cli/update.js +53 -0
  23. package/dist/cli/update.js.map +1 -0
  24. package/dist/commands/slash-command-adapters.d.ts +9 -0
  25. package/dist/commands/slash-command-adapters.d.ts.map +1 -0
  26. package/dist/commands/slash-command-adapters.js +116 -0
  27. package/dist/commands/slash-command-adapters.js.map +1 -0
  28. package/dist/commands/slash-command-registry.d.ts +31 -0
  29. package/dist/commands/slash-command-registry.d.ts.map +1 -0
  30. package/dist/commands/slash-command-registry.js +358 -0
  31. package/dist/commands/slash-command-registry.js.map +1 -0
  32. package/dist/data/component-props.d.ts +30 -0
  33. package/dist/data/component-props.d.ts.map +1 -0
  34. package/dist/data/component-props.js +537 -0
  35. package/dist/data/component-props.js.map +1 -0
  36. package/dist/data/component-registry.d.ts +30 -0
  37. package/dist/data/component-registry.d.ts.map +1 -0
  38. package/dist/data/component-registry.js +320 -0
  39. package/dist/data/component-registry.js.map +1 -0
  40. package/dist/data/examples/screen-examples.d.ts +38 -0
  41. package/dist/data/examples/screen-examples.d.ts.map +1 -0
  42. package/dist/data/examples/screen-examples.js +500 -0
  43. package/dist/data/examples/screen-examples.js.map +1 -0
  44. package/dist/index.js +7 -22
  45. package/dist/index.js.map +1 -1
  46. package/dist/prompts/a11y-workflow.d.ts +10 -0
  47. package/dist/prompts/a11y-workflow.d.ts.map +1 -0
  48. package/dist/prompts/a11y-workflow.js +46 -0
  49. package/dist/prompts/a11y-workflow.js.map +1 -0
  50. package/dist/prompts/command-help.d.ts +10 -0
  51. package/dist/prompts/command-help.d.ts.map +1 -0
  52. package/dist/prompts/command-help.js +101 -0
  53. package/dist/prompts/command-help.js.map +1 -0
  54. package/dist/prompts/doctor-workflow.d.ts +10 -0
  55. package/dist/prompts/doctor-workflow.d.ts.map +1 -0
  56. package/dist/prompts/doctor-workflow.js +39 -0
  57. package/dist/prompts/doctor-workflow.js.map +1 -0
  58. package/dist/prompts/getting-started.d.ts.map +1 -1
  59. package/dist/prompts/getting-started.js +18 -1
  60. package/dist/prompts/getting-started.js.map +1 -1
  61. package/dist/prompts/prompt-catalog.d.ts +26 -0
  62. package/dist/prompts/prompt-catalog.d.ts.map +1 -0
  63. package/dist/prompts/prompt-catalog.js +82 -0
  64. package/dist/prompts/prompt-catalog.js.map +1 -0
  65. package/dist/prompts/responsive-workflow.d.ts +10 -0
  66. package/dist/prompts/responsive-workflow.d.ts.map +1 -0
  67. package/dist/prompts/responsive-workflow.js +52 -0
  68. package/dist/prompts/responsive-workflow.js.map +1 -0
  69. package/dist/prompts/screen-workflow.d.ts +1 -1
  70. package/dist/prompts/screen-workflow.d.ts.map +1 -1
  71. package/dist/prompts/screen-workflow.js +42 -4
  72. package/dist/prompts/screen-workflow.js.map +1 -1
  73. package/dist/prompts/slash-commands.d.ts +10 -0
  74. package/dist/prompts/slash-commands.d.ts.map +1 -0
  75. package/dist/prompts/slash-commands.js +32 -0
  76. package/dist/prompts/slash-commands.js.map +1 -0
  77. package/dist/prompts/theme-swap-workflow.d.ts +10 -0
  78. package/dist/prompts/theme-swap-workflow.d.ts.map +1 -0
  79. package/dist/prompts/theme-swap-workflow.js +35 -0
  80. package/dist/prompts/theme-swap-workflow.js.map +1 -0
  81. package/dist/prompts/update-workflow.d.ts +10 -0
  82. package/dist/prompts/update-workflow.d.ts.map +1 -0
  83. package/dist/prompts/update-workflow.js +36 -0
  84. package/dist/prompts/update-workflow.js.map +1 -0
  85. package/dist/schemas/mcp-schemas.d.ts +204 -158
  86. package/dist/schemas/mcp-schemas.d.ts.map +1 -1
  87. package/dist/schemas/mcp-schemas.js +17 -0
  88. package/dist/schemas/mcp-schemas.js.map +1 -1
  89. package/dist/tools/generate-screen.d.ts.map +1 -1
  90. package/dist/tools/generate-screen.js +36 -28
  91. package/dist/tools/generate-screen.js.map +1 -1
  92. package/dist/tools/validate-environment.d.ts.map +1 -1
  93. package/dist/tools/validate-environment.js +30 -1
  94. package/dist/tools/validate-environment.js.map +1 -1
  95. package/dist/tools/validate-screen-definition.d.ts.map +1 -1
  96. package/dist/tools/validate-screen-definition.js +38 -95
  97. package/dist/tools/validate-screen-definition.js.map +1 -1
  98. package/dist/utils/style-contract-reader.d.ts +10 -0
  99. package/dist/utils/style-contract-reader.d.ts.map +1 -0
  100. package/dist/utils/style-contract-reader.js +67 -0
  101. package/dist/utils/style-contract-reader.js.map +1 -0
  102. package/package.json +19 -18
  103. package/LICENSE +0 -21
@@ -37,7 +37,6 @@ export declare const WhoamiOutputSchema: z.ZodObject<{
37
37
  }, "strip", z.ZodTypeAny, {
38
38
  success: boolean;
39
39
  message?: string | undefined;
40
- error?: string | undefined;
41
40
  plan?: "free" | "pro" | "enterprise" | "master" | undefined;
42
41
  isMaster?: boolean | undefined;
43
42
  licensedThemes?: string[] | undefined;
@@ -49,10 +48,10 @@ export declare const WhoamiOutputSchema: z.ZodObject<{
49
48
  is_trial?: boolean | undefined;
50
49
  trial_expires_at?: string | null | undefined;
51
50
  trial_days_left?: number | null | undefined;
51
+ error?: string | undefined;
52
52
  }, {
53
53
  success: boolean;
54
54
  message?: string | undefined;
55
- error?: string | undefined;
56
55
  plan?: "free" | "pro" | "enterprise" | "master" | undefined;
57
56
  isMaster?: boolean | undefined;
58
57
  licensedThemes?: string[] | undefined;
@@ -64,6 +63,7 @@ export declare const WhoamiOutputSchema: z.ZodObject<{
64
63
  is_trial?: boolean | undefined;
65
64
  trial_expires_at?: string | null | undefined;
66
65
  trial_days_left?: number | null | undefined;
66
+ error?: string | undefined;
67
67
  }>;
68
68
  export type WhoamiOutput = z.infer<typeof WhoamiOutputSchema>;
69
69
  /**
@@ -87,15 +87,15 @@ export declare const GenerateBlueprintInputSchema: z.ZodObject<{
87
87
  iconLibrary: z.ZodOptional<z.ZodString>;
88
88
  componentHints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
89
89
  }, "strip", z.ZodTypeAny, {
90
- themeId: string;
91
90
  description: string;
92
91
  layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
92
+ themeId: string;
93
93
  iconLibrary?: string | undefined;
94
94
  componentHints?: string[] | undefined;
95
95
  }, {
96
- themeId: string;
97
96
  description: string;
98
97
  layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
98
+ themeId: string;
99
99
  iconLibrary?: string | undefined;
100
100
  componentHints?: string[] | undefined;
101
101
  }>;
@@ -173,11 +173,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
173
173
  }>, "many">;
174
174
  timestamp: z.ZodNumber;
175
175
  }, "strip", z.ZodTypeAny, {
176
+ layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
176
177
  themeId: string;
178
+ iconLibrary: string;
177
179
  id: string;
178
180
  name: string;
179
- layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
180
- iconLibrary: string;
181
181
  components: {
182
182
  type: string;
183
183
  props?: Record<string, unknown>;
@@ -186,11 +186,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
186
186
  }[];
187
187
  timestamp: number;
188
188
  }, {
189
+ layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
189
190
  themeId: string;
191
+ iconLibrary: string;
190
192
  id: string;
191
193
  name: string;
192
- layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
193
- iconLibrary: string;
194
194
  components: {
195
195
  type: string;
196
196
  props?: Record<string, unknown>;
@@ -246,11 +246,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
246
246
  success: boolean;
247
247
  error?: string | undefined;
248
248
  blueprint?: {
249
+ layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
249
250
  themeId: string;
251
+ iconLibrary: string;
250
252
  id: string;
251
253
  name: string;
252
- layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
253
- iconLibrary: string;
254
254
  components: {
255
255
  type: string;
256
256
  props?: Record<string, unknown>;
@@ -275,11 +275,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
275
275
  success: boolean;
276
276
  error?: string | undefined;
277
277
  blueprint?: {
278
+ layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
278
279
  themeId: string;
280
+ iconLibrary: string;
279
281
  id: string;
280
282
  name: string;
281
- layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
282
- iconLibrary: string;
283
283
  components: {
284
284
  type: string;
285
285
  props?: Record<string, unknown>;
@@ -441,16 +441,16 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
441
441
  elevation: z.ZodOptional<z.ZodUnknown>;
442
442
  typography: z.ZodOptional<z.ZodUnknown>;
443
443
  }, "strip", z.ZodTypeAny, {
444
+ id: string;
445
+ name: string;
446
+ brandTone: string;
447
+ schemaVersion: string;
444
448
  tokens: {
445
449
  atomic?: unknown;
446
450
  semantic?: unknown;
447
451
  component?: unknown;
448
452
  recipes?: unknown;
449
453
  };
450
- id: string;
451
- name: string;
452
- brandTone: string;
453
- schemaVersion: string;
454
454
  description?: string | undefined;
455
455
  designDNA?: {
456
456
  moodKeywords: string[];
@@ -462,16 +462,16 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
462
462
  elevation?: unknown;
463
463
  typography?: unknown;
464
464
  }, {
465
+ id: string;
466
+ name: string;
467
+ brandTone: string;
468
+ schemaVersion: string;
465
469
  tokens: {
466
470
  atomic?: unknown;
467
471
  semantic?: unknown;
468
472
  component?: unknown;
469
473
  recipes?: unknown;
470
474
  };
471
- id: string;
472
- name: string;
473
- brandTone: string;
474
- schemaVersion: string;
475
475
  description?: string | undefined;
476
476
  designDNA?: {
477
477
  moodKeywords: string[];
@@ -487,17 +487,18 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
487
487
  error: z.ZodOptional<z.ZodString>;
488
488
  }, "strip", z.ZodTypeAny, {
489
489
  success: boolean;
490
+ error?: string | undefined;
490
491
  theme?: {
492
+ id: string;
493
+ name: string;
494
+ brandTone: string;
495
+ schemaVersion: string;
491
496
  tokens: {
492
497
  atomic?: unknown;
493
498
  semantic?: unknown;
494
499
  component?: unknown;
495
500
  recipes?: unknown;
496
501
  };
497
- id: string;
498
- name: string;
499
- brandTone: string;
500
- schemaVersion: string;
501
502
  description?: string | undefined;
502
503
  designDNA?: {
503
504
  moodKeywords: string[];
@@ -510,20 +511,20 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
510
511
  typography?: unknown;
511
512
  } | undefined;
512
513
  css?: string | undefined;
513
- error?: string | undefined;
514
514
  }, {
515
515
  success: boolean;
516
+ error?: string | undefined;
516
517
  theme?: {
518
+ id: string;
519
+ name: string;
520
+ brandTone: string;
521
+ schemaVersion: string;
517
522
  tokens: {
518
523
  atomic?: unknown;
519
524
  semantic?: unknown;
520
525
  component?: unknown;
521
526
  recipes?: unknown;
522
527
  };
523
- id: string;
524
- name: string;
525
- brandTone: string;
526
- schemaVersion: string;
527
528
  description?: string | undefined;
528
529
  designDNA?: {
529
530
  moodKeywords: string[];
@@ -536,7 +537,6 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
536
537
  typography?: unknown;
537
538
  } | undefined;
538
539
  css?: string | undefined;
539
- error?: string | undefined;
540
540
  }>;
541
541
  export type PreviewThemeOutput = z.infer<typeof PreviewThemeOutputSchema>;
542
542
  /**
@@ -614,8 +614,8 @@ export declare const HybridExportInputSchema: z.ZodObject<{
614
614
  }, {
615
615
  format: "jsx" | "tsx" | "vue";
616
616
  themeId?: string | undefined;
617
- includeCSS?: boolean | undefined;
618
617
  blueprint?: unknown;
618
+ includeCSS?: boolean | undefined;
619
619
  componentName?: string | undefined;
620
620
  componentDescription?: string | undefined;
621
621
  tier?: "tier1" | "tier2" | "auto" | undefined;
@@ -668,24 +668,24 @@ export declare const HybridExportOutputSchema: z.ZodObject<{
668
668
  }, "strip", z.ZodTypeAny, {
669
669
  success: boolean;
670
670
  code?: string | undefined;
671
- css?: string | undefined;
672
671
  error?: string | undefined;
673
672
  components?: {
674
673
  code: string;
675
674
  componentName: string;
676
675
  source: "tier1-ui" | "tier1-example" | "tier2-llm" | "tier2-mock";
677
676
  }[] | undefined;
677
+ css?: string | undefined;
678
678
  tierUsed?: "tier1" | "tier2" | "auto" | undefined;
679
679
  }, {
680
680
  success: boolean;
681
681
  code?: string | undefined;
682
- css?: string | undefined;
683
682
  error?: string | undefined;
684
683
  components?: {
685
684
  code: string;
686
685
  componentName: string;
687
686
  source: "tier1-ui" | "tier1-example" | "tier2-llm" | "tier2-mock";
688
687
  }[] | undefined;
688
+ css?: string | undefined;
689
689
  tierUsed?: "tier1" | "tier2" | "auto" | undefined;
690
690
  }>;
691
691
  export type HybridExportOutput = z.infer<typeof HybridExportOutputSchema>;
@@ -990,15 +990,15 @@ export declare const TokenMetadataSchema: z.ZodObject<{
990
990
  }, "strip", z.ZodTypeAny, {
991
991
  id: string;
992
992
  type?: string | undefined;
993
- name?: string | undefined;
994
993
  description?: string | undefined;
994
+ name?: string | undefined;
995
995
  platform?: string | undefined;
996
996
  purpose?: string | undefined;
997
997
  }, {
998
998
  id: string;
999
999
  type?: string | undefined;
1000
- name?: string | undefined;
1001
1000
  description?: string | undefined;
1001
+ name?: string | undefined;
1002
1002
  platform?: string | undefined;
1003
1003
  purpose?: string | undefined;
1004
1004
  }>;
@@ -1018,15 +1018,15 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1018
1018
  }, "strip", z.ZodTypeAny, {
1019
1019
  id: string;
1020
1020
  type?: string | undefined;
1021
- name?: string | undefined;
1022
1021
  description?: string | undefined;
1022
+ name?: string | undefined;
1023
1023
  platform?: string | undefined;
1024
1024
  purpose?: string | undefined;
1025
1025
  }, {
1026
1026
  id: string;
1027
1027
  type?: string | undefined;
1028
- name?: string | undefined;
1029
1028
  description?: string | undefined;
1029
+ name?: string | undefined;
1030
1030
  platform?: string | undefined;
1031
1031
  purpose?: string | undefined;
1032
1032
  }>, "many">>;
@@ -1040,15 +1040,15 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1040
1040
  }, "strip", z.ZodTypeAny, {
1041
1041
  id: string;
1042
1042
  type?: string | undefined;
1043
- name?: string | undefined;
1044
1043
  description?: string | undefined;
1044
+ name?: string | undefined;
1045
1045
  platform?: string | undefined;
1046
1046
  purpose?: string | undefined;
1047
1047
  }, {
1048
1048
  id: string;
1049
1049
  type?: string | undefined;
1050
- name?: string | undefined;
1051
1050
  description?: string | undefined;
1051
+ name?: string | undefined;
1052
1052
  platform?: string | undefined;
1053
1053
  purpose?: string | undefined;
1054
1054
  }>, "many">>;
@@ -1062,15 +1062,15 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1062
1062
  }, "strip", z.ZodTypeAny, {
1063
1063
  id: string;
1064
1064
  type?: string | undefined;
1065
- name?: string | undefined;
1066
1065
  description?: string | undefined;
1066
+ name?: string | undefined;
1067
1067
  platform?: string | undefined;
1068
1068
  purpose?: string | undefined;
1069
1069
  }, {
1070
1070
  id: string;
1071
1071
  type?: string | undefined;
1072
- name?: string | undefined;
1073
1072
  description?: string | undefined;
1073
+ name?: string | undefined;
1074
1074
  platform?: string | undefined;
1075
1075
  purpose?: string | undefined;
1076
1076
  }>, "many">>;
@@ -1091,24 +1091,24 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1091
1091
  shells?: {
1092
1092
  id: string;
1093
1093
  type?: string | undefined;
1094
- name?: string | undefined;
1095
1094
  description?: string | undefined;
1095
+ name?: string | undefined;
1096
1096
  platform?: string | undefined;
1097
1097
  purpose?: string | undefined;
1098
1098
  }[] | undefined;
1099
1099
  pages?: {
1100
1100
  id: string;
1101
1101
  type?: string | undefined;
1102
- name?: string | undefined;
1103
1102
  description?: string | undefined;
1103
+ name?: string | undefined;
1104
1104
  platform?: string | undefined;
1105
1105
  purpose?: string | undefined;
1106
1106
  }[] | undefined;
1107
1107
  sections?: {
1108
1108
  id: string;
1109
1109
  type?: string | undefined;
1110
- name?: string | undefined;
1111
1110
  description?: string | undefined;
1111
+ name?: string | undefined;
1112
1112
  platform?: string | undefined;
1113
1113
  purpose?: string | undefined;
1114
1114
  }[] | undefined;
@@ -1122,24 +1122,24 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1122
1122
  shells?: {
1123
1123
  id: string;
1124
1124
  type?: string | undefined;
1125
- name?: string | undefined;
1126
1125
  description?: string | undefined;
1126
+ name?: string | undefined;
1127
1127
  platform?: string | undefined;
1128
1128
  purpose?: string | undefined;
1129
1129
  }[] | undefined;
1130
1130
  pages?: {
1131
1131
  id: string;
1132
1132
  type?: string | undefined;
1133
- name?: string | undefined;
1134
1133
  description?: string | undefined;
1134
+ name?: string | undefined;
1135
1135
  platform?: string | undefined;
1136
1136
  purpose?: string | undefined;
1137
1137
  }[] | undefined;
1138
1138
  sections?: {
1139
1139
  id: string;
1140
1140
  type?: string | undefined;
1141
- name?: string | undefined;
1142
1141
  description?: string | undefined;
1142
+ name?: string | undefined;
1143
1143
  platform?: string | undefined;
1144
1144
  purpose?: string | undefined;
1145
1145
  }[] | undefined;
@@ -1172,17 +1172,17 @@ export declare const IconLibraryMetaSchema: z.ZodObject<{
1172
1172
  totalIcons: z.ZodNumber;
1173
1173
  categories: z.ZodArray<z.ZodString, "many">;
1174
1174
  }, "strip", z.ZodTypeAny, {
1175
+ description: string;
1175
1176
  id: string;
1176
1177
  name: string;
1177
- description: string;
1178
1178
  version: string;
1179
1179
  license: string;
1180
1180
  totalIcons: number;
1181
1181
  categories: string[];
1182
1182
  }, {
1183
+ description: string;
1183
1184
  id: string;
1184
1185
  name: string;
1185
- description: string;
1186
1186
  version: string;
1187
1187
  license: string;
1188
1188
  totalIcons: number;
@@ -1203,17 +1203,17 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
1203
1203
  totalIcons: z.ZodNumber;
1204
1204
  categories: z.ZodArray<z.ZodString, "many">;
1205
1205
  }, "strip", z.ZodTypeAny, {
1206
+ description: string;
1206
1207
  id: string;
1207
1208
  name: string;
1208
- description: string;
1209
1209
  version: string;
1210
1210
  license: string;
1211
1211
  totalIcons: number;
1212
1212
  categories: string[];
1213
1213
  }, {
1214
+ description: string;
1214
1215
  id: string;
1215
1216
  name: string;
1216
- description: string;
1217
1217
  version: string;
1218
1218
  license: string;
1219
1219
  totalIcons: number;
@@ -1226,9 +1226,9 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
1226
1226
  error?: string | undefined;
1227
1227
  count?: number | undefined;
1228
1228
  libraries?: {
1229
+ description: string;
1229
1230
  id: string;
1230
1231
  name: string;
1231
- description: string;
1232
1232
  version: string;
1233
1233
  license: string;
1234
1234
  totalIcons: number;
@@ -1239,9 +1239,9 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
1239
1239
  error?: string | undefined;
1240
1240
  count?: number | undefined;
1241
1241
  libraries?: {
1242
+ description: string;
1242
1243
  id: string;
1243
1244
  name: string;
1244
- description: string;
1245
1245
  version: string;
1246
1246
  license: string;
1247
1247
  totalIcons: number;
@@ -1397,9 +1397,9 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
1397
1397
  defaultVariant: z.ZodOptional<z.ZodString>;
1398
1398
  iconSample: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1399
1399
  }, "strip", z.ZodTypeAny, {
1400
+ description: string;
1400
1401
  id: string;
1401
1402
  name: string;
1402
- description: string;
1403
1403
  version: string;
1404
1404
  license: string;
1405
1405
  totalIcons: number;
@@ -1429,9 +1429,9 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
1429
1429
  defaultVariant?: string | undefined;
1430
1430
  iconSample?: string[] | undefined;
1431
1431
  }, {
1432
+ description: string;
1432
1433
  id: string;
1433
1434
  name: string;
1434
- description: string;
1435
1435
  version: string;
1436
1436
  license: string;
1437
1437
  totalIcons: number;
@@ -1466,9 +1466,9 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
1466
1466
  success: boolean;
1467
1467
  error?: string | undefined;
1468
1468
  library?: {
1469
+ description: string;
1469
1470
  id: string;
1470
1471
  name: string;
1471
- description: string;
1472
1472
  version: string;
1473
1473
  license: string;
1474
1474
  totalIcons: number;
@@ -1502,9 +1502,9 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
1502
1502
  success: boolean;
1503
1503
  error?: string | undefined;
1504
1504
  library?: {
1505
+ description: string;
1505
1506
  id: string;
1506
1507
  name: string;
1507
- description: string;
1508
1508
  version: string;
1509
1509
  license: string;
1510
1510
  totalIcons: number;
@@ -1553,8 +1553,8 @@ export declare const ListComponentsInputSchema: z.ZodObject<{
1553
1553
  category: "all" | "core" | "complex" | "advanced";
1554
1554
  search?: string | undefined;
1555
1555
  }, {
1556
- search?: string | undefined;
1557
1556
  category?: "all" | "core" | "complex" | "advanced" | undefined;
1557
+ search?: string | undefined;
1558
1558
  }>;
1559
1559
  export type ListComponentsInput = z.infer<typeof ListComponentsInputSchema>;
1560
1560
  /**
@@ -1569,18 +1569,18 @@ export declare const ComponentMetaSchema: z.ZodObject<{
1569
1569
  hasSubComponents: z.ZodBoolean;
1570
1570
  tier: z.ZodNumber;
1571
1571
  }, "strip", z.ZodTypeAny, {
1572
- id: string;
1573
- name: string;
1574
1572
  description: string;
1575
1573
  category: "core" | "complex" | "advanced";
1574
+ id: string;
1575
+ name: string;
1576
1576
  tier: number;
1577
1577
  variantsCount: number;
1578
1578
  hasSubComponents: boolean;
1579
1579
  }, {
1580
- id: string;
1581
- name: string;
1582
1580
  description: string;
1583
1581
  category: "core" | "complex" | "advanced";
1582
+ id: string;
1583
+ name: string;
1584
1584
  tier: number;
1585
1585
  variantsCount: number;
1586
1586
  hasSubComponents: boolean;
@@ -1600,18 +1600,18 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
1600
1600
  hasSubComponents: z.ZodBoolean;
1601
1601
  tier: z.ZodNumber;
1602
1602
  }, "strip", z.ZodTypeAny, {
1603
- id: string;
1604
- name: string;
1605
1603
  description: string;
1606
1604
  category: "core" | "complex" | "advanced";
1605
+ id: string;
1606
+ name: string;
1607
1607
  tier: number;
1608
1608
  variantsCount: number;
1609
1609
  hasSubComponents: boolean;
1610
1610
  }, {
1611
- id: string;
1612
- name: string;
1613
1611
  description: string;
1614
1612
  category: "core" | "complex" | "advanced";
1613
+ id: string;
1614
+ name: string;
1615
1615
  tier: number;
1616
1616
  variantsCount: number;
1617
1617
  hasSubComponents: boolean;
@@ -1635,10 +1635,10 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
1635
1635
  success: boolean;
1636
1636
  error?: string | undefined;
1637
1637
  components?: {
1638
- id: string;
1639
- name: string;
1640
1638
  description: string;
1641
1639
  category: "core" | "complex" | "advanced";
1640
+ id: string;
1641
+ name: string;
1642
1642
  tier: number;
1643
1643
  variantsCount: number;
1644
1644
  hasSubComponents: boolean;
@@ -1653,10 +1653,10 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
1653
1653
  success: boolean;
1654
1654
  error?: string | undefined;
1655
1655
  components?: {
1656
- id: string;
1657
- name: string;
1658
1656
  description: string;
1659
1657
  category: "core" | "complex" | "advanced";
1658
+ id: string;
1659
+ name: string;
1660
1660
  tier: number;
1661
1661
  variantsCount: number;
1662
1662
  hasSubComponents: boolean;
@@ -1814,10 +1814,10 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1814
1814
  }>, "many">>;
1815
1815
  accessibility: z.ZodOptional<z.ZodString>;
1816
1816
  }, "strip", z.ZodTypeAny, {
1817
- id: string;
1818
- name: string;
1819
1817
  description: string;
1820
1818
  category: "core" | "complex" | "advanced";
1819
+ id: string;
1820
+ name: string;
1821
1821
  tier: number;
1822
1822
  importStatement: string;
1823
1823
  props: {
@@ -1844,10 +1844,10 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1844
1844
  }[] | undefined;
1845
1845
  accessibility?: string | undefined;
1846
1846
  }, {
1847
- id: string;
1848
- name: string;
1849
1847
  description: string;
1850
1848
  category: "core" | "complex" | "advanced";
1849
+ id: string;
1850
+ name: string;
1851
1851
  tier: number;
1852
1852
  importStatement: string;
1853
1853
  props: {
@@ -1877,11 +1877,12 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1877
1877
  error: z.ZodOptional<z.ZodString>;
1878
1878
  }, "strip", z.ZodTypeAny, {
1879
1879
  success: boolean;
1880
+ error?: string | undefined;
1880
1881
  component?: {
1881
- id: string;
1882
- name: string;
1883
1882
  description: string;
1884
1883
  category: "core" | "complex" | "advanced";
1884
+ id: string;
1885
+ name: string;
1885
1886
  tier: number;
1886
1887
  importStatement: string;
1887
1888
  props: {
@@ -1908,14 +1909,14 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1908
1909
  }[] | undefined;
1909
1910
  accessibility?: string | undefined;
1910
1911
  } | undefined;
1911
- error?: string | undefined;
1912
1912
  }, {
1913
1913
  success: boolean;
1914
+ error?: string | undefined;
1914
1915
  component?: {
1915
- id: string;
1916
- name: string;
1917
1916
  description: string;
1918
1917
  category: "core" | "complex" | "advanced";
1918
+ id: string;
1919
+ name: string;
1919
1920
  tier: number;
1920
1921
  importStatement: string;
1921
1922
  props: {
@@ -1942,7 +1943,6 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1942
1943
  }[] | undefined;
1943
1944
  accessibility?: string | undefined;
1944
1945
  } | undefined;
1945
- error?: string | undefined;
1946
1946
  }>;
1947
1947
  export type PreviewComponentOutput = z.infer<typeof PreviewComponentOutputSchema>;
1948
1948
  /**
@@ -1958,11 +1958,11 @@ export declare const ListScreenTemplatesInputSchema: z.ZodObject<{
1958
1958
  category: z.ZodDefault<z.ZodOptional<z.ZodEnum<["auth", "dashboard", "form", "marketing", "feedback", "all"]>>>;
1959
1959
  search: z.ZodOptional<z.ZodString>;
1960
1960
  }, "strip", z.ZodTypeAny, {
1961
- category: "auth" | "dashboard" | "all" | "form" | "marketing" | "feedback";
1961
+ category: "dashboard" | "all" | "auth" | "form" | "marketing" | "feedback";
1962
1962
  search?: string | undefined;
1963
1963
  }, {
1964
+ category?: "dashboard" | "all" | "auth" | "form" | "marketing" | "feedback" | undefined;
1964
1965
  search?: string | undefined;
1965
- category?: "auth" | "dashboard" | "all" | "form" | "marketing" | "feedback" | undefined;
1966
1966
  }>;
1967
1967
  export type ListScreenTemplatesInput = z.infer<typeof ListScreenTemplatesInputSchema>;
1968
1968
  /**
@@ -1983,19 +1983,19 @@ export declare const TemplateMetaSchema: z.ZodObject<{
1983
1983
  version: z.ZodString;
1984
1984
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1985
1985
  }, "strip", z.ZodTypeAny, {
1986
+ description: string;
1987
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
1986
1988
  id: string;
1987
1989
  name: string;
1988
- description: string;
1989
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
1990
1990
  version: string;
1991
1991
  requiredComponentsCount: number;
1992
1992
  layoutType: "centered" | "sidebar" | "full";
1993
1993
  tags?: string[] | undefined;
1994
1994
  }, {
1995
+ description: string;
1996
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
1995
1997
  id: string;
1996
1998
  name: string;
1997
- description: string;
1998
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
1999
1999
  version: string;
2000
2000
  requiredComponentsCount: number;
2001
2001
  layoutType: "centered" | "sidebar" | "full";
@@ -2017,19 +2017,19 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
2017
2017
  version: z.ZodString;
2018
2018
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2019
2019
  }, "strip", z.ZodTypeAny, {
2020
+ description: string;
2021
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2020
2022
  id: string;
2021
2023
  name: string;
2022
- description: string;
2023
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2024
2024
  version: string;
2025
2025
  requiredComponentsCount: number;
2026
2026
  layoutType: "centered" | "sidebar" | "full";
2027
2027
  tags?: string[] | undefined;
2028
2028
  }, {
2029
+ description: string;
2030
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2029
2031
  id: string;
2030
2032
  name: string;
2031
- description: string;
2032
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2033
2033
  version: string;
2034
2034
  requiredComponentsCount: number;
2035
2035
  layoutType: "centered" | "sidebar" | "full";
@@ -2043,14 +2043,14 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
2043
2043
  marketing: z.ZodNumber;
2044
2044
  feedback: z.ZodNumber;
2045
2045
  }, "strip", z.ZodTypeAny, {
2046
- auth: number;
2047
2046
  dashboard: number;
2047
+ auth: number;
2048
2048
  form: number;
2049
2049
  marketing: number;
2050
2050
  feedback: number;
2051
2051
  }, {
2052
- auth: number;
2053
2052
  dashboard: number;
2053
+ auth: number;
2054
2054
  form: number;
2055
2055
  marketing: number;
2056
2056
  feedback: number;
@@ -2061,17 +2061,17 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
2061
2061
  error?: string | undefined;
2062
2062
  count?: number | undefined;
2063
2063
  categories?: {
2064
- auth: number;
2065
2064
  dashboard: number;
2065
+ auth: number;
2066
2066
  form: number;
2067
2067
  marketing: number;
2068
2068
  feedback: number;
2069
2069
  } | undefined;
2070
2070
  templates?: {
2071
+ description: string;
2072
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2071
2073
  id: string;
2072
2074
  name: string;
2073
- description: string;
2074
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2075
2075
  version: string;
2076
2076
  requiredComponentsCount: number;
2077
2077
  layoutType: "centered" | "sidebar" | "full";
@@ -2082,17 +2082,17 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
2082
2082
  error?: string | undefined;
2083
2083
  count?: number | undefined;
2084
2084
  categories?: {
2085
- auth: number;
2086
2085
  dashboard: number;
2086
+ auth: number;
2087
2087
  form: number;
2088
2088
  marketing: number;
2089
2089
  feedback: number;
2090
2090
  } | undefined;
2091
2091
  templates?: {
2092
+ description: string;
2093
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2092
2094
  id: string;
2093
2095
  name: string;
2094
- description: string;
2095
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2096
2096
  version: string;
2097
2097
  requiredComponentsCount: number;
2098
2098
  layoutType: "centered" | "sidebar" | "full";
@@ -2446,8 +2446,6 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2446
2446
  updated: z.ZodString;
2447
2447
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2448
2448
  }, "strip", z.ZodTypeAny, {
2449
- id: string;
2450
- name: string;
2451
2449
  description: string;
2452
2450
  layout: {
2453
2451
  type: "centered" | "sidebar" | "full";
@@ -2469,7 +2467,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2469
2467
  };
2470
2468
  } | undefined;
2471
2469
  };
2472
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2470
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2471
+ id: string;
2472
+ name: string;
2473
2473
  version: string;
2474
2474
  importStatement: string;
2475
2475
  skeleton: {
@@ -2497,8 +2497,6 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2497
2497
  slots?: string[] | undefined;
2498
2498
  } | undefined;
2499
2499
  }, {
2500
- id: string;
2501
- name: string;
2502
2500
  description: string;
2503
2501
  layout: {
2504
2502
  type: "centered" | "sidebar" | "full";
@@ -2520,7 +2518,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2520
2518
  };
2521
2519
  } | undefined;
2522
2520
  };
2523
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2521
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2522
+ id: string;
2523
+ name: string;
2524
2524
  version: string;
2525
2525
  importStatement: string;
2526
2526
  skeleton: {
@@ -2553,8 +2553,6 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2553
2553
  success: boolean;
2554
2554
  error?: string | undefined;
2555
2555
  template?: {
2556
- id: string;
2557
- name: string;
2558
2556
  description: string;
2559
2557
  layout: {
2560
2558
  type: "centered" | "sidebar" | "full";
@@ -2576,7 +2574,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2576
2574
  };
2577
2575
  } | undefined;
2578
2576
  };
2579
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2577
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2578
+ id: string;
2579
+ name: string;
2580
2580
  version: string;
2581
2581
  importStatement: string;
2582
2582
  skeleton: {
@@ -2608,8 +2608,6 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2608
2608
  success: boolean;
2609
2609
  error?: string | undefined;
2610
2610
  template?: {
2611
- id: string;
2612
- name: string;
2613
2611
  description: string;
2614
2612
  layout: {
2615
2613
  type: "centered" | "sidebar" | "full";
@@ -2631,7 +2629,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2631
2629
  };
2632
2630
  } | undefined;
2633
2631
  };
2634
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2632
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2633
+ id: string;
2634
+ name: string;
2635
2635
  version: string;
2636
2636
  importStatement: string;
2637
2637
  skeleton: {
@@ -2805,10 +2805,10 @@ export declare const ContextComponentInfoSchema: z.ZodObject<{
2805
2805
  description?: string | undefined;
2806
2806
  }>, "many">>;
2807
2807
  }, "strip", z.ZodTypeAny, {
2808
- id: string;
2809
- name: string;
2810
2808
  description: string;
2811
2809
  category: "core" | "complex" | "advanced";
2810
+ id: string;
2811
+ name: string;
2812
2812
  importStatement: string;
2813
2813
  props: {
2814
2814
  type: string;
@@ -2823,10 +2823,10 @@ export declare const ContextComponentInfoSchema: z.ZodObject<{
2823
2823
  description?: string | undefined;
2824
2824
  }[] | undefined;
2825
2825
  }, {
2826
- id: string;
2827
- name: string;
2828
2826
  description: string;
2829
2827
  category: "core" | "complex" | "advanced";
2828
+ id: string;
2829
+ name: string;
2830
2830
  importStatement: string;
2831
2831
  props: {
2832
2832
  type: string;
@@ -2905,9 +2905,9 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
2905
2905
  author?: string | undefined;
2906
2906
  }>>;
2907
2907
  }, "strip", z.ZodTypeAny, {
2908
- id: string;
2909
2908
  shell: string;
2910
2909
  page: string;
2910
+ id: string;
2911
2911
  sections: {
2912
2912
  id: string;
2913
2913
  components: {
@@ -2918,9 +2918,9 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
2918
2918
  pattern: string;
2919
2919
  slot?: string | undefined;
2920
2920
  }[];
2921
+ description?: string | undefined;
2921
2922
  themeId?: string | undefined;
2922
2923
  name?: string | undefined;
2923
- description?: string | undefined;
2924
2924
  metadata?: {
2925
2925
  version?: string | undefined;
2926
2926
  created?: string | undefined;
@@ -2928,9 +2928,9 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
2928
2928
  author?: string | undefined;
2929
2929
  } | undefined;
2930
2930
  }, {
2931
- id: string;
2932
2931
  shell: string;
2933
2932
  page: string;
2933
+ id: string;
2934
2934
  sections: {
2935
2935
  id: string;
2936
2936
  components: {
@@ -2941,9 +2941,9 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
2941
2941
  pattern: string;
2942
2942
  slot?: string | undefined;
2943
2943
  }[];
2944
+ description?: string | undefined;
2944
2945
  themeId?: string | undefined;
2945
2946
  name?: string | undefined;
2946
- description?: string | undefined;
2947
2947
  metadata?: {
2948
2948
  version?: string | undefined;
2949
2949
  created?: string | undefined;
@@ -3018,9 +3018,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3018
3018
  author?: string | undefined;
3019
3019
  }>>;
3020
3020
  }, "strip", z.ZodTypeAny, {
3021
- id: string;
3022
3021
  shell: string;
3023
3022
  page: string;
3023
+ id: string;
3024
3024
  sections: {
3025
3025
  id: string;
3026
3026
  components: {
@@ -3031,9 +3031,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3031
3031
  pattern: string;
3032
3032
  slot?: string | undefined;
3033
3033
  }[];
3034
+ description?: string | undefined;
3034
3035
  themeId?: string | undefined;
3035
3036
  name?: string | undefined;
3036
- description?: string | undefined;
3037
3037
  metadata?: {
3038
3038
  version?: string | undefined;
3039
3039
  created?: string | undefined;
@@ -3041,9 +3041,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3041
3041
  author?: string | undefined;
3042
3042
  } | undefined;
3043
3043
  }, {
3044
- id: string;
3045
3044
  shell: string;
3046
3045
  page: string;
3046
+ id: string;
3047
3047
  sections: {
3048
3048
  id: string;
3049
3049
  components: {
@@ -3054,9 +3054,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3054
3054
  pattern: string;
3055
3055
  slot?: string | undefined;
3056
3056
  }[];
3057
+ description?: string | undefined;
3057
3058
  themeId?: string | undefined;
3058
3059
  name?: string | undefined;
3059
- description?: string | undefined;
3060
3060
  metadata?: {
3061
3061
  version?: string | undefined;
3062
3062
  created?: string | undefined;
@@ -3065,12 +3065,12 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3065
3065
  } | undefined;
3066
3066
  }>;
3067
3067
  }, "strip", z.ZodTypeAny, {
3068
- name: string;
3069
3068
  description: string;
3069
+ name: string;
3070
3070
  definition: {
3071
- id: string;
3072
3071
  shell: string;
3073
3072
  page: string;
3073
+ id: string;
3074
3074
  sections: {
3075
3075
  id: string;
3076
3076
  components: {
@@ -3081,9 +3081,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3081
3081
  pattern: string;
3082
3082
  slot?: string | undefined;
3083
3083
  }[];
3084
+ description?: string | undefined;
3084
3085
  themeId?: string | undefined;
3085
3086
  name?: string | undefined;
3086
- description?: string | undefined;
3087
3087
  metadata?: {
3088
3088
  version?: string | undefined;
3089
3089
  created?: string | undefined;
@@ -3092,12 +3092,12 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3092
3092
  } | undefined;
3093
3093
  };
3094
3094
  }, {
3095
- name: string;
3096
3095
  description: string;
3096
+ name: string;
3097
3097
  definition: {
3098
- id: string;
3099
3098
  shell: string;
3100
3099
  page: string;
3100
+ id: string;
3101
3101
  sections: {
3102
3102
  id: string;
3103
3103
  components: {
@@ -3108,9 +3108,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3108
3108
  pattern: string;
3109
3109
  slot?: string | undefined;
3110
3110
  }[];
3111
+ description?: string | undefined;
3111
3112
  themeId?: string | undefined;
3112
3113
  name?: string | undefined;
3113
- description?: string | undefined;
3114
3114
  metadata?: {
3115
3115
  version?: string | undefined;
3116
3116
  created?: string | undefined;
@@ -3147,12 +3147,12 @@ export declare const GenerationHintSchema: z.ZodObject<{
3147
3147
  example: z.ZodOptional<z.ZodString>;
3148
3148
  }, "strip", z.ZodTypeAny, {
3149
3149
  message: string;
3150
- category: "component" | "layout" | "accessibility" | "styling" | "best-practice";
3150
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3151
3151
  priority: "high" | "medium" | "low";
3152
3152
  example?: string | undefined;
3153
3153
  }, {
3154
3154
  message: string;
3155
- category: "component" | "layout" | "accessibility" | "styling" | "best-practice";
3155
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3156
3156
  priority: "high" | "medium" | "low";
3157
3157
  example?: string | undefined;
3158
3158
  }>;
@@ -3356,10 +3356,10 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3356
3356
  description?: string | undefined;
3357
3357
  }>, "many">>;
3358
3358
  }, "strip", z.ZodTypeAny, {
3359
- id: string;
3360
- name: string;
3361
3359
  description: string;
3362
3360
  category: "core" | "complex" | "advanced";
3361
+ id: string;
3362
+ name: string;
3363
3363
  importStatement: string;
3364
3364
  props: {
3365
3365
  type: string;
@@ -3374,10 +3374,10 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3374
3374
  description?: string | undefined;
3375
3375
  }[] | undefined;
3376
3376
  }, {
3377
- id: string;
3378
- name: string;
3379
3377
  description: string;
3380
3378
  category: "core" | "complex" | "advanced";
3379
+ id: string;
3380
+ name: string;
3381
3381
  importStatement: string;
3382
3382
  props: {
3383
3383
  type: string;
@@ -3465,9 +3465,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3465
3465
  author?: string | undefined;
3466
3466
  }>>;
3467
3467
  }, "strip", z.ZodTypeAny, {
3468
- id: string;
3469
3468
  shell: string;
3470
3469
  page: string;
3470
+ id: string;
3471
3471
  sections: {
3472
3472
  id: string;
3473
3473
  components: {
@@ -3478,9 +3478,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3478
3478
  pattern: string;
3479
3479
  slot?: string | undefined;
3480
3480
  }[];
3481
+ description?: string | undefined;
3481
3482
  themeId?: string | undefined;
3482
3483
  name?: string | undefined;
3483
- description?: string | undefined;
3484
3484
  metadata?: {
3485
3485
  version?: string | undefined;
3486
3486
  created?: string | undefined;
@@ -3488,9 +3488,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3488
3488
  author?: string | undefined;
3489
3489
  } | undefined;
3490
3490
  }, {
3491
- id: string;
3492
3491
  shell: string;
3493
3492
  page: string;
3493
+ id: string;
3494
3494
  sections: {
3495
3495
  id: string;
3496
3496
  components: {
@@ -3501,9 +3501,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3501
3501
  pattern: string;
3502
3502
  slot?: string | undefined;
3503
3503
  }[];
3504
+ description?: string | undefined;
3504
3505
  themeId?: string | undefined;
3505
3506
  name?: string | undefined;
3506
- description?: string | undefined;
3507
3507
  metadata?: {
3508
3508
  version?: string | undefined;
3509
3509
  created?: string | undefined;
@@ -3512,12 +3512,12 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3512
3512
  } | undefined;
3513
3513
  }>;
3514
3514
  }, "strip", z.ZodTypeAny, {
3515
- name: string;
3516
3515
  description: string;
3516
+ name: string;
3517
3517
  definition: {
3518
- id: string;
3519
3518
  shell: string;
3520
3519
  page: string;
3520
+ id: string;
3521
3521
  sections: {
3522
3522
  id: string;
3523
3523
  components: {
@@ -3528,9 +3528,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3528
3528
  pattern: string;
3529
3529
  slot?: string | undefined;
3530
3530
  }[];
3531
+ description?: string | undefined;
3531
3532
  themeId?: string | undefined;
3532
3533
  name?: string | undefined;
3533
- description?: string | undefined;
3534
3534
  metadata?: {
3535
3535
  version?: string | undefined;
3536
3536
  created?: string | undefined;
@@ -3539,12 +3539,12 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3539
3539
  } | undefined;
3540
3540
  };
3541
3541
  }, {
3542
- name: string;
3543
3542
  description: string;
3543
+ name: string;
3544
3544
  definition: {
3545
- id: string;
3546
3545
  shell: string;
3547
3546
  page: string;
3547
+ id: string;
3548
3548
  sections: {
3549
3549
  id: string;
3550
3550
  components: {
@@ -3555,9 +3555,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3555
3555
  pattern: string;
3556
3556
  slot?: string | undefined;
3557
3557
  }[];
3558
+ description?: string | undefined;
3558
3559
  themeId?: string | undefined;
3559
3560
  name?: string | undefined;
3560
- description?: string | undefined;
3561
3561
  metadata?: {
3562
3562
  version?: string | undefined;
3563
3563
  created?: string | undefined;
@@ -3586,12 +3586,12 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3586
3586
  example: z.ZodOptional<z.ZodString>;
3587
3587
  }, "strip", z.ZodTypeAny, {
3588
3588
  message: string;
3589
- category: "component" | "layout" | "accessibility" | "styling" | "best-practice";
3589
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3590
3590
  priority: "high" | "medium" | "low";
3591
3591
  example?: string | undefined;
3592
3592
  }, {
3593
3593
  message: string;
3594
- category: "component" | "layout" | "accessibility" | "styling" | "best-practice";
3594
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3595
3595
  priority: "high" | "medium" | "low";
3596
3596
  example?: string | undefined;
3597
3597
  }>, "many">>;
@@ -3646,10 +3646,10 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3646
3646
  success: boolean;
3647
3647
  error?: string | undefined;
3648
3648
  components?: {
3649
- id: string;
3650
- name: string;
3651
3649
  description: string;
3652
3650
  category: "core" | "complex" | "advanced";
3651
+ id: string;
3652
+ name: string;
3653
3653
  importStatement: string;
3654
3654
  props: {
3655
3655
  type: string;
@@ -3665,12 +3665,12 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3665
3665
  }[] | undefined;
3666
3666
  }[] | undefined;
3667
3667
  examples?: {
3668
- name: string;
3669
3668
  description: string;
3669
+ name: string;
3670
3670
  definition: {
3671
- id: string;
3672
3671
  shell: string;
3673
3672
  page: string;
3673
+ id: string;
3674
3674
  sections: {
3675
3675
  id: string;
3676
3676
  components: {
@@ -3681,9 +3681,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3681
3681
  pattern: string;
3682
3682
  slot?: string | undefined;
3683
3683
  }[];
3684
+ description?: string | undefined;
3684
3685
  themeId?: string | undefined;
3685
3686
  name?: string | undefined;
3686
- description?: string | undefined;
3687
3687
  metadata?: {
3688
3688
  version?: string | undefined;
3689
3689
  created?: string | undefined;
@@ -3721,7 +3721,7 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3721
3721
  }[] | undefined;
3722
3722
  hints?: {
3723
3723
  message: string;
3724
- category: "component" | "layout" | "accessibility" | "styling" | "best-practice";
3724
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3725
3725
  priority: "high" | "medium" | "low";
3726
3726
  example?: string | undefined;
3727
3727
  }[] | undefined;
@@ -3741,10 +3741,10 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3741
3741
  success: boolean;
3742
3742
  error?: string | undefined;
3743
3743
  components?: {
3744
- id: string;
3745
- name: string;
3746
3744
  description: string;
3747
3745
  category: "core" | "complex" | "advanced";
3746
+ id: string;
3747
+ name: string;
3748
3748
  importStatement: string;
3749
3749
  props: {
3750
3750
  type: string;
@@ -3760,12 +3760,12 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3760
3760
  }[] | undefined;
3761
3761
  }[] | undefined;
3762
3762
  examples?: {
3763
- name: string;
3764
3763
  description: string;
3764
+ name: string;
3765
3765
  definition: {
3766
- id: string;
3767
3766
  shell: string;
3768
3767
  page: string;
3768
+ id: string;
3769
3769
  sections: {
3770
3770
  id: string;
3771
3771
  components: {
@@ -3776,9 +3776,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3776
3776
  pattern: string;
3777
3777
  slot?: string | undefined;
3778
3778
  }[];
3779
+ description?: string | undefined;
3779
3780
  themeId?: string | undefined;
3780
3781
  name?: string | undefined;
3781
- description?: string | undefined;
3782
3782
  metadata?: {
3783
3783
  version?: string | undefined;
3784
3784
  created?: string | undefined;
@@ -3816,7 +3816,7 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3816
3816
  }[] | undefined;
3817
3817
  hints?: {
3818
3818
  message: string;
3819
- category: "component" | "layout" | "accessibility" | "styling" | "best-practice";
3819
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3820
3820
  priority: "high" | "medium" | "low";
3821
3821
  example?: string | undefined;
3822
3822
  }[] | undefined;
@@ -4252,14 +4252,17 @@ export declare const ValidateEnvironmentInputSchema: z.ZodObject<{
4252
4252
  projectPath: z.ZodString;
4253
4253
  requiredPackages: z.ZodArray<z.ZodString, "many">;
4254
4254
  checkTailwind: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
4255
+ checkStyles: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
4255
4256
  }, "strip", z.ZodTypeAny, {
4256
4257
  projectPath: string;
4257
4258
  requiredPackages: string[];
4258
4259
  checkTailwind: boolean;
4260
+ checkStyles: boolean;
4259
4261
  }, {
4260
4262
  projectPath: string;
4261
4263
  requiredPackages: string[];
4262
4264
  checkTailwind?: boolean | undefined;
4265
+ checkStyles?: boolean | undefined;
4263
4266
  }>;
4264
4267
  export type ValidateEnvironmentInput = z.infer<typeof ValidateEnvironmentInputSchema>;
4265
4268
  /**
@@ -4308,6 +4311,31 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
4308
4311
  fixes: string[];
4309
4312
  configPath?: string | undefined;
4310
4313
  }>>;
4314
+ styles: z.ZodOptional<z.ZodObject<{
4315
+ styleContract: z.ZodEnum<["framingui-native", "host-utility", "mixed", "unknown"]>;
4316
+ cssFilesChecked: z.ZodArray<z.ZodString, "many">;
4317
+ uiStylesImportFound: z.ZodBoolean;
4318
+ definedVariables: z.ZodArray<z.ZodString, "many">;
4319
+ missingVariables: z.ZodArray<z.ZodString, "many">;
4320
+ issues: z.ZodArray<z.ZodString, "many">;
4321
+ fixes: z.ZodArray<z.ZodString, "many">;
4322
+ }, "strip", z.ZodTypeAny, {
4323
+ issues: string[];
4324
+ fixes: string[];
4325
+ styleContract: "unknown" | "framingui-native" | "host-utility" | "mixed";
4326
+ cssFilesChecked: string[];
4327
+ uiStylesImportFound: boolean;
4328
+ definedVariables: string[];
4329
+ missingVariables: string[];
4330
+ }, {
4331
+ issues: string[];
4332
+ fixes: string[];
4333
+ styleContract: "unknown" | "framingui-native" | "host-utility" | "mixed";
4334
+ cssFilesChecked: string[];
4335
+ uiStylesImportFound: boolean;
4336
+ definedVariables: string[];
4337
+ missingVariables: string[];
4338
+ }>>;
4311
4339
  error: z.ZodOptional<z.ZodString>;
4312
4340
  }, "strip", z.ZodTypeAny, {
4313
4341
  success: boolean;
@@ -4329,6 +4357,15 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
4329
4357
  } | undefined;
4330
4358
  installed?: Record<string, string> | undefined;
4331
4359
  missing?: string[] | undefined;
4360
+ styles?: {
4361
+ issues: string[];
4362
+ fixes: string[];
4363
+ styleContract: "unknown" | "framingui-native" | "host-utility" | "mixed";
4364
+ cssFilesChecked: string[];
4365
+ uiStylesImportFound: boolean;
4366
+ definedVariables: string[];
4367
+ missingVariables: string[];
4368
+ } | undefined;
4332
4369
  }, {
4333
4370
  success: boolean;
4334
4371
  error?: string | undefined;
@@ -4349,6 +4386,15 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
4349
4386
  } | undefined;
4350
4387
  installed?: Record<string, string> | undefined;
4351
4388
  missing?: string[] | undefined;
4389
+ styles?: {
4390
+ issues: string[];
4391
+ fixes: string[];
4392
+ styleContract: "unknown" | "framingui-native" | "host-utility" | "mixed";
4393
+ cssFilesChecked: string[];
4394
+ uiStylesImportFound: boolean;
4395
+ definedVariables: string[];
4396
+ missingVariables: string[];
4397
+ } | undefined;
4352
4398
  }>;
4353
4399
  export type ValidateEnvironmentOutput = z.infer<typeof ValidateEnvironmentOutputSchema>;
4354
4400
  //# sourceMappingURL=mcp-schemas.d.ts.map