@zigrivers/scaffold 3.7.0 → 3.9.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 (97) hide show
  1. package/README.md +113 -8
  2. package/content/knowledge/browser-extension/browser-extension-architecture.md +195 -0
  3. package/content/knowledge/browser-extension/browser-extension-content-scripts.md +264 -0
  4. package/content/knowledge/browser-extension/browser-extension-conventions.md +156 -0
  5. package/content/knowledge/browser-extension/browser-extension-cross-browser.md +229 -0
  6. package/content/knowledge/browser-extension/browser-extension-dev-environment.md +247 -0
  7. package/content/knowledge/browser-extension/browser-extension-manifest.md +220 -0
  8. package/content/knowledge/browser-extension/browser-extension-project-structure.md +183 -0
  9. package/content/knowledge/browser-extension/browser-extension-requirements.md +107 -0
  10. package/content/knowledge/browser-extension/browser-extension-security.md +202 -0
  11. package/content/knowledge/browser-extension/browser-extension-service-workers.md +265 -0
  12. package/content/knowledge/browser-extension/browser-extension-store-submission.md +155 -0
  13. package/content/knowledge/browser-extension/browser-extension-testing.md +270 -0
  14. package/content/knowledge/data-pipeline/data-pipeline-architecture.md +175 -0
  15. package/content/knowledge/data-pipeline/data-pipeline-batch-patterns.md +263 -0
  16. package/content/knowledge/data-pipeline/data-pipeline-conventions.md +176 -0
  17. package/content/knowledge/data-pipeline/data-pipeline-dev-environment.md +350 -0
  18. package/content/knowledge/data-pipeline/data-pipeline-orchestration.md +291 -0
  19. package/content/knowledge/data-pipeline/data-pipeline-project-structure.md +257 -0
  20. package/content/knowledge/data-pipeline/data-pipeline-quality.md +324 -0
  21. package/content/knowledge/data-pipeline/data-pipeline-requirements.md +145 -0
  22. package/content/knowledge/data-pipeline/data-pipeline-schema-management.md +295 -0
  23. package/content/knowledge/data-pipeline/data-pipeline-security.md +326 -0
  24. package/content/knowledge/data-pipeline/data-pipeline-streaming-patterns.md +280 -0
  25. package/content/knowledge/data-pipeline/data-pipeline-testing.md +406 -0
  26. package/content/knowledge/library/library-api-design.md +306 -0
  27. package/content/knowledge/library/library-architecture.md +247 -0
  28. package/content/knowledge/library/library-bundling.md +244 -0
  29. package/content/knowledge/library/library-conventions.md +229 -0
  30. package/content/knowledge/library/library-dev-environment.md +220 -0
  31. package/content/knowledge/library/library-documentation.md +300 -0
  32. package/content/knowledge/library/library-project-structure.md +237 -0
  33. package/content/knowledge/library/library-requirements.md +173 -0
  34. package/content/knowledge/library/library-security.md +257 -0
  35. package/content/knowledge/library/library-testing.md +319 -0
  36. package/content/knowledge/library/library-type-definitions.md +284 -0
  37. package/content/knowledge/library/library-versioning.md +300 -0
  38. package/content/knowledge/ml/ml-architecture.md +172 -0
  39. package/content/knowledge/ml/ml-conventions.md +209 -0
  40. package/content/knowledge/ml/ml-dev-environment.md +299 -0
  41. package/content/knowledge/ml/ml-experiment-tracking.md +285 -0
  42. package/content/knowledge/ml/ml-model-evaluation.md +256 -0
  43. package/content/knowledge/ml/ml-observability.md +253 -0
  44. package/content/knowledge/ml/ml-project-structure.md +216 -0
  45. package/content/knowledge/ml/ml-requirements.md +138 -0
  46. package/content/knowledge/ml/ml-security.md +188 -0
  47. package/content/knowledge/ml/ml-serving-patterns.md +243 -0
  48. package/content/knowledge/ml/ml-testing.md +301 -0
  49. package/content/knowledge/ml/ml-training-patterns.md +269 -0
  50. package/content/knowledge/mobile-app/mobile-app-architecture.md +283 -0
  51. package/content/knowledge/mobile-app/mobile-app-conventions.md +180 -0
  52. package/content/knowledge/mobile-app/mobile-app-deployment.md +298 -0
  53. package/content/knowledge/mobile-app/mobile-app-dev-environment.md +257 -0
  54. package/content/knowledge/mobile-app/mobile-app-distribution.md +264 -0
  55. package/content/knowledge/mobile-app/mobile-app-observability.md +317 -0
  56. package/content/knowledge/mobile-app/mobile-app-offline-patterns.md +311 -0
  57. package/content/knowledge/mobile-app/mobile-app-project-structure.md +245 -0
  58. package/content/knowledge/mobile-app/mobile-app-push-notifications.md +321 -0
  59. package/content/knowledge/mobile-app/mobile-app-requirements.md +147 -0
  60. package/content/knowledge/mobile-app/mobile-app-security.md +338 -0
  61. package/content/knowledge/mobile-app/mobile-app-testing.md +400 -0
  62. package/content/methodology/browser-extension-overlay.yml +82 -0
  63. package/content/methodology/data-pipeline-overlay.yml +70 -0
  64. package/content/methodology/library-overlay.yml +67 -0
  65. package/content/methodology/ml-overlay.yml +70 -0
  66. package/content/methodology/mobile-app-overlay.yml +71 -0
  67. package/dist/cli/commands/init.d.ts +22 -0
  68. package/dist/cli/commands/init.d.ts.map +1 -1
  69. package/dist/cli/commands/init.js +202 -3
  70. package/dist/cli/commands/init.js.map +1 -1
  71. package/dist/cli/commands/init.test.js +190 -0
  72. package/dist/cli/commands/init.test.js.map +1 -1
  73. package/dist/config/schema.d.ts +1456 -80
  74. package/dist/config/schema.d.ts.map +1 -1
  75. package/dist/config/schema.js +87 -0
  76. package/dist/config/schema.js.map +1 -1
  77. package/dist/config/schema.test.js +312 -3
  78. package/dist/config/schema.test.js.map +1 -1
  79. package/dist/core/assembly/overlay-loader.test.js +55 -0
  80. package/dist/core/assembly/overlay-loader.test.js.map +1 -1
  81. package/dist/e2e/project-type-overlays.test.d.ts +2 -1
  82. package/dist/e2e/project-type-overlays.test.d.ts.map +1 -1
  83. package/dist/e2e/project-type-overlays.test.js +780 -14
  84. package/dist/e2e/project-type-overlays.test.js.map +1 -1
  85. package/dist/types/config.d.ts +16 -1
  86. package/dist/types/config.d.ts.map +1 -1
  87. package/dist/wizard/questions.d.ts +28 -1
  88. package/dist/wizard/questions.d.ts.map +1 -1
  89. package/dist/wizard/questions.js +127 -1
  90. package/dist/wizard/questions.js.map +1 -1
  91. package/dist/wizard/questions.test.js +224 -4
  92. package/dist/wizard/questions.test.js.map +1 -1
  93. package/dist/wizard/wizard.d.ts +22 -0
  94. package/dist/wizard/wizard.d.ts.map +1 -1
  95. package/dist/wizard/wizard.js +28 -1
  96. package/dist/wizard/wizard.js.map +1 -1
  97. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- export declare const ProjectTypeSchema: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>;
2
+ export declare const ProjectTypeSchema: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>;
3
3
  export declare const WebAppConfigSchema: z.ZodObject<{
4
4
  renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
5
5
  deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
@@ -48,6 +48,92 @@ export declare const CliConfigSchema: z.ZodObject<{
48
48
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
49
49
  hasStructuredOutput?: boolean | undefined;
50
50
  }>;
51
+ export declare const LibraryConfigSchema: z.ZodObject<{
52
+ visibility: z.ZodEnum<["public", "internal"]>;
53
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
54
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
55
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
56
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
57
+ }, "strict", z.ZodTypeAny, {
58
+ visibility: "public" | "internal";
59
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
60
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
61
+ hasTypeDefinitions: boolean;
62
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
63
+ }, {
64
+ visibility: "public" | "internal";
65
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
66
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
67
+ hasTypeDefinitions?: boolean | undefined;
68
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
69
+ }>;
70
+ export declare const MobileAppConfigSchema: z.ZodObject<{
71
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
72
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
73
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
74
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
75
+ }, "strict", z.ZodTypeAny, {
76
+ platform: "ios" | "android" | "cross-platform";
77
+ distributionModel: "public" | "private" | "mixed";
78
+ offlineSupport: "none" | "cache" | "offline-first";
79
+ hasPushNotifications: boolean;
80
+ }, {
81
+ platform: "ios" | "android" | "cross-platform";
82
+ distributionModel?: "public" | "private" | "mixed" | undefined;
83
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
84
+ hasPushNotifications?: boolean | undefined;
85
+ }>;
86
+ export declare const DataPipelineConfigSchema: z.ZodObject<{
87
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
88
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
89
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
90
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
91
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
92
+ }, "strict", z.ZodTypeAny, {
93
+ processingModel: "hybrid" | "batch" | "streaming";
94
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
95
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
96
+ schemaManagement: "none" | "schema-registry" | "contracts";
97
+ hasDataCatalog: boolean;
98
+ }, {
99
+ processingModel: "hybrid" | "batch" | "streaming";
100
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
101
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
102
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
103
+ hasDataCatalog?: boolean | undefined;
104
+ }>;
105
+ export declare const MlConfigSchema: z.ZodObject<{
106
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
107
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
108
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
109
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
110
+ }, "strict", z.ZodTypeAny, {
111
+ projectPhase: "training" | "inference" | "both";
112
+ modelType: "classical" | "deep-learning" | "llm";
113
+ servingPattern: "edge" | "none" | "realtime" | "batch";
114
+ hasExperimentTracking: boolean;
115
+ }, {
116
+ projectPhase: "training" | "inference" | "both";
117
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
118
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
119
+ hasExperimentTracking?: boolean | undefined;
120
+ }>;
121
+ export declare const BrowserExtensionConfigSchema: z.ZodObject<{
122
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
123
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
124
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
125
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
126
+ }, "strict", z.ZodTypeAny, {
127
+ manifestVersion: "2" | "3";
128
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
129
+ hasContentScript: boolean;
130
+ hasBackgroundWorker: boolean;
131
+ }, {
132
+ manifestVersion?: "2" | "3" | undefined;
133
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
134
+ hasContentScript?: boolean | undefined;
135
+ hasBackgroundWorker?: boolean | undefined;
136
+ }>;
51
137
  export declare const GameConfigSchema: z.ZodObject<{
52
138
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
53
139
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -65,10 +151,10 @@ export declare const GameConfigSchema: z.ZodObject<{
65
151
  multiplayerMode: "hybrid" | "none" | "local" | "online";
66
152
  narrative: "none" | "light" | "heavy";
67
153
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
68
- economy: "none" | "progression" | "monetized" | "both";
154
+ economy: "none" | "both" | "progression" | "monetized";
69
155
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
70
156
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
71
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
157
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
72
158
  supportedLocales: string[];
73
159
  hasModding: boolean;
74
160
  npcAiComplexity: "none" | "simple" | "complex";
@@ -77,10 +163,10 @@ export declare const GameConfigSchema: z.ZodObject<{
77
163
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
78
164
  narrative?: "none" | "light" | "heavy" | undefined;
79
165
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
80
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
166
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
81
167
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
82
168
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
83
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
169
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
84
170
  supportedLocales?: string[] | undefined;
85
171
  hasModding?: boolean | undefined;
86
172
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -117,7 +203,7 @@ export declare const ConfigSchema: z.ZodObject<{
117
203
  project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
118
204
  name: z.ZodOptional<z.ZodString>;
119
205
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
120
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
206
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
121
207
  gameConfig: z.ZodOptional<z.ZodObject<{
122
208
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
123
209
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -135,10 +221,10 @@ export declare const ConfigSchema: z.ZodObject<{
135
221
  multiplayerMode: "hybrid" | "none" | "local" | "online";
136
222
  narrative: "none" | "light" | "heavy";
137
223
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
138
- economy: "none" | "progression" | "monetized" | "both";
224
+ economy: "none" | "both" | "progression" | "monetized";
139
225
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
140
226
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
141
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
227
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
142
228
  supportedLocales: string[];
143
229
  hasModding: boolean;
144
230
  npcAiComplexity: "none" | "simple" | "complex";
@@ -147,10 +233,10 @@ export declare const ConfigSchema: z.ZodObject<{
147
233
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
148
234
  narrative?: "none" | "light" | "heavy" | undefined;
149
235
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
150
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
236
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
151
237
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
152
238
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
153
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
239
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
154
240
  supportedLocales?: string[] | undefined;
155
241
  hasModding?: boolean | undefined;
156
242
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -203,10 +289,96 @@ export declare const ConfigSchema: z.ZodObject<{
203
289
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
204
290
  hasStructuredOutput?: boolean | undefined;
205
291
  }>>;
292
+ libraryConfig: z.ZodOptional<z.ZodObject<{
293
+ visibility: z.ZodEnum<["public", "internal"]>;
294
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
295
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
296
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
297
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
298
+ }, "strict", z.ZodTypeAny, {
299
+ visibility: "public" | "internal";
300
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
301
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
302
+ hasTypeDefinitions: boolean;
303
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
304
+ }, {
305
+ visibility: "public" | "internal";
306
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
307
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
308
+ hasTypeDefinitions?: boolean | undefined;
309
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
310
+ }>>;
311
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
312
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
313
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
314
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
315
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
316
+ }, "strict", z.ZodTypeAny, {
317
+ platform: "ios" | "android" | "cross-platform";
318
+ distributionModel: "public" | "private" | "mixed";
319
+ offlineSupport: "none" | "cache" | "offline-first";
320
+ hasPushNotifications: boolean;
321
+ }, {
322
+ platform: "ios" | "android" | "cross-platform";
323
+ distributionModel?: "public" | "private" | "mixed" | undefined;
324
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
325
+ hasPushNotifications?: boolean | undefined;
326
+ }>>;
327
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
328
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
329
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
330
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
331
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
332
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
333
+ }, "strict", z.ZodTypeAny, {
334
+ processingModel: "hybrid" | "batch" | "streaming";
335
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
336
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
337
+ schemaManagement: "none" | "schema-registry" | "contracts";
338
+ hasDataCatalog: boolean;
339
+ }, {
340
+ processingModel: "hybrid" | "batch" | "streaming";
341
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
342
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
343
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
344
+ hasDataCatalog?: boolean | undefined;
345
+ }>>;
346
+ mlConfig: z.ZodOptional<z.ZodObject<{
347
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
348
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
349
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
350
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
351
+ }, "strict", z.ZodTypeAny, {
352
+ projectPhase: "training" | "inference" | "both";
353
+ modelType: "classical" | "deep-learning" | "llm";
354
+ servingPattern: "edge" | "none" | "realtime" | "batch";
355
+ hasExperimentTracking: boolean;
356
+ }, {
357
+ projectPhase: "training" | "inference" | "both";
358
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
359
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
360
+ hasExperimentTracking?: boolean | undefined;
361
+ }>>;
362
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
363
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
364
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
365
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
366
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
367
+ }, "strict", z.ZodTypeAny, {
368
+ manifestVersion: "2" | "3";
369
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
370
+ hasContentScript: boolean;
371
+ hasBackgroundWorker: boolean;
372
+ }, {
373
+ manifestVersion?: "2" | "3" | undefined;
374
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
375
+ hasContentScript?: boolean | undefined;
376
+ hasBackgroundWorker?: boolean | undefined;
377
+ }>>;
206
378
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
207
379
  name: z.ZodOptional<z.ZodString>;
208
380
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
209
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
381
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
210
382
  gameConfig: z.ZodOptional<z.ZodObject<{
211
383
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
212
384
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -224,10 +396,10 @@ export declare const ConfigSchema: z.ZodObject<{
224
396
  multiplayerMode: "hybrid" | "none" | "local" | "online";
225
397
  narrative: "none" | "light" | "heavy";
226
398
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
227
- economy: "none" | "progression" | "monetized" | "both";
399
+ economy: "none" | "both" | "progression" | "monetized";
228
400
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
229
401
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
230
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
402
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
231
403
  supportedLocales: string[];
232
404
  hasModding: boolean;
233
405
  npcAiComplexity: "none" | "simple" | "complex";
@@ -236,10 +408,10 @@ export declare const ConfigSchema: z.ZodObject<{
236
408
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
237
409
  narrative?: "none" | "light" | "heavy" | undefined;
238
410
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
239
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
411
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
240
412
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
241
413
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
242
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
414
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
243
415
  supportedLocales?: string[] | undefined;
244
416
  hasModding?: boolean | undefined;
245
417
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -292,10 +464,96 @@ export declare const ConfigSchema: z.ZodObject<{
292
464
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
293
465
  hasStructuredOutput?: boolean | undefined;
294
466
  }>>;
467
+ libraryConfig: z.ZodOptional<z.ZodObject<{
468
+ visibility: z.ZodEnum<["public", "internal"]>;
469
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
470
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
471
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
472
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
473
+ }, "strict", z.ZodTypeAny, {
474
+ visibility: "public" | "internal";
475
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
476
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
477
+ hasTypeDefinitions: boolean;
478
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
479
+ }, {
480
+ visibility: "public" | "internal";
481
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
482
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
483
+ hasTypeDefinitions?: boolean | undefined;
484
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
485
+ }>>;
486
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
487
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
488
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
489
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
490
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
491
+ }, "strict", z.ZodTypeAny, {
492
+ platform: "ios" | "android" | "cross-platform";
493
+ distributionModel: "public" | "private" | "mixed";
494
+ offlineSupport: "none" | "cache" | "offline-first";
495
+ hasPushNotifications: boolean;
496
+ }, {
497
+ platform: "ios" | "android" | "cross-platform";
498
+ distributionModel?: "public" | "private" | "mixed" | undefined;
499
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
500
+ hasPushNotifications?: boolean | undefined;
501
+ }>>;
502
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
503
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
504
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
505
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
506
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
507
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
508
+ }, "strict", z.ZodTypeAny, {
509
+ processingModel: "hybrid" | "batch" | "streaming";
510
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
511
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
512
+ schemaManagement: "none" | "schema-registry" | "contracts";
513
+ hasDataCatalog: boolean;
514
+ }, {
515
+ processingModel: "hybrid" | "batch" | "streaming";
516
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
517
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
518
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
519
+ hasDataCatalog?: boolean | undefined;
520
+ }>>;
521
+ mlConfig: z.ZodOptional<z.ZodObject<{
522
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
523
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
524
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
525
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
526
+ }, "strict", z.ZodTypeAny, {
527
+ projectPhase: "training" | "inference" | "both";
528
+ modelType: "classical" | "deep-learning" | "llm";
529
+ servingPattern: "edge" | "none" | "realtime" | "batch";
530
+ hasExperimentTracking: boolean;
531
+ }, {
532
+ projectPhase: "training" | "inference" | "both";
533
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
534
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
535
+ hasExperimentTracking?: boolean | undefined;
536
+ }>>;
537
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
538
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
539
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
540
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
541
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
542
+ }, "strict", z.ZodTypeAny, {
543
+ manifestVersion: "2" | "3";
544
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
545
+ hasContentScript: boolean;
546
+ hasBackgroundWorker: boolean;
547
+ }, {
548
+ manifestVersion?: "2" | "3" | undefined;
549
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
550
+ hasContentScript?: boolean | undefined;
551
+ hasBackgroundWorker?: boolean | undefined;
552
+ }>>;
295
553
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
296
554
  name: z.ZodOptional<z.ZodString>;
297
555
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
298
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
556
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
299
557
  gameConfig: z.ZodOptional<z.ZodObject<{
300
558
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
301
559
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -313,10 +571,10 @@ export declare const ConfigSchema: z.ZodObject<{
313
571
  multiplayerMode: "hybrid" | "none" | "local" | "online";
314
572
  narrative: "none" | "light" | "heavy";
315
573
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
316
- economy: "none" | "progression" | "monetized" | "both";
574
+ economy: "none" | "both" | "progression" | "monetized";
317
575
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
318
576
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
319
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
577
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
320
578
  supportedLocales: string[];
321
579
  hasModding: boolean;
322
580
  npcAiComplexity: "none" | "simple" | "complex";
@@ -325,10 +583,10 @@ export declare const ConfigSchema: z.ZodObject<{
325
583
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
326
584
  narrative?: "none" | "light" | "heavy" | undefined;
327
585
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
328
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
586
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
329
587
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
330
588
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
331
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
589
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
332
590
  supportedLocales?: string[] | undefined;
333
591
  hasModding?: boolean | undefined;
334
592
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -381,10 +639,96 @@ export declare const ConfigSchema: z.ZodObject<{
381
639
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
382
640
  hasStructuredOutput?: boolean | undefined;
383
641
  }>>;
642
+ libraryConfig: z.ZodOptional<z.ZodObject<{
643
+ visibility: z.ZodEnum<["public", "internal"]>;
644
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
645
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
646
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
647
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
648
+ }, "strict", z.ZodTypeAny, {
649
+ visibility: "public" | "internal";
650
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
651
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
652
+ hasTypeDefinitions: boolean;
653
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
654
+ }, {
655
+ visibility: "public" | "internal";
656
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
657
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
658
+ hasTypeDefinitions?: boolean | undefined;
659
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
660
+ }>>;
661
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
662
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
663
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
664
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
665
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
666
+ }, "strict", z.ZodTypeAny, {
667
+ platform: "ios" | "android" | "cross-platform";
668
+ distributionModel: "public" | "private" | "mixed";
669
+ offlineSupport: "none" | "cache" | "offline-first";
670
+ hasPushNotifications: boolean;
671
+ }, {
672
+ platform: "ios" | "android" | "cross-platform";
673
+ distributionModel?: "public" | "private" | "mixed" | undefined;
674
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
675
+ hasPushNotifications?: boolean | undefined;
676
+ }>>;
677
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
678
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
679
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
680
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
681
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
682
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
683
+ }, "strict", z.ZodTypeAny, {
684
+ processingModel: "hybrid" | "batch" | "streaming";
685
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
686
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
687
+ schemaManagement: "none" | "schema-registry" | "contracts";
688
+ hasDataCatalog: boolean;
689
+ }, {
690
+ processingModel: "hybrid" | "batch" | "streaming";
691
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
692
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
693
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
694
+ hasDataCatalog?: boolean | undefined;
695
+ }>>;
696
+ mlConfig: z.ZodOptional<z.ZodObject<{
697
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
698
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
699
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
700
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
701
+ }, "strict", z.ZodTypeAny, {
702
+ projectPhase: "training" | "inference" | "both";
703
+ modelType: "classical" | "deep-learning" | "llm";
704
+ servingPattern: "edge" | "none" | "realtime" | "batch";
705
+ hasExperimentTracking: boolean;
706
+ }, {
707
+ projectPhase: "training" | "inference" | "both";
708
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
709
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
710
+ hasExperimentTracking?: boolean | undefined;
711
+ }>>;
712
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
713
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
714
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
715
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
716
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
717
+ }, "strict", z.ZodTypeAny, {
718
+ manifestVersion: "2" | "3";
719
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
720
+ hasContentScript: boolean;
721
+ hasBackgroundWorker: boolean;
722
+ }, {
723
+ manifestVersion?: "2" | "3" | undefined;
724
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
725
+ hasContentScript?: boolean | undefined;
726
+ hasBackgroundWorker?: boolean | undefined;
727
+ }>>;
384
728
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
385
729
  name: z.ZodOptional<z.ZodString>;
386
730
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
387
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
731
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
388
732
  gameConfig: z.ZodOptional<z.ZodObject<{
389
733
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
390
734
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -402,10 +746,10 @@ export declare const ConfigSchema: z.ZodObject<{
402
746
  multiplayerMode: "hybrid" | "none" | "local" | "online";
403
747
  narrative: "none" | "light" | "heavy";
404
748
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
405
- economy: "none" | "progression" | "monetized" | "both";
749
+ economy: "none" | "both" | "progression" | "monetized";
406
750
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
407
751
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
408
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
752
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
409
753
  supportedLocales: string[];
410
754
  hasModding: boolean;
411
755
  npcAiComplexity: "none" | "simple" | "complex";
@@ -414,10 +758,10 @@ export declare const ConfigSchema: z.ZodObject<{
414
758
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
415
759
  narrative?: "none" | "light" | "heavy" | undefined;
416
760
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
417
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
761
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
418
762
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
419
763
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
420
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
764
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
421
765
  supportedLocales?: string[] | undefined;
422
766
  hasModding?: boolean | undefined;
423
767
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -470,10 +814,96 @@ export declare const ConfigSchema: z.ZodObject<{
470
814
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
471
815
  hasStructuredOutput?: boolean | undefined;
472
816
  }>>;
817
+ libraryConfig: z.ZodOptional<z.ZodObject<{
818
+ visibility: z.ZodEnum<["public", "internal"]>;
819
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
820
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
821
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
822
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
823
+ }, "strict", z.ZodTypeAny, {
824
+ visibility: "public" | "internal";
825
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
826
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
827
+ hasTypeDefinitions: boolean;
828
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
829
+ }, {
830
+ visibility: "public" | "internal";
831
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
832
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
833
+ hasTypeDefinitions?: boolean | undefined;
834
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
835
+ }>>;
836
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
837
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
838
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
839
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
840
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
841
+ }, "strict", z.ZodTypeAny, {
842
+ platform: "ios" | "android" | "cross-platform";
843
+ distributionModel: "public" | "private" | "mixed";
844
+ offlineSupport: "none" | "cache" | "offline-first";
845
+ hasPushNotifications: boolean;
846
+ }, {
847
+ platform: "ios" | "android" | "cross-platform";
848
+ distributionModel?: "public" | "private" | "mixed" | undefined;
849
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
850
+ hasPushNotifications?: boolean | undefined;
851
+ }>>;
852
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
853
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
854
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
855
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
856
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
857
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
858
+ }, "strict", z.ZodTypeAny, {
859
+ processingModel: "hybrid" | "batch" | "streaming";
860
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
861
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
862
+ schemaManagement: "none" | "schema-registry" | "contracts";
863
+ hasDataCatalog: boolean;
864
+ }, {
865
+ processingModel: "hybrid" | "batch" | "streaming";
866
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
867
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
868
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
869
+ hasDataCatalog?: boolean | undefined;
870
+ }>>;
871
+ mlConfig: z.ZodOptional<z.ZodObject<{
872
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
873
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
874
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
875
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
876
+ }, "strict", z.ZodTypeAny, {
877
+ projectPhase: "training" | "inference" | "both";
878
+ modelType: "classical" | "deep-learning" | "llm";
879
+ servingPattern: "edge" | "none" | "realtime" | "batch";
880
+ hasExperimentTracking: boolean;
881
+ }, {
882
+ projectPhase: "training" | "inference" | "both";
883
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
884
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
885
+ hasExperimentTracking?: boolean | undefined;
886
+ }>>;
887
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
888
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
889
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
890
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
891
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
892
+ }, "strict", z.ZodTypeAny, {
893
+ manifestVersion: "2" | "3";
894
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
895
+ hasContentScript: boolean;
896
+ hasBackgroundWorker: boolean;
897
+ }, {
898
+ manifestVersion?: "2" | "3" | undefined;
899
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
900
+ hasContentScript?: boolean | undefined;
901
+ hasBackgroundWorker?: boolean | undefined;
902
+ }>>;
473
903
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
474
904
  name: z.ZodOptional<z.ZodString>;
475
905
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
476
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
906
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
477
907
  gameConfig: z.ZodOptional<z.ZodObject<{
478
908
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
479
909
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -491,10 +921,10 @@ export declare const ConfigSchema: z.ZodObject<{
491
921
  multiplayerMode: "hybrid" | "none" | "local" | "online";
492
922
  narrative: "none" | "light" | "heavy";
493
923
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
494
- economy: "none" | "progression" | "monetized" | "both";
924
+ economy: "none" | "both" | "progression" | "monetized";
495
925
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
496
926
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
497
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
927
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
498
928
  supportedLocales: string[];
499
929
  hasModding: boolean;
500
930
  npcAiComplexity: "none" | "simple" | "complex";
@@ -503,10 +933,10 @@ export declare const ConfigSchema: z.ZodObject<{
503
933
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
504
934
  narrative?: "none" | "light" | "heavy" | undefined;
505
935
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
506
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
936
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
507
937
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
508
938
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
509
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
939
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
510
940
  supportedLocales?: string[] | undefined;
511
941
  hasModding?: boolean | undefined;
512
942
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -559,6 +989,92 @@ export declare const ConfigSchema: z.ZodObject<{
559
989
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
560
990
  hasStructuredOutput?: boolean | undefined;
561
991
  }>>;
992
+ libraryConfig: z.ZodOptional<z.ZodObject<{
993
+ visibility: z.ZodEnum<["public", "internal"]>;
994
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
995
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
996
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
997
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
998
+ }, "strict", z.ZodTypeAny, {
999
+ visibility: "public" | "internal";
1000
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1001
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1002
+ hasTypeDefinitions: boolean;
1003
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1004
+ }, {
1005
+ visibility: "public" | "internal";
1006
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1007
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1008
+ hasTypeDefinitions?: boolean | undefined;
1009
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1010
+ }>>;
1011
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1012
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1013
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1014
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1015
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1016
+ }, "strict", z.ZodTypeAny, {
1017
+ platform: "ios" | "android" | "cross-platform";
1018
+ distributionModel: "public" | "private" | "mixed";
1019
+ offlineSupport: "none" | "cache" | "offline-first";
1020
+ hasPushNotifications: boolean;
1021
+ }, {
1022
+ platform: "ios" | "android" | "cross-platform";
1023
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1024
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1025
+ hasPushNotifications?: boolean | undefined;
1026
+ }>>;
1027
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
1028
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
1029
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
1030
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
1031
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
1032
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
1033
+ }, "strict", z.ZodTypeAny, {
1034
+ processingModel: "hybrid" | "batch" | "streaming";
1035
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
1036
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
1037
+ schemaManagement: "none" | "schema-registry" | "contracts";
1038
+ hasDataCatalog: boolean;
1039
+ }, {
1040
+ processingModel: "hybrid" | "batch" | "streaming";
1041
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
1042
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
1043
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
1044
+ hasDataCatalog?: boolean | undefined;
1045
+ }>>;
1046
+ mlConfig: z.ZodOptional<z.ZodObject<{
1047
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
1048
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
1049
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
1050
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
1051
+ }, "strict", z.ZodTypeAny, {
1052
+ projectPhase: "training" | "inference" | "both";
1053
+ modelType: "classical" | "deep-learning" | "llm";
1054
+ servingPattern: "edge" | "none" | "realtime" | "batch";
1055
+ hasExperimentTracking: boolean;
1056
+ }, {
1057
+ projectPhase: "training" | "inference" | "both";
1058
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
1059
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
1060
+ hasExperimentTracking?: boolean | undefined;
1061
+ }>>;
1062
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
1063
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
1064
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
1065
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
1066
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
1067
+ }, "strict", z.ZodTypeAny, {
1068
+ manifestVersion: "2" | "3";
1069
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
1070
+ hasContentScript: boolean;
1071
+ hasBackgroundWorker: boolean;
1072
+ }, {
1073
+ manifestVersion?: "2" | "3" | undefined;
1074
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
1075
+ hasContentScript?: boolean | undefined;
1076
+ hasBackgroundWorker?: boolean | undefined;
1077
+ }>>;
562
1078
  }, z.ZodTypeAny, "passthrough">>>;
563
1079
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
564
1080
  version: z.ZodLiteral<2>;
@@ -592,7 +1108,7 @@ export declare const ConfigSchema: z.ZodObject<{
592
1108
  project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
593
1109
  name: z.ZodOptional<z.ZodString>;
594
1110
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
595
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
1111
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
596
1112
  gameConfig: z.ZodOptional<z.ZodObject<{
597
1113
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
598
1114
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -610,10 +1126,10 @@ export declare const ConfigSchema: z.ZodObject<{
610
1126
  multiplayerMode: "hybrid" | "none" | "local" | "online";
611
1127
  narrative: "none" | "light" | "heavy";
612
1128
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
613
- economy: "none" | "progression" | "monetized" | "both";
1129
+ economy: "none" | "both" | "progression" | "monetized";
614
1130
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
615
1131
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
616
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1132
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
617
1133
  supportedLocales: string[];
618
1134
  hasModding: boolean;
619
1135
  npcAiComplexity: "none" | "simple" | "complex";
@@ -622,10 +1138,10 @@ export declare const ConfigSchema: z.ZodObject<{
622
1138
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
623
1139
  narrative?: "none" | "light" | "heavy" | undefined;
624
1140
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
625
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
1141
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
626
1142
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
627
1143
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
628
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1144
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
629
1145
  supportedLocales?: string[] | undefined;
630
1146
  hasModding?: boolean | undefined;
631
1147
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -678,10 +1194,96 @@ export declare const ConfigSchema: z.ZodObject<{
678
1194
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
679
1195
  hasStructuredOutput?: boolean | undefined;
680
1196
  }>>;
1197
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1198
+ visibility: z.ZodEnum<["public", "internal"]>;
1199
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1200
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1201
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1202
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1203
+ }, "strict", z.ZodTypeAny, {
1204
+ visibility: "public" | "internal";
1205
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1206
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1207
+ hasTypeDefinitions: boolean;
1208
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1209
+ }, {
1210
+ visibility: "public" | "internal";
1211
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1212
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1213
+ hasTypeDefinitions?: boolean | undefined;
1214
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1215
+ }>>;
1216
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1217
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1218
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1219
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1220
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1221
+ }, "strict", z.ZodTypeAny, {
1222
+ platform: "ios" | "android" | "cross-platform";
1223
+ distributionModel: "public" | "private" | "mixed";
1224
+ offlineSupport: "none" | "cache" | "offline-first";
1225
+ hasPushNotifications: boolean;
1226
+ }, {
1227
+ platform: "ios" | "android" | "cross-platform";
1228
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1229
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1230
+ hasPushNotifications?: boolean | undefined;
1231
+ }>>;
1232
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
1233
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
1234
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
1235
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
1236
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
1237
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
1238
+ }, "strict", z.ZodTypeAny, {
1239
+ processingModel: "hybrid" | "batch" | "streaming";
1240
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
1241
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
1242
+ schemaManagement: "none" | "schema-registry" | "contracts";
1243
+ hasDataCatalog: boolean;
1244
+ }, {
1245
+ processingModel: "hybrid" | "batch" | "streaming";
1246
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
1247
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
1248
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
1249
+ hasDataCatalog?: boolean | undefined;
1250
+ }>>;
1251
+ mlConfig: z.ZodOptional<z.ZodObject<{
1252
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
1253
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
1254
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
1255
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
1256
+ }, "strict", z.ZodTypeAny, {
1257
+ projectPhase: "training" | "inference" | "both";
1258
+ modelType: "classical" | "deep-learning" | "llm";
1259
+ servingPattern: "edge" | "none" | "realtime" | "batch";
1260
+ hasExperimentTracking: boolean;
1261
+ }, {
1262
+ projectPhase: "training" | "inference" | "both";
1263
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
1264
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
1265
+ hasExperimentTracking?: boolean | undefined;
1266
+ }>>;
1267
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
1268
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
1269
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
1270
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
1271
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
1272
+ }, "strict", z.ZodTypeAny, {
1273
+ manifestVersion: "2" | "3";
1274
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
1275
+ hasContentScript: boolean;
1276
+ hasBackgroundWorker: boolean;
1277
+ }, {
1278
+ manifestVersion?: "2" | "3" | undefined;
1279
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
1280
+ hasContentScript?: boolean | undefined;
1281
+ hasBackgroundWorker?: boolean | undefined;
1282
+ }>>;
681
1283
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
682
1284
  name: z.ZodOptional<z.ZodString>;
683
1285
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
684
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
1286
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
685
1287
  gameConfig: z.ZodOptional<z.ZodObject<{
686
1288
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
687
1289
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -699,10 +1301,10 @@ export declare const ConfigSchema: z.ZodObject<{
699
1301
  multiplayerMode: "hybrid" | "none" | "local" | "online";
700
1302
  narrative: "none" | "light" | "heavy";
701
1303
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
702
- economy: "none" | "progression" | "monetized" | "both";
1304
+ economy: "none" | "both" | "progression" | "monetized";
703
1305
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
704
1306
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
705
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1307
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
706
1308
  supportedLocales: string[];
707
1309
  hasModding: boolean;
708
1310
  npcAiComplexity: "none" | "simple" | "complex";
@@ -711,10 +1313,10 @@ export declare const ConfigSchema: z.ZodObject<{
711
1313
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
712
1314
  narrative?: "none" | "light" | "heavy" | undefined;
713
1315
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
714
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
1316
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
715
1317
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
716
1318
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
717
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1319
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
718
1320
  supportedLocales?: string[] | undefined;
719
1321
  hasModding?: boolean | undefined;
720
1322
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -767,10 +1369,96 @@ export declare const ConfigSchema: z.ZodObject<{
767
1369
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
768
1370
  hasStructuredOutput?: boolean | undefined;
769
1371
  }>>;
1372
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1373
+ visibility: z.ZodEnum<["public", "internal"]>;
1374
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1375
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1376
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1377
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1378
+ }, "strict", z.ZodTypeAny, {
1379
+ visibility: "public" | "internal";
1380
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1381
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1382
+ hasTypeDefinitions: boolean;
1383
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1384
+ }, {
1385
+ visibility: "public" | "internal";
1386
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1387
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1388
+ hasTypeDefinitions?: boolean | undefined;
1389
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1390
+ }>>;
1391
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1392
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1393
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1394
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1395
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1396
+ }, "strict", z.ZodTypeAny, {
1397
+ platform: "ios" | "android" | "cross-platform";
1398
+ distributionModel: "public" | "private" | "mixed";
1399
+ offlineSupport: "none" | "cache" | "offline-first";
1400
+ hasPushNotifications: boolean;
1401
+ }, {
1402
+ platform: "ios" | "android" | "cross-platform";
1403
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1404
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1405
+ hasPushNotifications?: boolean | undefined;
1406
+ }>>;
1407
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
1408
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
1409
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
1410
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
1411
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
1412
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
1413
+ }, "strict", z.ZodTypeAny, {
1414
+ processingModel: "hybrid" | "batch" | "streaming";
1415
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
1416
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
1417
+ schemaManagement: "none" | "schema-registry" | "contracts";
1418
+ hasDataCatalog: boolean;
1419
+ }, {
1420
+ processingModel: "hybrid" | "batch" | "streaming";
1421
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
1422
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
1423
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
1424
+ hasDataCatalog?: boolean | undefined;
1425
+ }>>;
1426
+ mlConfig: z.ZodOptional<z.ZodObject<{
1427
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
1428
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
1429
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
1430
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
1431
+ }, "strict", z.ZodTypeAny, {
1432
+ projectPhase: "training" | "inference" | "both";
1433
+ modelType: "classical" | "deep-learning" | "llm";
1434
+ servingPattern: "edge" | "none" | "realtime" | "batch";
1435
+ hasExperimentTracking: boolean;
1436
+ }, {
1437
+ projectPhase: "training" | "inference" | "both";
1438
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
1439
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
1440
+ hasExperimentTracking?: boolean | undefined;
1441
+ }>>;
1442
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
1443
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
1444
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
1445
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
1446
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
1447
+ }, "strict", z.ZodTypeAny, {
1448
+ manifestVersion: "2" | "3";
1449
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
1450
+ hasContentScript: boolean;
1451
+ hasBackgroundWorker: boolean;
1452
+ }, {
1453
+ manifestVersion?: "2" | "3" | undefined;
1454
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
1455
+ hasContentScript?: boolean | undefined;
1456
+ hasBackgroundWorker?: boolean | undefined;
1457
+ }>>;
770
1458
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
771
1459
  name: z.ZodOptional<z.ZodString>;
772
1460
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
773
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
1461
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
774
1462
  gameConfig: z.ZodOptional<z.ZodObject<{
775
1463
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
776
1464
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -788,10 +1476,10 @@ export declare const ConfigSchema: z.ZodObject<{
788
1476
  multiplayerMode: "hybrid" | "none" | "local" | "online";
789
1477
  narrative: "none" | "light" | "heavy";
790
1478
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
791
- economy: "none" | "progression" | "monetized" | "both";
1479
+ economy: "none" | "both" | "progression" | "monetized";
792
1480
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
793
1481
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
794
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1482
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
795
1483
  supportedLocales: string[];
796
1484
  hasModding: boolean;
797
1485
  npcAiComplexity: "none" | "simple" | "complex";
@@ -800,10 +1488,10 @@ export declare const ConfigSchema: z.ZodObject<{
800
1488
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
801
1489
  narrative?: "none" | "light" | "heavy" | undefined;
802
1490
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
803
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
1491
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
804
1492
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
805
1493
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
806
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1494
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
807
1495
  supportedLocales?: string[] | undefined;
808
1496
  hasModding?: boolean | undefined;
809
1497
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -856,10 +1544,96 @@ export declare const ConfigSchema: z.ZodObject<{
856
1544
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
857
1545
  hasStructuredOutput?: boolean | undefined;
858
1546
  }>>;
1547
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1548
+ visibility: z.ZodEnum<["public", "internal"]>;
1549
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1550
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1551
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1552
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1553
+ }, "strict", z.ZodTypeAny, {
1554
+ visibility: "public" | "internal";
1555
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1556
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1557
+ hasTypeDefinitions: boolean;
1558
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1559
+ }, {
1560
+ visibility: "public" | "internal";
1561
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1562
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1563
+ hasTypeDefinitions?: boolean | undefined;
1564
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1565
+ }>>;
1566
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1567
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1568
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1569
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1570
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1571
+ }, "strict", z.ZodTypeAny, {
1572
+ platform: "ios" | "android" | "cross-platform";
1573
+ distributionModel: "public" | "private" | "mixed";
1574
+ offlineSupport: "none" | "cache" | "offline-first";
1575
+ hasPushNotifications: boolean;
1576
+ }, {
1577
+ platform: "ios" | "android" | "cross-platform";
1578
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1579
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1580
+ hasPushNotifications?: boolean | undefined;
1581
+ }>>;
1582
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
1583
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
1584
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
1585
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
1586
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
1587
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
1588
+ }, "strict", z.ZodTypeAny, {
1589
+ processingModel: "hybrid" | "batch" | "streaming";
1590
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
1591
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
1592
+ schemaManagement: "none" | "schema-registry" | "contracts";
1593
+ hasDataCatalog: boolean;
1594
+ }, {
1595
+ processingModel: "hybrid" | "batch" | "streaming";
1596
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
1597
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
1598
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
1599
+ hasDataCatalog?: boolean | undefined;
1600
+ }>>;
1601
+ mlConfig: z.ZodOptional<z.ZodObject<{
1602
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
1603
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
1604
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
1605
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
1606
+ }, "strict", z.ZodTypeAny, {
1607
+ projectPhase: "training" | "inference" | "both";
1608
+ modelType: "classical" | "deep-learning" | "llm";
1609
+ servingPattern: "edge" | "none" | "realtime" | "batch";
1610
+ hasExperimentTracking: boolean;
1611
+ }, {
1612
+ projectPhase: "training" | "inference" | "both";
1613
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
1614
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
1615
+ hasExperimentTracking?: boolean | undefined;
1616
+ }>>;
1617
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
1618
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
1619
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
1620
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
1621
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
1622
+ }, "strict", z.ZodTypeAny, {
1623
+ manifestVersion: "2" | "3";
1624
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
1625
+ hasContentScript: boolean;
1626
+ hasBackgroundWorker: boolean;
1627
+ }, {
1628
+ manifestVersion?: "2" | "3" | undefined;
1629
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
1630
+ hasContentScript?: boolean | undefined;
1631
+ hasBackgroundWorker?: boolean | undefined;
1632
+ }>>;
859
1633
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
860
1634
  name: z.ZodOptional<z.ZodString>;
861
1635
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
862
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
1636
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
863
1637
  gameConfig: z.ZodOptional<z.ZodObject<{
864
1638
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
865
1639
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -877,10 +1651,10 @@ export declare const ConfigSchema: z.ZodObject<{
877
1651
  multiplayerMode: "hybrid" | "none" | "local" | "online";
878
1652
  narrative: "none" | "light" | "heavy";
879
1653
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
880
- economy: "none" | "progression" | "monetized" | "both";
1654
+ economy: "none" | "both" | "progression" | "monetized";
881
1655
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
882
1656
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
883
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1657
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
884
1658
  supportedLocales: string[];
885
1659
  hasModding: boolean;
886
1660
  npcAiComplexity: "none" | "simple" | "complex";
@@ -889,10 +1663,10 @@ export declare const ConfigSchema: z.ZodObject<{
889
1663
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
890
1664
  narrative?: "none" | "light" | "heavy" | undefined;
891
1665
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
892
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
1666
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
893
1667
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
894
1668
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
895
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1669
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
896
1670
  supportedLocales?: string[] | undefined;
897
1671
  hasModding?: boolean | undefined;
898
1672
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -945,10 +1719,96 @@ export declare const ConfigSchema: z.ZodObject<{
945
1719
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
946
1720
  hasStructuredOutput?: boolean | undefined;
947
1721
  }>>;
1722
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1723
+ visibility: z.ZodEnum<["public", "internal"]>;
1724
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1725
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1726
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1727
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1728
+ }, "strict", z.ZodTypeAny, {
1729
+ visibility: "public" | "internal";
1730
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1731
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1732
+ hasTypeDefinitions: boolean;
1733
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1734
+ }, {
1735
+ visibility: "public" | "internal";
1736
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1737
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1738
+ hasTypeDefinitions?: boolean | undefined;
1739
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1740
+ }>>;
1741
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1742
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1743
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1744
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1745
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1746
+ }, "strict", z.ZodTypeAny, {
1747
+ platform: "ios" | "android" | "cross-platform";
1748
+ distributionModel: "public" | "private" | "mixed";
1749
+ offlineSupport: "none" | "cache" | "offline-first";
1750
+ hasPushNotifications: boolean;
1751
+ }, {
1752
+ platform: "ios" | "android" | "cross-platform";
1753
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1754
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1755
+ hasPushNotifications?: boolean | undefined;
1756
+ }>>;
1757
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
1758
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
1759
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
1760
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
1761
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
1762
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
1763
+ }, "strict", z.ZodTypeAny, {
1764
+ processingModel: "hybrid" | "batch" | "streaming";
1765
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
1766
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
1767
+ schemaManagement: "none" | "schema-registry" | "contracts";
1768
+ hasDataCatalog: boolean;
1769
+ }, {
1770
+ processingModel: "hybrid" | "batch" | "streaming";
1771
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
1772
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
1773
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
1774
+ hasDataCatalog?: boolean | undefined;
1775
+ }>>;
1776
+ mlConfig: z.ZodOptional<z.ZodObject<{
1777
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
1778
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
1779
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
1780
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
1781
+ }, "strict", z.ZodTypeAny, {
1782
+ projectPhase: "training" | "inference" | "both";
1783
+ modelType: "classical" | "deep-learning" | "llm";
1784
+ servingPattern: "edge" | "none" | "realtime" | "batch";
1785
+ hasExperimentTracking: boolean;
1786
+ }, {
1787
+ projectPhase: "training" | "inference" | "both";
1788
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
1789
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
1790
+ hasExperimentTracking?: boolean | undefined;
1791
+ }>>;
1792
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
1793
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
1794
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
1795
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
1796
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
1797
+ }, "strict", z.ZodTypeAny, {
1798
+ manifestVersion: "2" | "3";
1799
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
1800
+ hasContentScript: boolean;
1801
+ hasBackgroundWorker: boolean;
1802
+ }, {
1803
+ manifestVersion?: "2" | "3" | undefined;
1804
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
1805
+ hasContentScript?: boolean | undefined;
1806
+ hasBackgroundWorker?: boolean | undefined;
1807
+ }>>;
948
1808
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
949
1809
  name: z.ZodOptional<z.ZodString>;
950
1810
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
951
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
1811
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
952
1812
  gameConfig: z.ZodOptional<z.ZodObject<{
953
1813
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
954
1814
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -966,10 +1826,10 @@ export declare const ConfigSchema: z.ZodObject<{
966
1826
  multiplayerMode: "hybrid" | "none" | "local" | "online";
967
1827
  narrative: "none" | "light" | "heavy";
968
1828
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
969
- economy: "none" | "progression" | "monetized" | "both";
1829
+ economy: "none" | "both" | "progression" | "monetized";
970
1830
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
971
1831
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
972
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1832
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
973
1833
  supportedLocales: string[];
974
1834
  hasModding: boolean;
975
1835
  npcAiComplexity: "none" | "simple" | "complex";
@@ -978,10 +1838,10 @@ export declare const ConfigSchema: z.ZodObject<{
978
1838
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
979
1839
  narrative?: "none" | "light" | "heavy" | undefined;
980
1840
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
981
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
1841
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
982
1842
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
983
1843
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
984
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1844
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
985
1845
  supportedLocales?: string[] | undefined;
986
1846
  hasModding?: boolean | undefined;
987
1847
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1034,6 +1894,92 @@ export declare const ConfigSchema: z.ZodObject<{
1034
1894
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1035
1895
  hasStructuredOutput?: boolean | undefined;
1036
1896
  }>>;
1897
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1898
+ visibility: z.ZodEnum<["public", "internal"]>;
1899
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1900
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1901
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1902
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1903
+ }, "strict", z.ZodTypeAny, {
1904
+ visibility: "public" | "internal";
1905
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1906
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1907
+ hasTypeDefinitions: boolean;
1908
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1909
+ }, {
1910
+ visibility: "public" | "internal";
1911
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1912
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1913
+ hasTypeDefinitions?: boolean | undefined;
1914
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1915
+ }>>;
1916
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1917
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1918
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1919
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1920
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1921
+ }, "strict", z.ZodTypeAny, {
1922
+ platform: "ios" | "android" | "cross-platform";
1923
+ distributionModel: "public" | "private" | "mixed";
1924
+ offlineSupport: "none" | "cache" | "offline-first";
1925
+ hasPushNotifications: boolean;
1926
+ }, {
1927
+ platform: "ios" | "android" | "cross-platform";
1928
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1929
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1930
+ hasPushNotifications?: boolean | undefined;
1931
+ }>>;
1932
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
1933
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
1934
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
1935
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
1936
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
1937
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
1938
+ }, "strict", z.ZodTypeAny, {
1939
+ processingModel: "hybrid" | "batch" | "streaming";
1940
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
1941
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
1942
+ schemaManagement: "none" | "schema-registry" | "contracts";
1943
+ hasDataCatalog: boolean;
1944
+ }, {
1945
+ processingModel: "hybrid" | "batch" | "streaming";
1946
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
1947
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
1948
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
1949
+ hasDataCatalog?: boolean | undefined;
1950
+ }>>;
1951
+ mlConfig: z.ZodOptional<z.ZodObject<{
1952
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
1953
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
1954
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
1955
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
1956
+ }, "strict", z.ZodTypeAny, {
1957
+ projectPhase: "training" | "inference" | "both";
1958
+ modelType: "classical" | "deep-learning" | "llm";
1959
+ servingPattern: "edge" | "none" | "realtime" | "batch";
1960
+ hasExperimentTracking: boolean;
1961
+ }, {
1962
+ projectPhase: "training" | "inference" | "both";
1963
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
1964
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
1965
+ hasExperimentTracking?: boolean | undefined;
1966
+ }>>;
1967
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
1968
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
1969
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
1970
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
1971
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
1972
+ }, "strict", z.ZodTypeAny, {
1973
+ manifestVersion: "2" | "3";
1974
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
1975
+ hasContentScript: boolean;
1976
+ hasBackgroundWorker: boolean;
1977
+ }, {
1978
+ manifestVersion?: "2" | "3" | undefined;
1979
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
1980
+ hasContentScript?: boolean | undefined;
1981
+ hasBackgroundWorker?: boolean | undefined;
1982
+ }>>;
1037
1983
  }, z.ZodTypeAny, "passthrough">>>;
1038
1984
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1039
1985
  version: z.ZodLiteral<2>;
@@ -1067,7 +2013,7 @@ export declare const ConfigSchema: z.ZodObject<{
1067
2013
  project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1068
2014
  name: z.ZodOptional<z.ZodString>;
1069
2015
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1070
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
2016
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1071
2017
  gameConfig: z.ZodOptional<z.ZodObject<{
1072
2018
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1073
2019
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -1085,10 +2031,10 @@ export declare const ConfigSchema: z.ZodObject<{
1085
2031
  multiplayerMode: "hybrid" | "none" | "local" | "online";
1086
2032
  narrative: "none" | "light" | "heavy";
1087
2033
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1088
- economy: "none" | "progression" | "monetized" | "both";
2034
+ economy: "none" | "both" | "progression" | "monetized";
1089
2035
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1090
2036
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1091
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2037
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1092
2038
  supportedLocales: string[];
1093
2039
  hasModding: boolean;
1094
2040
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1097,10 +2043,10 @@ export declare const ConfigSchema: z.ZodObject<{
1097
2043
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1098
2044
  narrative?: "none" | "light" | "heavy" | undefined;
1099
2045
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1100
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
2046
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1101
2047
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1102
2048
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1103
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2049
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1104
2050
  supportedLocales?: string[] | undefined;
1105
2051
  hasModding?: boolean | undefined;
1106
2052
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1153,10 +2099,96 @@ export declare const ConfigSchema: z.ZodObject<{
1153
2099
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1154
2100
  hasStructuredOutput?: boolean | undefined;
1155
2101
  }>>;
2102
+ libraryConfig: z.ZodOptional<z.ZodObject<{
2103
+ visibility: z.ZodEnum<["public", "internal"]>;
2104
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
2105
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
2106
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
2107
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
2108
+ }, "strict", z.ZodTypeAny, {
2109
+ visibility: "public" | "internal";
2110
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
2111
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
2112
+ hasTypeDefinitions: boolean;
2113
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
2114
+ }, {
2115
+ visibility: "public" | "internal";
2116
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
2117
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
2118
+ hasTypeDefinitions?: boolean | undefined;
2119
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
2120
+ }>>;
2121
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
2122
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
2123
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
2124
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
2125
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
2126
+ }, "strict", z.ZodTypeAny, {
2127
+ platform: "ios" | "android" | "cross-platform";
2128
+ distributionModel: "public" | "private" | "mixed";
2129
+ offlineSupport: "none" | "cache" | "offline-first";
2130
+ hasPushNotifications: boolean;
2131
+ }, {
2132
+ platform: "ios" | "android" | "cross-platform";
2133
+ distributionModel?: "public" | "private" | "mixed" | undefined;
2134
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
2135
+ hasPushNotifications?: boolean | undefined;
2136
+ }>>;
2137
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
2138
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
2139
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
2140
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
2141
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
2142
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
2143
+ }, "strict", z.ZodTypeAny, {
2144
+ processingModel: "hybrid" | "batch" | "streaming";
2145
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
2146
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
2147
+ schemaManagement: "none" | "schema-registry" | "contracts";
2148
+ hasDataCatalog: boolean;
2149
+ }, {
2150
+ processingModel: "hybrid" | "batch" | "streaming";
2151
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
2152
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
2153
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
2154
+ hasDataCatalog?: boolean | undefined;
2155
+ }>>;
2156
+ mlConfig: z.ZodOptional<z.ZodObject<{
2157
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
2158
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
2159
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
2160
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
2161
+ }, "strict", z.ZodTypeAny, {
2162
+ projectPhase: "training" | "inference" | "both";
2163
+ modelType: "classical" | "deep-learning" | "llm";
2164
+ servingPattern: "edge" | "none" | "realtime" | "batch";
2165
+ hasExperimentTracking: boolean;
2166
+ }, {
2167
+ projectPhase: "training" | "inference" | "both";
2168
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
2169
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
2170
+ hasExperimentTracking?: boolean | undefined;
2171
+ }>>;
2172
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
2173
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
2174
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
2175
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
2176
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
2177
+ }, "strict", z.ZodTypeAny, {
2178
+ manifestVersion: "2" | "3";
2179
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
2180
+ hasContentScript: boolean;
2181
+ hasBackgroundWorker: boolean;
2182
+ }, {
2183
+ manifestVersion?: "2" | "3" | undefined;
2184
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
2185
+ hasContentScript?: boolean | undefined;
2186
+ hasBackgroundWorker?: boolean | undefined;
2187
+ }>>;
1156
2188
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1157
2189
  name: z.ZodOptional<z.ZodString>;
1158
2190
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1159
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
2191
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1160
2192
  gameConfig: z.ZodOptional<z.ZodObject<{
1161
2193
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1162
2194
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -1174,10 +2206,10 @@ export declare const ConfigSchema: z.ZodObject<{
1174
2206
  multiplayerMode: "hybrid" | "none" | "local" | "online";
1175
2207
  narrative: "none" | "light" | "heavy";
1176
2208
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1177
- economy: "none" | "progression" | "monetized" | "both";
2209
+ economy: "none" | "both" | "progression" | "monetized";
1178
2210
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1179
2211
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1180
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2212
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1181
2213
  supportedLocales: string[];
1182
2214
  hasModding: boolean;
1183
2215
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1186,10 +2218,10 @@ export declare const ConfigSchema: z.ZodObject<{
1186
2218
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1187
2219
  narrative?: "none" | "light" | "heavy" | undefined;
1188
2220
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1189
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
2221
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1190
2222
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1191
2223
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1192
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2224
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1193
2225
  supportedLocales?: string[] | undefined;
1194
2226
  hasModding?: boolean | undefined;
1195
2227
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1242,10 +2274,96 @@ export declare const ConfigSchema: z.ZodObject<{
1242
2274
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1243
2275
  hasStructuredOutput?: boolean | undefined;
1244
2276
  }>>;
2277
+ libraryConfig: z.ZodOptional<z.ZodObject<{
2278
+ visibility: z.ZodEnum<["public", "internal"]>;
2279
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
2280
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
2281
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
2282
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
2283
+ }, "strict", z.ZodTypeAny, {
2284
+ visibility: "public" | "internal";
2285
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
2286
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
2287
+ hasTypeDefinitions: boolean;
2288
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
2289
+ }, {
2290
+ visibility: "public" | "internal";
2291
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
2292
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
2293
+ hasTypeDefinitions?: boolean | undefined;
2294
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
2295
+ }>>;
2296
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
2297
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
2298
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
2299
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
2300
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
2301
+ }, "strict", z.ZodTypeAny, {
2302
+ platform: "ios" | "android" | "cross-platform";
2303
+ distributionModel: "public" | "private" | "mixed";
2304
+ offlineSupport: "none" | "cache" | "offline-first";
2305
+ hasPushNotifications: boolean;
2306
+ }, {
2307
+ platform: "ios" | "android" | "cross-platform";
2308
+ distributionModel?: "public" | "private" | "mixed" | undefined;
2309
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
2310
+ hasPushNotifications?: boolean | undefined;
2311
+ }>>;
2312
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
2313
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
2314
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
2315
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
2316
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
2317
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
2318
+ }, "strict", z.ZodTypeAny, {
2319
+ processingModel: "hybrid" | "batch" | "streaming";
2320
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
2321
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
2322
+ schemaManagement: "none" | "schema-registry" | "contracts";
2323
+ hasDataCatalog: boolean;
2324
+ }, {
2325
+ processingModel: "hybrid" | "batch" | "streaming";
2326
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
2327
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
2328
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
2329
+ hasDataCatalog?: boolean | undefined;
2330
+ }>>;
2331
+ mlConfig: z.ZodOptional<z.ZodObject<{
2332
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
2333
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
2334
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
2335
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
2336
+ }, "strict", z.ZodTypeAny, {
2337
+ projectPhase: "training" | "inference" | "both";
2338
+ modelType: "classical" | "deep-learning" | "llm";
2339
+ servingPattern: "edge" | "none" | "realtime" | "batch";
2340
+ hasExperimentTracking: boolean;
2341
+ }, {
2342
+ projectPhase: "training" | "inference" | "both";
2343
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
2344
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
2345
+ hasExperimentTracking?: boolean | undefined;
2346
+ }>>;
2347
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
2348
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
2349
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
2350
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
2351
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
2352
+ }, "strict", z.ZodTypeAny, {
2353
+ manifestVersion: "2" | "3";
2354
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
2355
+ hasContentScript: boolean;
2356
+ hasBackgroundWorker: boolean;
2357
+ }, {
2358
+ manifestVersion?: "2" | "3" | undefined;
2359
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
2360
+ hasContentScript?: boolean | undefined;
2361
+ hasBackgroundWorker?: boolean | undefined;
2362
+ }>>;
1245
2363
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1246
2364
  name: z.ZodOptional<z.ZodString>;
1247
2365
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1248
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
2366
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1249
2367
  gameConfig: z.ZodOptional<z.ZodObject<{
1250
2368
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1251
2369
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -1263,10 +2381,10 @@ export declare const ConfigSchema: z.ZodObject<{
1263
2381
  multiplayerMode: "hybrid" | "none" | "local" | "online";
1264
2382
  narrative: "none" | "light" | "heavy";
1265
2383
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1266
- economy: "none" | "progression" | "monetized" | "both";
2384
+ economy: "none" | "both" | "progression" | "monetized";
1267
2385
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1268
2386
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1269
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2387
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1270
2388
  supportedLocales: string[];
1271
2389
  hasModding: boolean;
1272
2390
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1275,10 +2393,10 @@ export declare const ConfigSchema: z.ZodObject<{
1275
2393
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1276
2394
  narrative?: "none" | "light" | "heavy" | undefined;
1277
2395
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1278
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
2396
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1279
2397
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1280
2398
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1281
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2399
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1282
2400
  supportedLocales?: string[] | undefined;
1283
2401
  hasModding?: boolean | undefined;
1284
2402
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1331,10 +2449,96 @@ export declare const ConfigSchema: z.ZodObject<{
1331
2449
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1332
2450
  hasStructuredOutput?: boolean | undefined;
1333
2451
  }>>;
2452
+ libraryConfig: z.ZodOptional<z.ZodObject<{
2453
+ visibility: z.ZodEnum<["public", "internal"]>;
2454
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
2455
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
2456
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
2457
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
2458
+ }, "strict", z.ZodTypeAny, {
2459
+ visibility: "public" | "internal";
2460
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
2461
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
2462
+ hasTypeDefinitions: boolean;
2463
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
2464
+ }, {
2465
+ visibility: "public" | "internal";
2466
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
2467
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
2468
+ hasTypeDefinitions?: boolean | undefined;
2469
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
2470
+ }>>;
2471
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
2472
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
2473
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
2474
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
2475
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
2476
+ }, "strict", z.ZodTypeAny, {
2477
+ platform: "ios" | "android" | "cross-platform";
2478
+ distributionModel: "public" | "private" | "mixed";
2479
+ offlineSupport: "none" | "cache" | "offline-first";
2480
+ hasPushNotifications: boolean;
2481
+ }, {
2482
+ platform: "ios" | "android" | "cross-platform";
2483
+ distributionModel?: "public" | "private" | "mixed" | undefined;
2484
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
2485
+ hasPushNotifications?: boolean | undefined;
2486
+ }>>;
2487
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
2488
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
2489
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
2490
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
2491
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
2492
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
2493
+ }, "strict", z.ZodTypeAny, {
2494
+ processingModel: "hybrid" | "batch" | "streaming";
2495
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
2496
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
2497
+ schemaManagement: "none" | "schema-registry" | "contracts";
2498
+ hasDataCatalog: boolean;
2499
+ }, {
2500
+ processingModel: "hybrid" | "batch" | "streaming";
2501
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
2502
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
2503
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
2504
+ hasDataCatalog?: boolean | undefined;
2505
+ }>>;
2506
+ mlConfig: z.ZodOptional<z.ZodObject<{
2507
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
2508
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
2509
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
2510
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
2511
+ }, "strict", z.ZodTypeAny, {
2512
+ projectPhase: "training" | "inference" | "both";
2513
+ modelType: "classical" | "deep-learning" | "llm";
2514
+ servingPattern: "edge" | "none" | "realtime" | "batch";
2515
+ hasExperimentTracking: boolean;
2516
+ }, {
2517
+ projectPhase: "training" | "inference" | "both";
2518
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
2519
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
2520
+ hasExperimentTracking?: boolean | undefined;
2521
+ }>>;
2522
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
2523
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
2524
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
2525
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
2526
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
2527
+ }, "strict", z.ZodTypeAny, {
2528
+ manifestVersion: "2" | "3";
2529
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
2530
+ hasContentScript: boolean;
2531
+ hasBackgroundWorker: boolean;
2532
+ }, {
2533
+ manifestVersion?: "2" | "3" | undefined;
2534
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
2535
+ hasContentScript?: boolean | undefined;
2536
+ hasBackgroundWorker?: boolean | undefined;
2537
+ }>>;
1334
2538
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
1335
2539
  name: z.ZodOptional<z.ZodString>;
1336
2540
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1337
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
2541
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1338
2542
  gameConfig: z.ZodOptional<z.ZodObject<{
1339
2543
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1340
2544
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -1352,10 +2556,10 @@ export declare const ConfigSchema: z.ZodObject<{
1352
2556
  multiplayerMode: "hybrid" | "none" | "local" | "online";
1353
2557
  narrative: "none" | "light" | "heavy";
1354
2558
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1355
- economy: "none" | "progression" | "monetized" | "both";
2559
+ economy: "none" | "both" | "progression" | "monetized";
1356
2560
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1357
2561
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1358
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2562
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1359
2563
  supportedLocales: string[];
1360
2564
  hasModding: boolean;
1361
2565
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1364,10 +2568,10 @@ export declare const ConfigSchema: z.ZodObject<{
1364
2568
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1365
2569
  narrative?: "none" | "light" | "heavy" | undefined;
1366
2570
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1367
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
2571
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1368
2572
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1369
2573
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1370
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2574
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1371
2575
  supportedLocales?: string[] | undefined;
1372
2576
  hasModding?: boolean | undefined;
1373
2577
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1420,10 +2624,96 @@ export declare const ConfigSchema: z.ZodObject<{
1420
2624
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1421
2625
  hasStructuredOutput?: boolean | undefined;
1422
2626
  }>>;
2627
+ libraryConfig: z.ZodOptional<z.ZodObject<{
2628
+ visibility: z.ZodEnum<["public", "internal"]>;
2629
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
2630
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
2631
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
2632
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
2633
+ }, "strict", z.ZodTypeAny, {
2634
+ visibility: "public" | "internal";
2635
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
2636
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
2637
+ hasTypeDefinitions: boolean;
2638
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
2639
+ }, {
2640
+ visibility: "public" | "internal";
2641
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
2642
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
2643
+ hasTypeDefinitions?: boolean | undefined;
2644
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
2645
+ }>>;
2646
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
2647
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
2648
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
2649
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
2650
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
2651
+ }, "strict", z.ZodTypeAny, {
2652
+ platform: "ios" | "android" | "cross-platform";
2653
+ distributionModel: "public" | "private" | "mixed";
2654
+ offlineSupport: "none" | "cache" | "offline-first";
2655
+ hasPushNotifications: boolean;
2656
+ }, {
2657
+ platform: "ios" | "android" | "cross-platform";
2658
+ distributionModel?: "public" | "private" | "mixed" | undefined;
2659
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
2660
+ hasPushNotifications?: boolean | undefined;
2661
+ }>>;
2662
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
2663
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
2664
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
2665
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
2666
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
2667
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
2668
+ }, "strict", z.ZodTypeAny, {
2669
+ processingModel: "hybrid" | "batch" | "streaming";
2670
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
2671
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
2672
+ schemaManagement: "none" | "schema-registry" | "contracts";
2673
+ hasDataCatalog: boolean;
2674
+ }, {
2675
+ processingModel: "hybrid" | "batch" | "streaming";
2676
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
2677
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
2678
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
2679
+ hasDataCatalog?: boolean | undefined;
2680
+ }>>;
2681
+ mlConfig: z.ZodOptional<z.ZodObject<{
2682
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
2683
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
2684
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
2685
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
2686
+ }, "strict", z.ZodTypeAny, {
2687
+ projectPhase: "training" | "inference" | "both";
2688
+ modelType: "classical" | "deep-learning" | "llm";
2689
+ servingPattern: "edge" | "none" | "realtime" | "batch";
2690
+ hasExperimentTracking: boolean;
2691
+ }, {
2692
+ projectPhase: "training" | "inference" | "both";
2693
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
2694
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
2695
+ hasExperimentTracking?: boolean | undefined;
2696
+ }>>;
2697
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
2698
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
2699
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
2700
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
2701
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
2702
+ }, "strict", z.ZodTypeAny, {
2703
+ manifestVersion: "2" | "3";
2704
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
2705
+ hasContentScript: boolean;
2706
+ hasBackgroundWorker: boolean;
2707
+ }, {
2708
+ manifestVersion?: "2" | "3" | undefined;
2709
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
2710
+ hasContentScript?: boolean | undefined;
2711
+ hasBackgroundWorker?: boolean | undefined;
2712
+ }>>;
1423
2713
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1424
2714
  name: z.ZodOptional<z.ZodString>;
1425
2715
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1426
- projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
2716
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1427
2717
  gameConfig: z.ZodOptional<z.ZodObject<{
1428
2718
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1429
2719
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -1441,10 +2731,10 @@ export declare const ConfigSchema: z.ZodObject<{
1441
2731
  multiplayerMode: "hybrid" | "none" | "local" | "online";
1442
2732
  narrative: "none" | "light" | "heavy";
1443
2733
  contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1444
- economy: "none" | "progression" | "monetized" | "both";
2734
+ economy: "none" | "both" | "progression" | "monetized";
1445
2735
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1446
2736
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1447
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2737
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1448
2738
  supportedLocales: string[];
1449
2739
  hasModding: boolean;
1450
2740
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1453,10 +2743,10 @@ export declare const ConfigSchema: z.ZodObject<{
1453
2743
  multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1454
2744
  narrative?: "none" | "light" | "heavy" | undefined;
1455
2745
  contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1456
- economy?: "none" | "progression" | "monetized" | "both" | undefined;
2746
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1457
2747
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1458
2748
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1459
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2749
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1460
2750
  supportedLocales?: string[] | undefined;
1461
2751
  hasModding?: boolean | undefined;
1462
2752
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1509,6 +2799,92 @@ export declare const ConfigSchema: z.ZodObject<{
1509
2799
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1510
2800
  hasStructuredOutput?: boolean | undefined;
1511
2801
  }>>;
2802
+ libraryConfig: z.ZodOptional<z.ZodObject<{
2803
+ visibility: z.ZodEnum<["public", "internal"]>;
2804
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
2805
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
2806
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
2807
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
2808
+ }, "strict", z.ZodTypeAny, {
2809
+ visibility: "public" | "internal";
2810
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
2811
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
2812
+ hasTypeDefinitions: boolean;
2813
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
2814
+ }, {
2815
+ visibility: "public" | "internal";
2816
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
2817
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
2818
+ hasTypeDefinitions?: boolean | undefined;
2819
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
2820
+ }>>;
2821
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
2822
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
2823
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
2824
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
2825
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
2826
+ }, "strict", z.ZodTypeAny, {
2827
+ platform: "ios" | "android" | "cross-platform";
2828
+ distributionModel: "public" | "private" | "mixed";
2829
+ offlineSupport: "none" | "cache" | "offline-first";
2830
+ hasPushNotifications: boolean;
2831
+ }, {
2832
+ platform: "ios" | "android" | "cross-platform";
2833
+ distributionModel?: "public" | "private" | "mixed" | undefined;
2834
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
2835
+ hasPushNotifications?: boolean | undefined;
2836
+ }>>;
2837
+ dataPipelineConfig: z.ZodOptional<z.ZodObject<{
2838
+ processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
2839
+ orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
2840
+ dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
2841
+ schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
2842
+ hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
2843
+ }, "strict", z.ZodTypeAny, {
2844
+ processingModel: "hybrid" | "batch" | "streaming";
2845
+ orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
2846
+ dataQualityStrategy: "validation" | "none" | "testing" | "observability";
2847
+ schemaManagement: "none" | "schema-registry" | "contracts";
2848
+ hasDataCatalog: boolean;
2849
+ }, {
2850
+ processingModel: "hybrid" | "batch" | "streaming";
2851
+ orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
2852
+ dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
2853
+ schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
2854
+ hasDataCatalog?: boolean | undefined;
2855
+ }>>;
2856
+ mlConfig: z.ZodOptional<z.ZodObject<{
2857
+ projectPhase: z.ZodEnum<["training", "inference", "both"]>;
2858
+ modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
2859
+ servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
2860
+ hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
2861
+ }, "strict", z.ZodTypeAny, {
2862
+ projectPhase: "training" | "inference" | "both";
2863
+ modelType: "classical" | "deep-learning" | "llm";
2864
+ servingPattern: "edge" | "none" | "realtime" | "batch";
2865
+ hasExperimentTracking: boolean;
2866
+ }, {
2867
+ projectPhase: "training" | "inference" | "both";
2868
+ modelType?: "classical" | "deep-learning" | "llm" | undefined;
2869
+ servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
2870
+ hasExperimentTracking?: boolean | undefined;
2871
+ }>>;
2872
+ browserExtensionConfig: z.ZodOptional<z.ZodObject<{
2873
+ manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
2874
+ uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
2875
+ hasContentScript: z.ZodDefault<z.ZodBoolean>;
2876
+ hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
2877
+ }, "strict", z.ZodTypeAny, {
2878
+ manifestVersion: "2" | "3";
2879
+ uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
2880
+ hasContentScript: boolean;
2881
+ hasBackgroundWorker: boolean;
2882
+ }, {
2883
+ manifestVersion?: "2" | "3" | undefined;
2884
+ uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
2885
+ hasContentScript?: boolean | undefined;
2886
+ hasBackgroundWorker?: boolean | undefined;
2887
+ }>>;
1512
2888
  }, z.ZodTypeAny, "passthrough">>>;
1513
2889
  }, z.ZodTypeAny, "passthrough">>;
1514
2890
  export type ParsedConfig = z.infer<typeof ConfigSchema>;