@zigrivers/scaffold 3.9.1 → 3.10.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 (218) hide show
  1. package/README.md +39 -8
  2. package/dist/cli/commands/adopt.d.ts +2 -0
  3. package/dist/cli/commands/adopt.d.ts.map +1 -1
  4. package/dist/cli/commands/adopt.js +428 -58
  5. package/dist/cli/commands/adopt.js.map +1 -1
  6. package/dist/cli/commands/adopt.performance.test.d.ts +2 -0
  7. package/dist/cli/commands/adopt.performance.test.d.ts.map +1 -0
  8. package/dist/cli/commands/adopt.performance.test.js +30 -0
  9. package/dist/cli/commands/adopt.performance.test.js.map +1 -0
  10. package/dist/cli/commands/adopt.test.js +18 -6
  11. package/dist/cli/commands/adopt.test.js.map +1 -1
  12. package/dist/cli/commands/init.d.ts.map +1 -1
  13. package/dist/cli/commands/init.js +70 -207
  14. package/dist/cli/commands/init.js.map +1 -1
  15. package/dist/cli/commands/init.test.js +114 -3
  16. package/dist/cli/commands/init.test.js.map +1 -1
  17. package/dist/cli/init-flag-families.d.ts +86 -0
  18. package/dist/cli/init-flag-families.d.ts.map +1 -0
  19. package/dist/cli/init-flag-families.js +418 -0
  20. package/dist/cli/init-flag-families.js.map +1 -0
  21. package/dist/cli/init-flag-families.test.d.ts +2 -0
  22. package/dist/cli/init-flag-families.test.d.ts.map +1 -0
  23. package/dist/cli/init-flag-families.test.js +268 -0
  24. package/dist/cli/init-flag-families.test.js.map +1 -0
  25. package/dist/cli/utils/coerce.d.ts +8 -0
  26. package/dist/cli/utils/coerce.d.ts.map +1 -0
  27. package/dist/cli/utils/coerce.js +12 -0
  28. package/dist/cli/utils/coerce.js.map +1 -0
  29. package/dist/cli/utils/coerce.test.d.ts +2 -0
  30. package/dist/cli/utils/coerce.test.d.ts.map +1 -0
  31. package/dist/cli/utils/coerce.test.js +29 -0
  32. package/dist/cli/utils/coerce.test.js.map +1 -0
  33. package/dist/config/schema.d.ts +6 -6
  34. package/dist/config/schema.js +2 -2
  35. package/dist/config/schema.js.map +1 -1
  36. package/dist/config/schema.test.js +10 -4
  37. package/dist/config/schema.test.js.map +1 -1
  38. package/dist/e2e/adopt-multi-type.test.d.ts +2 -0
  39. package/dist/e2e/adopt-multi-type.test.d.ts.map +1 -0
  40. package/dist/e2e/adopt-multi-type.test.js +35 -0
  41. package/dist/e2e/adopt-multi-type.test.js.map +1 -0
  42. package/dist/e2e/game-pipeline.test.js +1 -1
  43. package/dist/e2e/game-pipeline.test.js.map +1 -1
  44. package/dist/e2e/project-type-overlays.test.js +19 -18
  45. package/dist/e2e/project-type-overlays.test.js.map +1 -1
  46. package/dist/project/__frozen-schemas__/schema-v3.9.2.d.ts +2891 -0
  47. package/dist/project/__frozen-schemas__/schema-v3.9.2.d.ts.map +1 -0
  48. package/dist/project/__frozen-schemas__/schema-v3.9.2.js +177 -0
  49. package/dist/project/__frozen-schemas__/schema-v3.9.2.js.map +1 -0
  50. package/dist/project/adopt.d.ts +38 -2
  51. package/dist/project/adopt.d.ts.map +1 -1
  52. package/dist/project/adopt.error-messages.test.d.ts +2 -0
  53. package/dist/project/adopt.error-messages.test.d.ts.map +1 -0
  54. package/dist/project/adopt.error-messages.test.js +112 -0
  55. package/dist/project/adopt.error-messages.test.js.map +1 -0
  56. package/dist/project/adopt.forward-compat.test.d.ts +2 -0
  57. package/dist/project/adopt.forward-compat.test.d.ts.map +1 -0
  58. package/dist/project/adopt.forward-compat.test.js +71 -0
  59. package/dist/project/adopt.forward-compat.test.js.map +1 -0
  60. package/dist/project/adopt.js +218 -27
  61. package/dist/project/adopt.js.map +1 -1
  62. package/dist/project/adopt.merge.test.d.ts +2 -0
  63. package/dist/project/adopt.merge.test.d.ts.map +1 -0
  64. package/dist/project/adopt.merge.test.js +62 -0
  65. package/dist/project/adopt.merge.test.js.map +1 -0
  66. package/dist/project/adopt.re-adoption.test.d.ts +2 -0
  67. package/dist/project/adopt.re-adoption.test.d.ts.map +1 -0
  68. package/dist/project/adopt.re-adoption.test.js +222 -0
  69. package/dist/project/adopt.re-adoption.test.js.map +1 -0
  70. package/dist/project/adopt.test.js +72 -27
  71. package/dist/project/adopt.test.js.map +1 -1
  72. package/dist/project/detectors/backend.d.ts +4 -0
  73. package/dist/project/detectors/backend.d.ts.map +1 -0
  74. package/dist/project/detectors/backend.js +199 -0
  75. package/dist/project/detectors/backend.js.map +1 -0
  76. package/dist/project/detectors/backend.test.d.ts +2 -0
  77. package/dist/project/detectors/backend.test.d.ts.map +1 -0
  78. package/dist/project/detectors/backend.test.js +64 -0
  79. package/dist/project/detectors/backend.test.js.map +1 -0
  80. package/dist/project/detectors/browser-extension.d.ts +4 -0
  81. package/dist/project/detectors/browser-extension.d.ts.map +1 -0
  82. package/dist/project/detectors/browser-extension.js +61 -0
  83. package/dist/project/detectors/browser-extension.js.map +1 -0
  84. package/dist/project/detectors/browser-extension.test.d.ts +2 -0
  85. package/dist/project/detectors/browser-extension.test.d.ts.map +1 -0
  86. package/dist/project/detectors/browser-extension.test.js +64 -0
  87. package/dist/project/detectors/browser-extension.test.js.map +1 -0
  88. package/dist/project/detectors/cli.d.ts +4 -0
  89. package/dist/project/detectors/cli.d.ts.map +1 -0
  90. package/dist/project/detectors/cli.js +68 -0
  91. package/dist/project/detectors/cli.js.map +1 -0
  92. package/dist/project/detectors/cli.test.d.ts +2 -0
  93. package/dist/project/detectors/cli.test.d.ts.map +1 -0
  94. package/dist/project/detectors/cli.test.js +70 -0
  95. package/dist/project/detectors/cli.test.js.map +1 -0
  96. package/dist/project/detectors/context.d.ts +105 -0
  97. package/dist/project/detectors/context.d.ts.map +1 -0
  98. package/dist/project/detectors/context.js +652 -0
  99. package/dist/project/detectors/context.js.map +1 -0
  100. package/dist/project/detectors/context.test.d.ts +2 -0
  101. package/dist/project/detectors/context.test.d.ts.map +1 -0
  102. package/dist/project/detectors/context.test.js +240 -0
  103. package/dist/project/detectors/context.test.js.map +1 -0
  104. package/dist/project/detectors/data-pipeline.d.ts +4 -0
  105. package/dist/project/detectors/data-pipeline.d.ts.map +1 -0
  106. package/dist/project/detectors/data-pipeline.js +97 -0
  107. package/dist/project/detectors/data-pipeline.js.map +1 -0
  108. package/dist/project/detectors/data-pipeline.test.d.ts +2 -0
  109. package/dist/project/detectors/data-pipeline.test.d.ts.map +1 -0
  110. package/dist/project/detectors/data-pipeline.test.js +67 -0
  111. package/dist/project/detectors/data-pipeline.test.js.map +1 -0
  112. package/dist/project/detectors/disambiguate.d.ts +12 -0
  113. package/dist/project/detectors/disambiguate.d.ts.map +1 -0
  114. package/dist/project/detectors/disambiguate.js +87 -0
  115. package/dist/project/detectors/disambiguate.js.map +1 -0
  116. package/dist/project/detectors/disambiguate.test.d.ts +2 -0
  117. package/dist/project/detectors/disambiguate.test.d.ts.map +1 -0
  118. package/dist/project/detectors/disambiguate.test.js +114 -0
  119. package/dist/project/detectors/disambiguate.test.js.map +1 -0
  120. package/dist/project/detectors/file-text-match.d.ts +3 -0
  121. package/dist/project/detectors/file-text-match.d.ts.map +1 -0
  122. package/dist/project/detectors/file-text-match.js +60 -0
  123. package/dist/project/detectors/file-text-match.js.map +1 -0
  124. package/dist/project/detectors/file-text-match.test.d.ts +2 -0
  125. package/dist/project/detectors/file-text-match.test.d.ts.map +1 -0
  126. package/dist/project/detectors/file-text-match.test.js +81 -0
  127. package/dist/project/detectors/file-text-match.test.js.map +1 -0
  128. package/dist/project/detectors/game.d.ts +18 -0
  129. package/dist/project/detectors/game.d.ts.map +1 -0
  130. package/dist/project/detectors/game.js +83 -0
  131. package/dist/project/detectors/game.js.map +1 -0
  132. package/dist/project/detectors/game.test.d.ts +2 -0
  133. package/dist/project/detectors/game.test.d.ts.map +1 -0
  134. package/dist/project/detectors/game.test.js +87 -0
  135. package/dist/project/detectors/game.test.js.map +1 -0
  136. package/dist/project/detectors/index.d.ts +5 -0
  137. package/dist/project/detectors/index.d.ts.map +1 -0
  138. package/dist/project/detectors/index.js +29 -0
  139. package/dist/project/detectors/index.js.map +1 -0
  140. package/dist/project/detectors/library.d.ts +4 -0
  141. package/dist/project/detectors/library.d.ts.map +1 -0
  142. package/dist/project/detectors/library.js +117 -0
  143. package/dist/project/detectors/library.js.map +1 -0
  144. package/dist/project/detectors/library.test.d.ts +2 -0
  145. package/dist/project/detectors/library.test.d.ts.map +1 -0
  146. package/dist/project/detectors/library.test.js +73 -0
  147. package/dist/project/detectors/library.test.js.map +1 -0
  148. package/dist/project/detectors/ml.d.ts +4 -0
  149. package/dist/project/detectors/ml.d.ts.map +1 -0
  150. package/dist/project/detectors/ml.js +112 -0
  151. package/dist/project/detectors/ml.js.map +1 -0
  152. package/dist/project/detectors/ml.test.d.ts +2 -0
  153. package/dist/project/detectors/ml.test.d.ts.map +1 -0
  154. package/dist/project/detectors/ml.test.js +75 -0
  155. package/dist/project/detectors/ml.test.js.map +1 -0
  156. package/dist/project/detectors/mobile-app.d.ts +4 -0
  157. package/dist/project/detectors/mobile-app.d.ts.map +1 -0
  158. package/dist/project/detectors/mobile-app.js +58 -0
  159. package/dist/project/detectors/mobile-app.js.map +1 -0
  160. package/dist/project/detectors/mobile-app.test.d.ts +2 -0
  161. package/dist/project/detectors/mobile-app.test.d.ts.map +1 -0
  162. package/dist/project/detectors/mobile-app.test.js +57 -0
  163. package/dist/project/detectors/mobile-app.test.js.map +1 -0
  164. package/dist/project/detectors/required-fields.d.ts +4 -0
  165. package/dist/project/detectors/required-fields.d.ts.map +1 -0
  166. package/dist/project/detectors/required-fields.js +13 -0
  167. package/dist/project/detectors/required-fields.js.map +1 -0
  168. package/dist/project/detectors/required-fields.test.d.ts +2 -0
  169. package/dist/project/detectors/required-fields.test.d.ts.map +1 -0
  170. package/dist/project/detectors/required-fields.test.js +24 -0
  171. package/dist/project/detectors/required-fields.test.js.map +1 -0
  172. package/dist/project/detectors/resolve-detection.d.ts +18 -0
  173. package/dist/project/detectors/resolve-detection.d.ts.map +1 -0
  174. package/dist/project/detectors/resolve-detection.js +184 -0
  175. package/dist/project/detectors/resolve-detection.js.map +1 -0
  176. package/dist/project/detectors/resolve-detection.test.d.ts +2 -0
  177. package/dist/project/detectors/resolve-detection.test.d.ts.map +1 -0
  178. package/dist/project/detectors/resolve-detection.test.js +158 -0
  179. package/dist/project/detectors/resolve-detection.test.js.map +1 -0
  180. package/dist/project/detectors/types.d.ts +56 -0
  181. package/dist/project/detectors/types.d.ts.map +1 -0
  182. package/dist/project/detectors/types.js +9 -0
  183. package/dist/project/detectors/types.js.map +1 -0
  184. package/dist/project/detectors/web-app.d.ts +15 -0
  185. package/dist/project/detectors/web-app.d.ts.map +1 -0
  186. package/dist/project/detectors/web-app.js +228 -0
  187. package/dist/project/detectors/web-app.js.map +1 -0
  188. package/dist/project/detectors/web-app.test.d.ts +2 -0
  189. package/dist/project/detectors/web-app.test.d.ts.map +1 -0
  190. package/dist/project/detectors/web-app.test.js +95 -0
  191. package/dist/project/detectors/web-app.test.js.map +1 -0
  192. package/dist/types/config.d.ts +41 -17
  193. package/dist/types/config.d.ts.map +1 -1
  194. package/dist/types/enums.d.ts +2 -1
  195. package/dist/types/enums.d.ts.map +1 -1
  196. package/dist/types/enums.js +1 -0
  197. package/dist/types/enums.js.map +1 -1
  198. package/dist/utils/errors.d.ts +7 -0
  199. package/dist/utils/errors.d.ts.map +1 -1
  200. package/dist/utils/errors.js +38 -0
  201. package/dist/utils/errors.js.map +1 -1
  202. package/dist/utils/errors.test.js +42 -1
  203. package/dist/utils/errors.test.js.map +1 -1
  204. package/dist/wizard/flags.d.ts +82 -0
  205. package/dist/wizard/flags.d.ts.map +1 -0
  206. package/dist/wizard/flags.js +19 -0
  207. package/dist/wizard/flags.js.map +1 -0
  208. package/dist/wizard/questions.d.ts +10 -45
  209. package/dist/wizard/questions.d.ts.map +1 -1
  210. package/dist/wizard/questions.js +119 -156
  211. package/dist/wizard/questions.js.map +1 -1
  212. package/dist/wizard/questions.test.js +73 -55
  213. package/dist/wizard/questions.test.js.map +1 -1
  214. package/dist/wizard/wizard.d.ts +11 -45
  215. package/dist/wizard/wizard.d.ts.map +1 -1
  216. package/dist/wizard/wizard.js +10 -46
  217. package/dist/wizard/wizard.js.map +1 -1
  218. package/package.json +6 -2
@@ -0,0 +1,2891 @@
1
+ import { z } from 'zod';
2
+ export declare const ProjectTypeSchema: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>;
3
+ export declare const WebAppConfigSchema: z.ZodObject<{
4
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
5
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
6
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
7
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
8
+ }, "strict", z.ZodTypeAny, {
9
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
10
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
11
+ realtime: "none" | "websocket" | "sse";
12
+ authFlow: "none" | "session" | "oauth" | "passkey";
13
+ }, {
14
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
15
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
16
+ realtime?: "none" | "websocket" | "sse" | undefined;
17
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
18
+ }>;
19
+ export declare const BackendConfigSchema: z.ZodObject<{
20
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
21
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
22
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
23
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
24
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
25
+ }, "strict", z.ZodTypeAny, {
26
+ deployTarget: "serverless" | "container" | "long-running";
27
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
28
+ dataStore: ("relational" | "document" | "key-value")[];
29
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
30
+ asyncMessaging: "none" | "queue" | "event-driven";
31
+ }, {
32
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
33
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
34
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
35
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
36
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
37
+ }>;
38
+ export declare const CliConfigSchema: z.ZodObject<{
39
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
40
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
41
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
42
+ }, "strict", z.ZodTypeAny, {
43
+ interactivity: "interactive" | "hybrid" | "args-only";
44
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
45
+ hasStructuredOutput: boolean;
46
+ }, {
47
+ interactivity: "interactive" | "hybrid" | "args-only";
48
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
49
+ hasStructuredOutput?: boolean | undefined;
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
+ }>;
137
+ export declare const GameConfigSchema: z.ZodObject<{
138
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
139
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
140
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
141
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
142
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
143
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
144
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
145
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
146
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
147
+ hasModding: z.ZodDefault<z.ZodBoolean>;
148
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
149
+ }, "strict", z.ZodTypeAny, {
150
+ engine: "custom" | "unity" | "unreal" | "godot";
151
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
152
+ narrative: "none" | "light" | "heavy";
153
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
154
+ economy: "none" | "both" | "progression" | "monetized";
155
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
156
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
157
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
158
+ supportedLocales: string[];
159
+ hasModding: boolean;
160
+ npcAiComplexity: "none" | "simple" | "complex";
161
+ }, {
162
+ engine: "custom" | "unity" | "unreal" | "godot";
163
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
164
+ narrative?: "none" | "light" | "heavy" | undefined;
165
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
166
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
167
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
168
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
169
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
170
+ supportedLocales?: string[] | undefined;
171
+ hasModding?: boolean | undefined;
172
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
173
+ }>;
174
+ export declare const ConfigSchema: z.ZodObject<{
175
+ version: z.ZodLiteral<2>;
176
+ methodology: z.ZodEnum<["deep", "mvp", "custom"]>;
177
+ custom: z.ZodOptional<z.ZodObject<{
178
+ default_depth: z.ZodOptional<z.ZodNumber>;
179
+ steps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
180
+ enabled: z.ZodOptional<z.ZodBoolean>;
181
+ depth: z.ZodOptional<z.ZodNumber>;
182
+ }, "strict", z.ZodTypeAny, {
183
+ enabled?: boolean | undefined;
184
+ depth?: number | undefined;
185
+ }, {
186
+ enabled?: boolean | undefined;
187
+ depth?: number | undefined;
188
+ }>>>;
189
+ }, "strict", z.ZodTypeAny, {
190
+ default_depth?: number | undefined;
191
+ steps?: Record<string, {
192
+ enabled?: boolean | undefined;
193
+ depth?: number | undefined;
194
+ }> | undefined;
195
+ }, {
196
+ default_depth?: number | undefined;
197
+ steps?: Record<string, {
198
+ enabled?: boolean | undefined;
199
+ depth?: number | undefined;
200
+ }> | undefined;
201
+ }>>;
202
+ platforms: z.ZodArray<z.ZodEnum<["claude-code", "codex", "gemini"]>, "many">;
203
+ project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
204
+ name: z.ZodOptional<z.ZodString>;
205
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
206
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
207
+ gameConfig: z.ZodOptional<z.ZodObject<{
208
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
209
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
210
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
211
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
212
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
213
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
214
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
215
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
216
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
217
+ hasModding: z.ZodDefault<z.ZodBoolean>;
218
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
219
+ }, "strict", z.ZodTypeAny, {
220
+ engine: "custom" | "unity" | "unreal" | "godot";
221
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
222
+ narrative: "none" | "light" | "heavy";
223
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
224
+ economy: "none" | "both" | "progression" | "monetized";
225
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
226
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
227
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
228
+ supportedLocales: string[];
229
+ hasModding: boolean;
230
+ npcAiComplexity: "none" | "simple" | "complex";
231
+ }, {
232
+ engine: "custom" | "unity" | "unreal" | "godot";
233
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
234
+ narrative?: "none" | "light" | "heavy" | undefined;
235
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
236
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
237
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
238
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
239
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
240
+ supportedLocales?: string[] | undefined;
241
+ hasModding?: boolean | undefined;
242
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
243
+ }>>;
244
+ webAppConfig: z.ZodOptional<z.ZodObject<{
245
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
246
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
247
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
248
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
249
+ }, "strict", z.ZodTypeAny, {
250
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
251
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
252
+ realtime: "none" | "websocket" | "sse";
253
+ authFlow: "none" | "session" | "oauth" | "passkey";
254
+ }, {
255
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
256
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
257
+ realtime?: "none" | "websocket" | "sse" | undefined;
258
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
259
+ }>>;
260
+ backendConfig: z.ZodOptional<z.ZodObject<{
261
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
262
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
263
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
264
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
265
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
266
+ }, "strict", z.ZodTypeAny, {
267
+ deployTarget: "serverless" | "container" | "long-running";
268
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
269
+ dataStore: ("relational" | "document" | "key-value")[];
270
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
271
+ asyncMessaging: "none" | "queue" | "event-driven";
272
+ }, {
273
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
274
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
275
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
276
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
277
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
278
+ }>>;
279
+ cliConfig: z.ZodOptional<z.ZodObject<{
280
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
281
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
282
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
283
+ }, "strict", z.ZodTypeAny, {
284
+ interactivity: "interactive" | "hybrid" | "args-only";
285
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
286
+ hasStructuredOutput: boolean;
287
+ }, {
288
+ interactivity: "interactive" | "hybrid" | "args-only";
289
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
290
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
378
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
379
+ name: z.ZodOptional<z.ZodString>;
380
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
381
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
382
+ gameConfig: z.ZodOptional<z.ZodObject<{
383
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
384
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
385
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
386
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
387
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
388
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
389
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
390
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
391
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
392
+ hasModding: z.ZodDefault<z.ZodBoolean>;
393
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
394
+ }, "strict", z.ZodTypeAny, {
395
+ engine: "custom" | "unity" | "unreal" | "godot";
396
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
397
+ narrative: "none" | "light" | "heavy";
398
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
399
+ economy: "none" | "both" | "progression" | "monetized";
400
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
401
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
402
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
403
+ supportedLocales: string[];
404
+ hasModding: boolean;
405
+ npcAiComplexity: "none" | "simple" | "complex";
406
+ }, {
407
+ engine: "custom" | "unity" | "unreal" | "godot";
408
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
409
+ narrative?: "none" | "light" | "heavy" | undefined;
410
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
411
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
412
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
413
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
414
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
415
+ supportedLocales?: string[] | undefined;
416
+ hasModding?: boolean | undefined;
417
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
418
+ }>>;
419
+ webAppConfig: z.ZodOptional<z.ZodObject<{
420
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
421
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
422
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
423
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
424
+ }, "strict", z.ZodTypeAny, {
425
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
426
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
427
+ realtime: "none" | "websocket" | "sse";
428
+ authFlow: "none" | "session" | "oauth" | "passkey";
429
+ }, {
430
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
431
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
432
+ realtime?: "none" | "websocket" | "sse" | undefined;
433
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
434
+ }>>;
435
+ backendConfig: z.ZodOptional<z.ZodObject<{
436
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
437
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
438
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
439
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
440
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
441
+ }, "strict", z.ZodTypeAny, {
442
+ deployTarget: "serverless" | "container" | "long-running";
443
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
444
+ dataStore: ("relational" | "document" | "key-value")[];
445
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
446
+ asyncMessaging: "none" | "queue" | "event-driven";
447
+ }, {
448
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
449
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
450
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
451
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
452
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
453
+ }>>;
454
+ cliConfig: z.ZodOptional<z.ZodObject<{
455
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
456
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
457
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
458
+ }, "strict", z.ZodTypeAny, {
459
+ interactivity: "interactive" | "hybrid" | "args-only";
460
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
461
+ hasStructuredOutput: boolean;
462
+ }, {
463
+ interactivity: "interactive" | "hybrid" | "args-only";
464
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
465
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
553
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
554
+ name: z.ZodOptional<z.ZodString>;
555
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
556
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
557
+ gameConfig: z.ZodOptional<z.ZodObject<{
558
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
559
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
560
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
561
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
562
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
563
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
564
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
565
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
566
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
567
+ hasModding: z.ZodDefault<z.ZodBoolean>;
568
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
569
+ }, "strict", z.ZodTypeAny, {
570
+ engine: "custom" | "unity" | "unreal" | "godot";
571
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
572
+ narrative: "none" | "light" | "heavy";
573
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
574
+ economy: "none" | "both" | "progression" | "monetized";
575
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
576
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
577
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
578
+ supportedLocales: string[];
579
+ hasModding: boolean;
580
+ npcAiComplexity: "none" | "simple" | "complex";
581
+ }, {
582
+ engine: "custom" | "unity" | "unreal" | "godot";
583
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
584
+ narrative?: "none" | "light" | "heavy" | undefined;
585
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
586
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
587
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
588
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
589
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
590
+ supportedLocales?: string[] | undefined;
591
+ hasModding?: boolean | undefined;
592
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
593
+ }>>;
594
+ webAppConfig: z.ZodOptional<z.ZodObject<{
595
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
596
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
597
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
598
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
599
+ }, "strict", z.ZodTypeAny, {
600
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
601
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
602
+ realtime: "none" | "websocket" | "sse";
603
+ authFlow: "none" | "session" | "oauth" | "passkey";
604
+ }, {
605
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
606
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
607
+ realtime?: "none" | "websocket" | "sse" | undefined;
608
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
609
+ }>>;
610
+ backendConfig: z.ZodOptional<z.ZodObject<{
611
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
612
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
613
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
614
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
615
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
616
+ }, "strict", z.ZodTypeAny, {
617
+ deployTarget: "serverless" | "container" | "long-running";
618
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
619
+ dataStore: ("relational" | "document" | "key-value")[];
620
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
621
+ asyncMessaging: "none" | "queue" | "event-driven";
622
+ }, {
623
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
624
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
625
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
626
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
627
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
628
+ }>>;
629
+ cliConfig: z.ZodOptional<z.ZodObject<{
630
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
631
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
632
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
633
+ }, "strict", z.ZodTypeAny, {
634
+ interactivity: "interactive" | "hybrid" | "args-only";
635
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
636
+ hasStructuredOutput: boolean;
637
+ }, {
638
+ interactivity: "interactive" | "hybrid" | "args-only";
639
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
640
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
728
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
729
+ name: z.ZodOptional<z.ZodString>;
730
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
731
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
732
+ gameConfig: z.ZodOptional<z.ZodObject<{
733
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
734
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
735
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
736
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
737
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
738
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
739
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
740
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
741
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
742
+ hasModding: z.ZodDefault<z.ZodBoolean>;
743
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
744
+ }, "strict", z.ZodTypeAny, {
745
+ engine: "custom" | "unity" | "unreal" | "godot";
746
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
747
+ narrative: "none" | "light" | "heavy";
748
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
749
+ economy: "none" | "both" | "progression" | "monetized";
750
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
751
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
752
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
753
+ supportedLocales: string[];
754
+ hasModding: boolean;
755
+ npcAiComplexity: "none" | "simple" | "complex";
756
+ }, {
757
+ engine: "custom" | "unity" | "unreal" | "godot";
758
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
759
+ narrative?: "none" | "light" | "heavy" | undefined;
760
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
761
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
762
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
763
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
764
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
765
+ supportedLocales?: string[] | undefined;
766
+ hasModding?: boolean | undefined;
767
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
768
+ }>>;
769
+ webAppConfig: z.ZodOptional<z.ZodObject<{
770
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
771
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
772
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
773
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
774
+ }, "strict", z.ZodTypeAny, {
775
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
776
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
777
+ realtime: "none" | "websocket" | "sse";
778
+ authFlow: "none" | "session" | "oauth" | "passkey";
779
+ }, {
780
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
781
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
782
+ realtime?: "none" | "websocket" | "sse" | undefined;
783
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
784
+ }>>;
785
+ backendConfig: z.ZodOptional<z.ZodObject<{
786
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
787
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
788
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
789
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
790
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
791
+ }, "strict", z.ZodTypeAny, {
792
+ deployTarget: "serverless" | "container" | "long-running";
793
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
794
+ dataStore: ("relational" | "document" | "key-value")[];
795
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
796
+ asyncMessaging: "none" | "queue" | "event-driven";
797
+ }, {
798
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
799
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
800
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
801
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
802
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
803
+ }>>;
804
+ cliConfig: z.ZodOptional<z.ZodObject<{
805
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
806
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
807
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
808
+ }, "strict", z.ZodTypeAny, {
809
+ interactivity: "interactive" | "hybrid" | "args-only";
810
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
811
+ hasStructuredOutput: boolean;
812
+ }, {
813
+ interactivity: "interactive" | "hybrid" | "args-only";
814
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
815
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
903
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
904
+ name: z.ZodOptional<z.ZodString>;
905
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
906
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
907
+ gameConfig: z.ZodOptional<z.ZodObject<{
908
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
909
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
910
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
911
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
912
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
913
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
914
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
915
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
916
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
917
+ hasModding: z.ZodDefault<z.ZodBoolean>;
918
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
919
+ }, "strict", z.ZodTypeAny, {
920
+ engine: "custom" | "unity" | "unreal" | "godot";
921
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
922
+ narrative: "none" | "light" | "heavy";
923
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
924
+ economy: "none" | "both" | "progression" | "monetized";
925
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
926
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
927
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
928
+ supportedLocales: string[];
929
+ hasModding: boolean;
930
+ npcAiComplexity: "none" | "simple" | "complex";
931
+ }, {
932
+ engine: "custom" | "unity" | "unreal" | "godot";
933
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
934
+ narrative?: "none" | "light" | "heavy" | undefined;
935
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
936
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
937
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
938
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
939
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
940
+ supportedLocales?: string[] | undefined;
941
+ hasModding?: boolean | undefined;
942
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
943
+ }>>;
944
+ webAppConfig: z.ZodOptional<z.ZodObject<{
945
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
946
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
947
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
948
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
949
+ }, "strict", z.ZodTypeAny, {
950
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
951
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
952
+ realtime: "none" | "websocket" | "sse";
953
+ authFlow: "none" | "session" | "oauth" | "passkey";
954
+ }, {
955
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
956
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
957
+ realtime?: "none" | "websocket" | "sse" | undefined;
958
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
959
+ }>>;
960
+ backendConfig: z.ZodOptional<z.ZodObject<{
961
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
962
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
963
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
964
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
965
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
966
+ }, "strict", z.ZodTypeAny, {
967
+ deployTarget: "serverless" | "container" | "long-running";
968
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
969
+ dataStore: ("relational" | "document" | "key-value")[];
970
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
971
+ asyncMessaging: "none" | "queue" | "event-driven";
972
+ }, {
973
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
974
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
975
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
976
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
977
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
978
+ }>>;
979
+ cliConfig: z.ZodOptional<z.ZodObject<{
980
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
981
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
982
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
983
+ }, "strict", z.ZodTypeAny, {
984
+ interactivity: "interactive" | "hybrid" | "args-only";
985
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
986
+ hasStructuredOutput: boolean;
987
+ }, {
988
+ interactivity: "interactive" | "hybrid" | "args-only";
989
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
990
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
1078
+ }, z.ZodTypeAny, "passthrough">>>;
1079
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1080
+ version: z.ZodLiteral<2>;
1081
+ methodology: z.ZodEnum<["deep", "mvp", "custom"]>;
1082
+ custom: z.ZodOptional<z.ZodObject<{
1083
+ default_depth: z.ZodOptional<z.ZodNumber>;
1084
+ steps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1085
+ enabled: z.ZodOptional<z.ZodBoolean>;
1086
+ depth: z.ZodOptional<z.ZodNumber>;
1087
+ }, "strict", z.ZodTypeAny, {
1088
+ enabled?: boolean | undefined;
1089
+ depth?: number | undefined;
1090
+ }, {
1091
+ enabled?: boolean | undefined;
1092
+ depth?: number | undefined;
1093
+ }>>>;
1094
+ }, "strict", z.ZodTypeAny, {
1095
+ default_depth?: number | undefined;
1096
+ steps?: Record<string, {
1097
+ enabled?: boolean | undefined;
1098
+ depth?: number | undefined;
1099
+ }> | undefined;
1100
+ }, {
1101
+ default_depth?: number | undefined;
1102
+ steps?: Record<string, {
1103
+ enabled?: boolean | undefined;
1104
+ depth?: number | undefined;
1105
+ }> | undefined;
1106
+ }>>;
1107
+ platforms: z.ZodArray<z.ZodEnum<["claude-code", "codex", "gemini"]>, "many">;
1108
+ project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1109
+ name: z.ZodOptional<z.ZodString>;
1110
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1111
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1112
+ gameConfig: z.ZodOptional<z.ZodObject<{
1113
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1114
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
1115
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
1116
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
1117
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
1118
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
1119
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
1120
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
1121
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1122
+ hasModding: z.ZodDefault<z.ZodBoolean>;
1123
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
1124
+ }, "strict", z.ZodTypeAny, {
1125
+ engine: "custom" | "unity" | "unreal" | "godot";
1126
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
1127
+ narrative: "none" | "light" | "heavy";
1128
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1129
+ economy: "none" | "both" | "progression" | "monetized";
1130
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1131
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1132
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1133
+ supportedLocales: string[];
1134
+ hasModding: boolean;
1135
+ npcAiComplexity: "none" | "simple" | "complex";
1136
+ }, {
1137
+ engine: "custom" | "unity" | "unreal" | "godot";
1138
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1139
+ narrative?: "none" | "light" | "heavy" | undefined;
1140
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1141
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1142
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1143
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1144
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1145
+ supportedLocales?: string[] | undefined;
1146
+ hasModding?: boolean | undefined;
1147
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
1148
+ }>>;
1149
+ webAppConfig: z.ZodOptional<z.ZodObject<{
1150
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
1151
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
1152
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
1153
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
1154
+ }, "strict", z.ZodTypeAny, {
1155
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1156
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
1157
+ realtime: "none" | "websocket" | "sse";
1158
+ authFlow: "none" | "session" | "oauth" | "passkey";
1159
+ }, {
1160
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1161
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
1162
+ realtime?: "none" | "websocket" | "sse" | undefined;
1163
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
1164
+ }>>;
1165
+ backendConfig: z.ZodOptional<z.ZodObject<{
1166
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
1167
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
1168
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
1169
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
1170
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
1171
+ }, "strict", z.ZodTypeAny, {
1172
+ deployTarget: "serverless" | "container" | "long-running";
1173
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1174
+ dataStore: ("relational" | "document" | "key-value")[];
1175
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
1176
+ asyncMessaging: "none" | "queue" | "event-driven";
1177
+ }, {
1178
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1179
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
1180
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
1181
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
1182
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
1183
+ }>>;
1184
+ cliConfig: z.ZodOptional<z.ZodObject<{
1185
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
1186
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
1187
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
1188
+ }, "strict", z.ZodTypeAny, {
1189
+ interactivity: "interactive" | "hybrid" | "args-only";
1190
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
1191
+ hasStructuredOutput: boolean;
1192
+ }, {
1193
+ interactivity: "interactive" | "hybrid" | "args-only";
1194
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1195
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
1283
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1284
+ name: z.ZodOptional<z.ZodString>;
1285
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1286
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1287
+ gameConfig: z.ZodOptional<z.ZodObject<{
1288
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1289
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
1290
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
1291
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
1292
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
1293
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
1294
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
1295
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
1296
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1297
+ hasModding: z.ZodDefault<z.ZodBoolean>;
1298
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
1299
+ }, "strict", z.ZodTypeAny, {
1300
+ engine: "custom" | "unity" | "unreal" | "godot";
1301
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
1302
+ narrative: "none" | "light" | "heavy";
1303
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1304
+ economy: "none" | "both" | "progression" | "monetized";
1305
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1306
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1307
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1308
+ supportedLocales: string[];
1309
+ hasModding: boolean;
1310
+ npcAiComplexity: "none" | "simple" | "complex";
1311
+ }, {
1312
+ engine: "custom" | "unity" | "unreal" | "godot";
1313
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1314
+ narrative?: "none" | "light" | "heavy" | undefined;
1315
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1316
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1317
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1318
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1319
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1320
+ supportedLocales?: string[] | undefined;
1321
+ hasModding?: boolean | undefined;
1322
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
1323
+ }>>;
1324
+ webAppConfig: z.ZodOptional<z.ZodObject<{
1325
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
1326
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
1327
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
1328
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
1329
+ }, "strict", z.ZodTypeAny, {
1330
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1331
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
1332
+ realtime: "none" | "websocket" | "sse";
1333
+ authFlow: "none" | "session" | "oauth" | "passkey";
1334
+ }, {
1335
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1336
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
1337
+ realtime?: "none" | "websocket" | "sse" | undefined;
1338
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
1339
+ }>>;
1340
+ backendConfig: z.ZodOptional<z.ZodObject<{
1341
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
1342
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
1343
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
1344
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
1345
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
1346
+ }, "strict", z.ZodTypeAny, {
1347
+ deployTarget: "serverless" | "container" | "long-running";
1348
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1349
+ dataStore: ("relational" | "document" | "key-value")[];
1350
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
1351
+ asyncMessaging: "none" | "queue" | "event-driven";
1352
+ }, {
1353
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1354
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
1355
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
1356
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
1357
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
1358
+ }>>;
1359
+ cliConfig: z.ZodOptional<z.ZodObject<{
1360
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
1361
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
1362
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
1363
+ }, "strict", z.ZodTypeAny, {
1364
+ interactivity: "interactive" | "hybrid" | "args-only";
1365
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
1366
+ hasStructuredOutput: boolean;
1367
+ }, {
1368
+ interactivity: "interactive" | "hybrid" | "args-only";
1369
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1370
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
1458
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1459
+ name: z.ZodOptional<z.ZodString>;
1460
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1461
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1462
+ gameConfig: z.ZodOptional<z.ZodObject<{
1463
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1464
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
1465
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
1466
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
1467
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
1468
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
1469
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
1470
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
1471
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1472
+ hasModding: z.ZodDefault<z.ZodBoolean>;
1473
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
1474
+ }, "strict", z.ZodTypeAny, {
1475
+ engine: "custom" | "unity" | "unreal" | "godot";
1476
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
1477
+ narrative: "none" | "light" | "heavy";
1478
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1479
+ economy: "none" | "both" | "progression" | "monetized";
1480
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1481
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1482
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1483
+ supportedLocales: string[];
1484
+ hasModding: boolean;
1485
+ npcAiComplexity: "none" | "simple" | "complex";
1486
+ }, {
1487
+ engine: "custom" | "unity" | "unreal" | "godot";
1488
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1489
+ narrative?: "none" | "light" | "heavy" | undefined;
1490
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1491
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1492
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1493
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1494
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1495
+ supportedLocales?: string[] | undefined;
1496
+ hasModding?: boolean | undefined;
1497
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
1498
+ }>>;
1499
+ webAppConfig: z.ZodOptional<z.ZodObject<{
1500
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
1501
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
1502
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
1503
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
1504
+ }, "strict", z.ZodTypeAny, {
1505
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1506
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
1507
+ realtime: "none" | "websocket" | "sse";
1508
+ authFlow: "none" | "session" | "oauth" | "passkey";
1509
+ }, {
1510
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1511
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
1512
+ realtime?: "none" | "websocket" | "sse" | undefined;
1513
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
1514
+ }>>;
1515
+ backendConfig: z.ZodOptional<z.ZodObject<{
1516
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
1517
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
1518
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
1519
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
1520
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
1521
+ }, "strict", z.ZodTypeAny, {
1522
+ deployTarget: "serverless" | "container" | "long-running";
1523
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1524
+ dataStore: ("relational" | "document" | "key-value")[];
1525
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
1526
+ asyncMessaging: "none" | "queue" | "event-driven";
1527
+ }, {
1528
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1529
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
1530
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
1531
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
1532
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
1533
+ }>>;
1534
+ cliConfig: z.ZodOptional<z.ZodObject<{
1535
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
1536
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
1537
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
1538
+ }, "strict", z.ZodTypeAny, {
1539
+ interactivity: "interactive" | "hybrid" | "args-only";
1540
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
1541
+ hasStructuredOutput: boolean;
1542
+ }, {
1543
+ interactivity: "interactive" | "hybrid" | "args-only";
1544
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1545
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
1633
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
1634
+ name: z.ZodOptional<z.ZodString>;
1635
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1636
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1637
+ gameConfig: z.ZodOptional<z.ZodObject<{
1638
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1639
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
1640
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
1641
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
1642
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
1643
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
1644
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
1645
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
1646
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1647
+ hasModding: z.ZodDefault<z.ZodBoolean>;
1648
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
1649
+ }, "strict", z.ZodTypeAny, {
1650
+ engine: "custom" | "unity" | "unreal" | "godot";
1651
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
1652
+ narrative: "none" | "light" | "heavy";
1653
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1654
+ economy: "none" | "both" | "progression" | "monetized";
1655
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1656
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1657
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1658
+ supportedLocales: string[];
1659
+ hasModding: boolean;
1660
+ npcAiComplexity: "none" | "simple" | "complex";
1661
+ }, {
1662
+ engine: "custom" | "unity" | "unreal" | "godot";
1663
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1664
+ narrative?: "none" | "light" | "heavy" | undefined;
1665
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1666
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1667
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1668
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1669
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1670
+ supportedLocales?: string[] | undefined;
1671
+ hasModding?: boolean | undefined;
1672
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
1673
+ }>>;
1674
+ webAppConfig: z.ZodOptional<z.ZodObject<{
1675
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
1676
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
1677
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
1678
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
1679
+ }, "strict", z.ZodTypeAny, {
1680
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1681
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
1682
+ realtime: "none" | "websocket" | "sse";
1683
+ authFlow: "none" | "session" | "oauth" | "passkey";
1684
+ }, {
1685
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1686
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
1687
+ realtime?: "none" | "websocket" | "sse" | undefined;
1688
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
1689
+ }>>;
1690
+ backendConfig: z.ZodOptional<z.ZodObject<{
1691
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
1692
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
1693
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
1694
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
1695
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
1696
+ }, "strict", z.ZodTypeAny, {
1697
+ deployTarget: "serverless" | "container" | "long-running";
1698
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1699
+ dataStore: ("relational" | "document" | "key-value")[];
1700
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
1701
+ asyncMessaging: "none" | "queue" | "event-driven";
1702
+ }, {
1703
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1704
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
1705
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
1706
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
1707
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
1708
+ }>>;
1709
+ cliConfig: z.ZodOptional<z.ZodObject<{
1710
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
1711
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
1712
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
1713
+ }, "strict", z.ZodTypeAny, {
1714
+ interactivity: "interactive" | "hybrid" | "args-only";
1715
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
1716
+ hasStructuredOutput: boolean;
1717
+ }, {
1718
+ interactivity: "interactive" | "hybrid" | "args-only";
1719
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1720
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
1808
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1809
+ name: z.ZodOptional<z.ZodString>;
1810
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
1811
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
1812
+ gameConfig: z.ZodOptional<z.ZodObject<{
1813
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
1814
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
1815
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
1816
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
1817
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
1818
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
1819
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
1820
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
1821
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1822
+ hasModding: z.ZodDefault<z.ZodBoolean>;
1823
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
1824
+ }, "strict", z.ZodTypeAny, {
1825
+ engine: "custom" | "unity" | "unreal" | "godot";
1826
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
1827
+ narrative: "none" | "light" | "heavy";
1828
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
1829
+ economy: "none" | "both" | "progression" | "monetized";
1830
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1831
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1832
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1833
+ supportedLocales: string[];
1834
+ hasModding: boolean;
1835
+ npcAiComplexity: "none" | "simple" | "complex";
1836
+ }, {
1837
+ engine: "custom" | "unity" | "unreal" | "godot";
1838
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
1839
+ narrative?: "none" | "light" | "heavy" | undefined;
1840
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
1841
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
1842
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1843
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1844
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1845
+ supportedLocales?: string[] | undefined;
1846
+ hasModding?: boolean | undefined;
1847
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
1848
+ }>>;
1849
+ webAppConfig: z.ZodOptional<z.ZodObject<{
1850
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
1851
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
1852
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
1853
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
1854
+ }, "strict", z.ZodTypeAny, {
1855
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1856
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
1857
+ realtime: "none" | "websocket" | "sse";
1858
+ authFlow: "none" | "session" | "oauth" | "passkey";
1859
+ }, {
1860
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
1861
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
1862
+ realtime?: "none" | "websocket" | "sse" | undefined;
1863
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
1864
+ }>>;
1865
+ backendConfig: z.ZodOptional<z.ZodObject<{
1866
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
1867
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
1868
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
1869
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
1870
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
1871
+ }, "strict", z.ZodTypeAny, {
1872
+ deployTarget: "serverless" | "container" | "long-running";
1873
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1874
+ dataStore: ("relational" | "document" | "key-value")[];
1875
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
1876
+ asyncMessaging: "none" | "queue" | "event-driven";
1877
+ }, {
1878
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
1879
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
1880
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
1881
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
1882
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
1883
+ }>>;
1884
+ cliConfig: z.ZodOptional<z.ZodObject<{
1885
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
1886
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
1887
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
1888
+ }, "strict", z.ZodTypeAny, {
1889
+ interactivity: "interactive" | "hybrid" | "args-only";
1890
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
1891
+ hasStructuredOutput: boolean;
1892
+ }, {
1893
+ interactivity: "interactive" | "hybrid" | "args-only";
1894
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1895
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
1983
+ }, z.ZodTypeAny, "passthrough">>>;
1984
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1985
+ version: z.ZodLiteral<2>;
1986
+ methodology: z.ZodEnum<["deep", "mvp", "custom"]>;
1987
+ custom: z.ZodOptional<z.ZodObject<{
1988
+ default_depth: z.ZodOptional<z.ZodNumber>;
1989
+ steps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1990
+ enabled: z.ZodOptional<z.ZodBoolean>;
1991
+ depth: z.ZodOptional<z.ZodNumber>;
1992
+ }, "strict", z.ZodTypeAny, {
1993
+ enabled?: boolean | undefined;
1994
+ depth?: number | undefined;
1995
+ }, {
1996
+ enabled?: boolean | undefined;
1997
+ depth?: number | undefined;
1998
+ }>>>;
1999
+ }, "strict", z.ZodTypeAny, {
2000
+ default_depth?: number | undefined;
2001
+ steps?: Record<string, {
2002
+ enabled?: boolean | undefined;
2003
+ depth?: number | undefined;
2004
+ }> | undefined;
2005
+ }, {
2006
+ default_depth?: number | undefined;
2007
+ steps?: Record<string, {
2008
+ enabled?: boolean | undefined;
2009
+ depth?: number | undefined;
2010
+ }> | undefined;
2011
+ }>>;
2012
+ platforms: z.ZodArray<z.ZodEnum<["claude-code", "codex", "gemini"]>, "many">;
2013
+ project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2014
+ name: z.ZodOptional<z.ZodString>;
2015
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
2016
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
2017
+ gameConfig: z.ZodOptional<z.ZodObject<{
2018
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
2019
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
2020
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
2021
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
2022
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
2023
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
2024
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
2025
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
2026
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
2027
+ hasModding: z.ZodDefault<z.ZodBoolean>;
2028
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
2029
+ }, "strict", z.ZodTypeAny, {
2030
+ engine: "custom" | "unity" | "unreal" | "godot";
2031
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
2032
+ narrative: "none" | "light" | "heavy";
2033
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
2034
+ economy: "none" | "both" | "progression" | "monetized";
2035
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
2036
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
2037
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2038
+ supportedLocales: string[];
2039
+ hasModding: boolean;
2040
+ npcAiComplexity: "none" | "simple" | "complex";
2041
+ }, {
2042
+ engine: "custom" | "unity" | "unreal" | "godot";
2043
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
2044
+ narrative?: "none" | "light" | "heavy" | undefined;
2045
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
2046
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
2047
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
2048
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
2049
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2050
+ supportedLocales?: string[] | undefined;
2051
+ hasModding?: boolean | undefined;
2052
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
2053
+ }>>;
2054
+ webAppConfig: z.ZodOptional<z.ZodObject<{
2055
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
2056
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
2057
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
2058
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
2059
+ }, "strict", z.ZodTypeAny, {
2060
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2061
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
2062
+ realtime: "none" | "websocket" | "sse";
2063
+ authFlow: "none" | "session" | "oauth" | "passkey";
2064
+ }, {
2065
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2066
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
2067
+ realtime?: "none" | "websocket" | "sse" | undefined;
2068
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
2069
+ }>>;
2070
+ backendConfig: z.ZodOptional<z.ZodObject<{
2071
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
2072
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
2073
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
2074
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
2075
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
2076
+ }, "strict", z.ZodTypeAny, {
2077
+ deployTarget: "serverless" | "container" | "long-running";
2078
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2079
+ dataStore: ("relational" | "document" | "key-value")[];
2080
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
2081
+ asyncMessaging: "none" | "queue" | "event-driven";
2082
+ }, {
2083
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2084
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
2085
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
2086
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
2087
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
2088
+ }>>;
2089
+ cliConfig: z.ZodOptional<z.ZodObject<{
2090
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
2091
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
2092
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
2093
+ }, "strict", z.ZodTypeAny, {
2094
+ interactivity: "interactive" | "hybrid" | "args-only";
2095
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
2096
+ hasStructuredOutput: boolean;
2097
+ }, {
2098
+ interactivity: "interactive" | "hybrid" | "args-only";
2099
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
2100
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
2188
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2189
+ name: z.ZodOptional<z.ZodString>;
2190
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
2191
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
2192
+ gameConfig: z.ZodOptional<z.ZodObject<{
2193
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
2194
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
2195
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
2196
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
2197
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
2198
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
2199
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
2200
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
2201
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
2202
+ hasModding: z.ZodDefault<z.ZodBoolean>;
2203
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
2204
+ }, "strict", z.ZodTypeAny, {
2205
+ engine: "custom" | "unity" | "unreal" | "godot";
2206
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
2207
+ narrative: "none" | "light" | "heavy";
2208
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
2209
+ economy: "none" | "both" | "progression" | "monetized";
2210
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
2211
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
2212
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2213
+ supportedLocales: string[];
2214
+ hasModding: boolean;
2215
+ npcAiComplexity: "none" | "simple" | "complex";
2216
+ }, {
2217
+ engine: "custom" | "unity" | "unreal" | "godot";
2218
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
2219
+ narrative?: "none" | "light" | "heavy" | undefined;
2220
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
2221
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
2222
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
2223
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
2224
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2225
+ supportedLocales?: string[] | undefined;
2226
+ hasModding?: boolean | undefined;
2227
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
2228
+ }>>;
2229
+ webAppConfig: z.ZodOptional<z.ZodObject<{
2230
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
2231
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
2232
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
2233
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
2234
+ }, "strict", z.ZodTypeAny, {
2235
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2236
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
2237
+ realtime: "none" | "websocket" | "sse";
2238
+ authFlow: "none" | "session" | "oauth" | "passkey";
2239
+ }, {
2240
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2241
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
2242
+ realtime?: "none" | "websocket" | "sse" | undefined;
2243
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
2244
+ }>>;
2245
+ backendConfig: z.ZodOptional<z.ZodObject<{
2246
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
2247
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
2248
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
2249
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
2250
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
2251
+ }, "strict", z.ZodTypeAny, {
2252
+ deployTarget: "serverless" | "container" | "long-running";
2253
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2254
+ dataStore: ("relational" | "document" | "key-value")[];
2255
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
2256
+ asyncMessaging: "none" | "queue" | "event-driven";
2257
+ }, {
2258
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2259
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
2260
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
2261
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
2262
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
2263
+ }>>;
2264
+ cliConfig: z.ZodOptional<z.ZodObject<{
2265
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
2266
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
2267
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
2268
+ }, "strict", z.ZodTypeAny, {
2269
+ interactivity: "interactive" | "hybrid" | "args-only";
2270
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
2271
+ hasStructuredOutput: boolean;
2272
+ }, {
2273
+ interactivity: "interactive" | "hybrid" | "args-only";
2274
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
2275
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
2363
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2364
+ name: z.ZodOptional<z.ZodString>;
2365
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
2366
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
2367
+ gameConfig: z.ZodOptional<z.ZodObject<{
2368
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
2369
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
2370
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
2371
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
2372
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
2373
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
2374
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
2375
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
2376
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
2377
+ hasModding: z.ZodDefault<z.ZodBoolean>;
2378
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
2379
+ }, "strict", z.ZodTypeAny, {
2380
+ engine: "custom" | "unity" | "unreal" | "godot";
2381
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
2382
+ narrative: "none" | "light" | "heavy";
2383
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
2384
+ economy: "none" | "both" | "progression" | "monetized";
2385
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
2386
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
2387
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2388
+ supportedLocales: string[];
2389
+ hasModding: boolean;
2390
+ npcAiComplexity: "none" | "simple" | "complex";
2391
+ }, {
2392
+ engine: "custom" | "unity" | "unreal" | "godot";
2393
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
2394
+ narrative?: "none" | "light" | "heavy" | undefined;
2395
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
2396
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
2397
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
2398
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
2399
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2400
+ supportedLocales?: string[] | undefined;
2401
+ hasModding?: boolean | undefined;
2402
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
2403
+ }>>;
2404
+ webAppConfig: z.ZodOptional<z.ZodObject<{
2405
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
2406
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
2407
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
2408
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
2409
+ }, "strict", z.ZodTypeAny, {
2410
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2411
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
2412
+ realtime: "none" | "websocket" | "sse";
2413
+ authFlow: "none" | "session" | "oauth" | "passkey";
2414
+ }, {
2415
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2416
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
2417
+ realtime?: "none" | "websocket" | "sse" | undefined;
2418
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
2419
+ }>>;
2420
+ backendConfig: z.ZodOptional<z.ZodObject<{
2421
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
2422
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
2423
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
2424
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
2425
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
2426
+ }, "strict", z.ZodTypeAny, {
2427
+ deployTarget: "serverless" | "container" | "long-running";
2428
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2429
+ dataStore: ("relational" | "document" | "key-value")[];
2430
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
2431
+ asyncMessaging: "none" | "queue" | "event-driven";
2432
+ }, {
2433
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2434
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
2435
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
2436
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
2437
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
2438
+ }>>;
2439
+ cliConfig: z.ZodOptional<z.ZodObject<{
2440
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
2441
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
2442
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
2443
+ }, "strict", z.ZodTypeAny, {
2444
+ interactivity: "interactive" | "hybrid" | "args-only";
2445
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
2446
+ hasStructuredOutput: boolean;
2447
+ }, {
2448
+ interactivity: "interactive" | "hybrid" | "args-only";
2449
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
2450
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
2538
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
2539
+ name: z.ZodOptional<z.ZodString>;
2540
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
2541
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
2542
+ gameConfig: z.ZodOptional<z.ZodObject<{
2543
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
2544
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
2545
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
2546
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
2547
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
2548
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
2549
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
2550
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
2551
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
2552
+ hasModding: z.ZodDefault<z.ZodBoolean>;
2553
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
2554
+ }, "strict", z.ZodTypeAny, {
2555
+ engine: "custom" | "unity" | "unreal" | "godot";
2556
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
2557
+ narrative: "none" | "light" | "heavy";
2558
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
2559
+ economy: "none" | "both" | "progression" | "monetized";
2560
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
2561
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
2562
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2563
+ supportedLocales: string[];
2564
+ hasModding: boolean;
2565
+ npcAiComplexity: "none" | "simple" | "complex";
2566
+ }, {
2567
+ engine: "custom" | "unity" | "unreal" | "godot";
2568
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
2569
+ narrative?: "none" | "light" | "heavy" | undefined;
2570
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
2571
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
2572
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
2573
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
2574
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2575
+ supportedLocales?: string[] | undefined;
2576
+ hasModding?: boolean | undefined;
2577
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
2578
+ }>>;
2579
+ webAppConfig: z.ZodOptional<z.ZodObject<{
2580
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
2581
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
2582
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
2583
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
2584
+ }, "strict", z.ZodTypeAny, {
2585
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2586
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
2587
+ realtime: "none" | "websocket" | "sse";
2588
+ authFlow: "none" | "session" | "oauth" | "passkey";
2589
+ }, {
2590
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2591
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
2592
+ realtime?: "none" | "websocket" | "sse" | undefined;
2593
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
2594
+ }>>;
2595
+ backendConfig: z.ZodOptional<z.ZodObject<{
2596
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
2597
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
2598
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
2599
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
2600
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
2601
+ }, "strict", z.ZodTypeAny, {
2602
+ deployTarget: "serverless" | "container" | "long-running";
2603
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2604
+ dataStore: ("relational" | "document" | "key-value")[];
2605
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
2606
+ asyncMessaging: "none" | "queue" | "event-driven";
2607
+ }, {
2608
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2609
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
2610
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
2611
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
2612
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
2613
+ }>>;
2614
+ cliConfig: z.ZodOptional<z.ZodObject<{
2615
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
2616
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
2617
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
2618
+ }, "strict", z.ZodTypeAny, {
2619
+ interactivity: "interactive" | "hybrid" | "args-only";
2620
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
2621
+ hasStructuredOutput: boolean;
2622
+ }, {
2623
+ interactivity: "interactive" | "hybrid" | "args-only";
2624
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
2625
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
2713
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2714
+ name: z.ZodOptional<z.ZodString>;
2715
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
2716
+ projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
2717
+ gameConfig: z.ZodOptional<z.ZodObject<{
2718
+ engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
2719
+ multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
2720
+ narrative: z.ZodDefault<z.ZodEnum<["none", "light", "heavy"]>>;
2721
+ contentStructure: z.ZodDefault<z.ZodEnum<["discrete", "open-world", "procedural", "endless", "mission-based"]>>;
2722
+ economy: z.ZodDefault<z.ZodEnum<["none", "progression", "monetized", "both"]>>;
2723
+ onlineServices: z.ZodDefault<z.ZodArray<z.ZodEnum<["leaderboards", "accounts", "matchmaking", "live-ops"]>, "many">>;
2724
+ persistence: z.ZodDefault<z.ZodEnum<["none", "settings-only", "profile", "progression", "cloud"]>>;
2725
+ targetPlatforms: z.ZodDefault<z.ZodArray<z.ZodEnum<["pc", "web", "ios", "android", "ps5", "xbox", "switch", "vr", "ar"]>, "many">>;
2726
+ supportedLocales: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
2727
+ hasModding: z.ZodDefault<z.ZodBoolean>;
2728
+ npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
2729
+ }, "strict", z.ZodTypeAny, {
2730
+ engine: "custom" | "unity" | "unreal" | "godot";
2731
+ multiplayerMode: "hybrid" | "none" | "local" | "online";
2732
+ narrative: "none" | "light" | "heavy";
2733
+ contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
2734
+ economy: "none" | "both" | "progression" | "monetized";
2735
+ onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
2736
+ persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
2737
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
2738
+ supportedLocales: string[];
2739
+ hasModding: boolean;
2740
+ npcAiComplexity: "none" | "simple" | "complex";
2741
+ }, {
2742
+ engine: "custom" | "unity" | "unreal" | "godot";
2743
+ multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
2744
+ narrative?: "none" | "light" | "heavy" | undefined;
2745
+ contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
2746
+ economy?: "none" | "both" | "progression" | "monetized" | undefined;
2747
+ onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
2748
+ persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
2749
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
2750
+ supportedLocales?: string[] | undefined;
2751
+ hasModding?: boolean | undefined;
2752
+ npcAiComplexity?: "none" | "simple" | "complex" | undefined;
2753
+ }>>;
2754
+ webAppConfig: z.ZodOptional<z.ZodObject<{
2755
+ renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
2756
+ deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
2757
+ realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
2758
+ authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
2759
+ }, "strict", z.ZodTypeAny, {
2760
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2761
+ deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
2762
+ realtime: "none" | "websocket" | "sse";
2763
+ authFlow: "none" | "session" | "oauth" | "passkey";
2764
+ }, {
2765
+ renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
2766
+ deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
2767
+ realtime?: "none" | "websocket" | "sse" | undefined;
2768
+ authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
2769
+ }>>;
2770
+ backendConfig: z.ZodOptional<z.ZodObject<{
2771
+ apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
2772
+ dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
2773
+ authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
2774
+ asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
2775
+ deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
2776
+ }, "strict", z.ZodTypeAny, {
2777
+ deployTarget: "serverless" | "container" | "long-running";
2778
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2779
+ dataStore: ("relational" | "document" | "key-value")[];
2780
+ authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
2781
+ asyncMessaging: "none" | "queue" | "event-driven";
2782
+ }, {
2783
+ apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
2784
+ deployTarget?: "serverless" | "container" | "long-running" | undefined;
2785
+ dataStore?: ("relational" | "document" | "key-value")[] | undefined;
2786
+ authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
2787
+ asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
2788
+ }>>;
2789
+ cliConfig: z.ZodOptional<z.ZodObject<{
2790
+ interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
2791
+ distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
2792
+ hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
2793
+ }, "strict", z.ZodTypeAny, {
2794
+ interactivity: "interactive" | "hybrid" | "args-only";
2795
+ distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
2796
+ hasStructuredOutput: boolean;
2797
+ }, {
2798
+ interactivity: "interactive" | "hybrid" | "args-only";
2799
+ distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
2800
+ hasStructuredOutput?: boolean | undefined;
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
+ }>>;
2888
+ }, z.ZodTypeAny, "passthrough">>>;
2889
+ }, z.ZodTypeAny, "passthrough">>;
2890
+ export type ParsedConfig = z.infer<typeof ConfigSchema>;
2891
+ //# sourceMappingURL=schema-v3.9.2.d.ts.map