gameforge-cli 0.1.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 (91) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +366 -0
  3. package/dist/agents/base/BaseAgent.d.ts +45 -0
  4. package/dist/agents/base/BaseAgent.d.ts.map +1 -0
  5. package/dist/agents/base/BaseAgent.js +179 -0
  6. package/dist/agents/base/BaseAgent.js.map +1 -0
  7. package/dist/agents/core/Architect.d.ts +16 -0
  8. package/dist/agents/core/Architect.d.ts.map +1 -0
  9. package/dist/agents/core/Architect.js +487 -0
  10. package/dist/agents/core/Architect.js.map +1 -0
  11. package/dist/agents/core/Chaos.d.ts +14 -0
  12. package/dist/agents/core/Chaos.d.ts.map +1 -0
  13. package/dist/agents/core/Chaos.js +67 -0
  14. package/dist/agents/core/Chaos.js.map +1 -0
  15. package/dist/agents/core/Consistency.d.ts +16 -0
  16. package/dist/agents/core/Consistency.d.ts.map +1 -0
  17. package/dist/agents/core/Consistency.js +132 -0
  18. package/dist/agents/core/Consistency.js.map +1 -0
  19. package/dist/agents/core/Inquisitor.d.ts +20 -0
  20. package/dist/agents/core/Inquisitor.d.ts.map +1 -0
  21. package/dist/agents/core/Inquisitor.js +159 -0
  22. package/dist/agents/core/Inquisitor.js.map +1 -0
  23. package/dist/agents/core/Remediation.d.ts +16 -0
  24. package/dist/agents/core/Remediation.d.ts.map +1 -0
  25. package/dist/agents/core/Remediation.js +151 -0
  26. package/dist/agents/core/Remediation.js.map +1 -0
  27. package/dist/agents/specialists/CreativeSpecialist.d.ts +7 -0
  28. package/dist/agents/specialists/CreativeSpecialist.d.ts.map +1 -0
  29. package/dist/agents/specialists/CreativeSpecialist.js +70 -0
  30. package/dist/agents/specialists/CreativeSpecialist.js.map +1 -0
  31. package/dist/agents/specialists/EntitySpecialist.d.ts +8 -0
  32. package/dist/agents/specialists/EntitySpecialist.d.ts.map +1 -0
  33. package/dist/agents/specialists/EntitySpecialist.js +74 -0
  34. package/dist/agents/specialists/EntitySpecialist.js.map +1 -0
  35. package/dist/agents/specialists/FeatureSpecialist.d.ts +8 -0
  36. package/dist/agents/specialists/FeatureSpecialist.d.ts.map +1 -0
  37. package/dist/agents/specialists/FeatureSpecialist.js +83 -0
  38. package/dist/agents/specialists/FeatureSpecialist.js.map +1 -0
  39. package/dist/agents/specialists/TechSpecialist.d.ts +7 -0
  40. package/dist/agents/specialists/TechSpecialist.d.ts.map +1 -0
  41. package/dist/agents/specialists/TechSpecialist.js +62 -0
  42. package/dist/agents/specialists/TechSpecialist.js.map +1 -0
  43. package/dist/config/budget.d.ts +36 -0
  44. package/dist/config/budget.d.ts.map +1 -0
  45. package/dist/config/budget.js +37 -0
  46. package/dist/config/budget.js.map +1 -0
  47. package/dist/config/schema.d.ts +1336 -0
  48. package/dist/config/schema.d.ts.map +1 -0
  49. package/dist/config/schema.js +134 -0
  50. package/dist/config/schema.js.map +1 -0
  51. package/dist/config/templates.d.ts +10 -0
  52. package/dist/config/templates.d.ts.map +1 -0
  53. package/dist/config/templates.js +202 -0
  54. package/dist/config/templates.js.map +1 -0
  55. package/dist/core/CheckpointManager.d.ts +16 -0
  56. package/dist/core/CheckpointManager.d.ts.map +1 -0
  57. package/dist/core/CheckpointManager.js +52 -0
  58. package/dist/core/CheckpointManager.js.map +1 -0
  59. package/dist/core/Orchestrator.d.ts +11 -0
  60. package/dist/core/Orchestrator.d.ts.map +1 -0
  61. package/dist/core/Orchestrator.js +46 -0
  62. package/dist/core/Orchestrator.js.map +1 -0
  63. package/dist/core/SessionManager.d.ts +68 -0
  64. package/dist/core/SessionManager.d.ts.map +1 -0
  65. package/dist/core/SessionManager.js +162 -0
  66. package/dist/core/SessionManager.js.map +1 -0
  67. package/dist/core/StateMachine.d.ts +46 -0
  68. package/dist/core/StateMachine.d.ts.map +1 -0
  69. package/dist/core/StateMachine.js +82 -0
  70. package/dist/core/StateMachine.js.map +1 -0
  71. package/dist/index.d.ts +3 -0
  72. package/dist/index.d.ts.map +1 -0
  73. package/dist/index.js +830 -0
  74. package/dist/index.js.map +1 -0
  75. package/dist/utils/costTracker.d.ts +30 -0
  76. package/dist/utils/costTracker.d.ts.map +1 -0
  77. package/dist/utils/costTracker.js +64 -0
  78. package/dist/utils/costTracker.js.map +1 -0
  79. package/dist/utils/debugLogger.d.ts +48 -0
  80. package/dist/utils/debugLogger.d.ts.map +1 -0
  81. package/dist/utils/debugLogger.js +179 -0
  82. package/dist/utils/debugLogger.js.map +1 -0
  83. package/dist/utils/fileManager.d.ts +14 -0
  84. package/dist/utils/fileManager.d.ts.map +1 -0
  85. package/dist/utils/fileManager.js +135 -0
  86. package/dist/utils/fileManager.js.map +1 -0
  87. package/dist/utils/modelSelector.d.ts +11 -0
  88. package/dist/utils/modelSelector.d.ts.map +1 -0
  89. package/dist/utils/modelSelector.js +38 -0
  90. package/dist/utils/modelSelector.js.map +1 -0
  91. package/package.json +49 -0
@@ -0,0 +1,1336 @@
1
+ import { z } from 'zod';
2
+ export declare const EngineSchema: z.ZodObject<{
3
+ primary: z.ZodEnum<["Unreal Engine 5", "Unity", "Godot", "Custom"]>;
4
+ version: z.ZodString;
5
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6
+ reasoning: z.ZodOptional<z.ZodString>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
9
+ version: string;
10
+ plugins?: string[] | undefined;
11
+ reasoning?: string | undefined;
12
+ }, {
13
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
14
+ version: string;
15
+ plugins?: string[] | undefined;
16
+ reasoning?: string | undefined;
17
+ }>;
18
+ export declare const MathFormulaSchema: z.ZodObject<{
19
+ expression: z.ZodString;
20
+ variables: z.ZodRecord<z.ZodString, z.ZodObject<{
21
+ type: z.ZodEnum<["int", "float", "bool"]>;
22
+ range: z.ZodOptional<z.ZodString>;
23
+ }, "strip", z.ZodTypeAny, {
24
+ type: "float" | "int" | "bool";
25
+ range?: string | undefined;
26
+ }, {
27
+ type: "float" | "int" | "bool";
28
+ range?: string | undefined;
29
+ }>>;
30
+ validated: z.ZodDefault<z.ZodBoolean>;
31
+ balanceNotes: z.ZodOptional<z.ZodString>;
32
+ }, "strip", z.ZodTypeAny, {
33
+ expression: string;
34
+ variables: Record<string, {
35
+ type: "float" | "int" | "bool";
36
+ range?: string | undefined;
37
+ }>;
38
+ validated: boolean;
39
+ balanceNotes?: string | undefined;
40
+ }, {
41
+ expression: string;
42
+ variables: Record<string, {
43
+ type: "float" | "int" | "bool";
44
+ range?: string | undefined;
45
+ }>;
46
+ validated?: boolean | undefined;
47
+ balanceNotes?: string | undefined;
48
+ }>;
49
+ export declare const ExternalDataSchema: z.ZodObject<{
50
+ type: z.ZodEnum<["Spreadsheet", "Database", "JSON"]>;
51
+ schema: z.ZodString;
52
+ sampleRows: z.ZodDefault<z.ZodNumber>;
53
+ fileReference: z.ZodOptional<z.ZodString>;
54
+ }, "strip", z.ZodTypeAny, {
55
+ type: "Spreadsheet" | "Database" | "JSON";
56
+ schema: string;
57
+ sampleRows: number;
58
+ fileReference?: string | undefined;
59
+ }, {
60
+ type: "Spreadsheet" | "Database" | "JSON";
61
+ schema: string;
62
+ sampleRows?: number | undefined;
63
+ fileReference?: string | undefined;
64
+ }>;
65
+ export declare const FeatureSchema: z.ZodObject<{
66
+ id: z.ZodString;
67
+ name: z.ZodString;
68
+ intent: z.ZodString;
69
+ dependencies: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
70
+ monetization: z.ZodOptional<z.ZodObject<{
71
+ strategy: z.ZodEnum<["None", "IAP", "Premium", "Ads", "Hybrid"]>;
72
+ implementation: z.ZodOptional<z.ZodString>;
73
+ }, "strip", z.ZodTypeAny, {
74
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
75
+ implementation?: string | undefined;
76
+ }, {
77
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
78
+ implementation?: string | undefined;
79
+ }>>;
80
+ gameplayLoop: z.ZodArray<z.ZodString, "many">;
81
+ uiRequirements: z.ZodArray<z.ZodString, "many">;
82
+ technical: z.ZodObject<{
83
+ dataStructure: z.ZodString;
84
+ mathFormulas: z.ZodOptional<z.ZodArray<z.ZodObject<{
85
+ expression: z.ZodString;
86
+ variables: z.ZodRecord<z.ZodString, z.ZodObject<{
87
+ type: z.ZodEnum<["int", "float", "bool"]>;
88
+ range: z.ZodOptional<z.ZodString>;
89
+ }, "strip", z.ZodTypeAny, {
90
+ type: "float" | "int" | "bool";
91
+ range?: string | undefined;
92
+ }, {
93
+ type: "float" | "int" | "bool";
94
+ range?: string | undefined;
95
+ }>>;
96
+ validated: z.ZodDefault<z.ZodBoolean>;
97
+ balanceNotes: z.ZodOptional<z.ZodString>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ expression: string;
100
+ variables: Record<string, {
101
+ type: "float" | "int" | "bool";
102
+ range?: string | undefined;
103
+ }>;
104
+ validated: boolean;
105
+ balanceNotes?: string | undefined;
106
+ }, {
107
+ expression: string;
108
+ variables: Record<string, {
109
+ type: "float" | "int" | "bool";
110
+ range?: string | undefined;
111
+ }>;
112
+ validated?: boolean | undefined;
113
+ balanceNotes?: string | undefined;
114
+ }>, "many">>;
115
+ fileLocation: z.ZodString;
116
+ estimatedComplexity: z.ZodEnum<["Low", "Medium", "High", "Very High"]>;
117
+ }, "strip", z.ZodTypeAny, {
118
+ dataStructure: string;
119
+ fileLocation: string;
120
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
121
+ mathFormulas?: {
122
+ expression: string;
123
+ variables: Record<string, {
124
+ type: "float" | "int" | "bool";
125
+ range?: string | undefined;
126
+ }>;
127
+ validated: boolean;
128
+ balanceNotes?: string | undefined;
129
+ }[] | undefined;
130
+ }, {
131
+ dataStructure: string;
132
+ fileLocation: string;
133
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
134
+ mathFormulas?: {
135
+ expression: string;
136
+ variables: Record<string, {
137
+ type: "float" | "int" | "bool";
138
+ range?: string | undefined;
139
+ }>;
140
+ validated?: boolean | undefined;
141
+ balanceNotes?: string | undefined;
142
+ }[] | undefined;
143
+ }>;
144
+ agile: z.ZodObject<{
145
+ epic: z.ZodString;
146
+ userStories: z.ZodArray<z.ZodString, "many">;
147
+ acceptanceCriteria: z.ZodArray<z.ZodString, "many">;
148
+ }, "strip", z.ZodTypeAny, {
149
+ epic: string;
150
+ userStories: string[];
151
+ acceptanceCriteria: string[];
152
+ }, {
153
+ epic: string;
154
+ userStories: string[];
155
+ acceptanceCriteria: string[];
156
+ }>;
157
+ }, "strip", z.ZodTypeAny, {
158
+ id: string;
159
+ name: string;
160
+ intent: string;
161
+ dependencies: string[];
162
+ gameplayLoop: string[];
163
+ uiRequirements: string[];
164
+ technical: {
165
+ dataStructure: string;
166
+ fileLocation: string;
167
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
168
+ mathFormulas?: {
169
+ expression: string;
170
+ variables: Record<string, {
171
+ type: "float" | "int" | "bool";
172
+ range?: string | undefined;
173
+ }>;
174
+ validated: boolean;
175
+ balanceNotes?: string | undefined;
176
+ }[] | undefined;
177
+ };
178
+ agile: {
179
+ epic: string;
180
+ userStories: string[];
181
+ acceptanceCriteria: string[];
182
+ };
183
+ monetization?: {
184
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
185
+ implementation?: string | undefined;
186
+ } | undefined;
187
+ }, {
188
+ id: string;
189
+ name: string;
190
+ intent: string;
191
+ gameplayLoop: string[];
192
+ uiRequirements: string[];
193
+ technical: {
194
+ dataStructure: string;
195
+ fileLocation: string;
196
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
197
+ mathFormulas?: {
198
+ expression: string;
199
+ variables: Record<string, {
200
+ type: "float" | "int" | "bool";
201
+ range?: string | undefined;
202
+ }>;
203
+ validated?: boolean | undefined;
204
+ balanceNotes?: string | undefined;
205
+ }[] | undefined;
206
+ };
207
+ agile: {
208
+ epic: string;
209
+ userStories: string[];
210
+ acceptanceCriteria: string[];
211
+ };
212
+ dependencies?: string[] | undefined;
213
+ monetization?: {
214
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
215
+ implementation?: string | undefined;
216
+ } | undefined;
217
+ }>;
218
+ export declare const EntitySchema: z.ZodObject<{
219
+ id: z.ZodString;
220
+ name: z.ZodString;
221
+ category: z.ZodEnum<["NPC", "Monster", "Item", "Interactable"]>;
222
+ narrative: z.ZodOptional<z.ZodObject<{
223
+ backstory: z.ZodString;
224
+ dialogues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
225
+ externalData: z.ZodOptional<z.ZodObject<{
226
+ type: z.ZodEnum<["Spreadsheet", "Database", "JSON"]>;
227
+ schema: z.ZodString;
228
+ sampleRows: z.ZodDefault<z.ZodNumber>;
229
+ fileReference: z.ZodOptional<z.ZodString>;
230
+ }, "strip", z.ZodTypeAny, {
231
+ type: "Spreadsheet" | "Database" | "JSON";
232
+ schema: string;
233
+ sampleRows: number;
234
+ fileReference?: string | undefined;
235
+ }, {
236
+ type: "Spreadsheet" | "Database" | "JSON";
237
+ schema: string;
238
+ sampleRows?: number | undefined;
239
+ fileReference?: string | undefined;
240
+ }>>;
241
+ }, "strip", z.ZodTypeAny, {
242
+ backstory: string;
243
+ dialogues?: string[] | undefined;
244
+ externalData?: {
245
+ type: "Spreadsheet" | "Database" | "JSON";
246
+ schema: string;
247
+ sampleRows: number;
248
+ fileReference?: string | undefined;
249
+ } | undefined;
250
+ }, {
251
+ backstory: string;
252
+ dialogues?: string[] | undefined;
253
+ externalData?: {
254
+ type: "Spreadsheet" | "Database" | "JSON";
255
+ schema: string;
256
+ sampleRows?: number | undefined;
257
+ fileReference?: string | undefined;
258
+ } | undefined;
259
+ }>>;
260
+ stats: z.ZodObject<{
261
+ attributes: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
262
+ behaviors: z.ZodArray<z.ZodString, "many">;
263
+ balanceFormulas: z.ZodOptional<z.ZodArray<z.ZodObject<{
264
+ expression: z.ZodString;
265
+ variables: z.ZodRecord<z.ZodString, z.ZodObject<{
266
+ type: z.ZodEnum<["int", "float", "bool"]>;
267
+ range: z.ZodOptional<z.ZodString>;
268
+ }, "strip", z.ZodTypeAny, {
269
+ type: "float" | "int" | "bool";
270
+ range?: string | undefined;
271
+ }, {
272
+ type: "float" | "int" | "bool";
273
+ range?: string | undefined;
274
+ }>>;
275
+ validated: z.ZodDefault<z.ZodBoolean>;
276
+ balanceNotes: z.ZodOptional<z.ZodString>;
277
+ }, "strip", z.ZodTypeAny, {
278
+ expression: string;
279
+ variables: Record<string, {
280
+ type: "float" | "int" | "bool";
281
+ range?: string | undefined;
282
+ }>;
283
+ validated: boolean;
284
+ balanceNotes?: string | undefined;
285
+ }, {
286
+ expression: string;
287
+ variables: Record<string, {
288
+ type: "float" | "int" | "bool";
289
+ range?: string | undefined;
290
+ }>;
291
+ validated?: boolean | undefined;
292
+ balanceNotes?: string | undefined;
293
+ }>, "many">>;
294
+ }, "strip", z.ZodTypeAny, {
295
+ attributes: Record<string, string | number>;
296
+ behaviors: string[];
297
+ balanceFormulas?: {
298
+ expression: string;
299
+ variables: Record<string, {
300
+ type: "float" | "int" | "bool";
301
+ range?: string | undefined;
302
+ }>;
303
+ validated: boolean;
304
+ balanceNotes?: string | undefined;
305
+ }[] | undefined;
306
+ }, {
307
+ attributes: Record<string, string | number>;
308
+ behaviors: string[];
309
+ balanceFormulas?: {
310
+ expression: string;
311
+ variables: Record<string, {
312
+ type: "float" | "int" | "bool";
313
+ range?: string | undefined;
314
+ }>;
315
+ validated?: boolean | undefined;
316
+ balanceNotes?: string | undefined;
317
+ }[] | undefined;
318
+ }>;
319
+ references: z.ZodObject<{
320
+ features: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
321
+ relatedEntities: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
322
+ }, "strip", z.ZodTypeAny, {
323
+ features: string[];
324
+ relatedEntities: string[];
325
+ }, {
326
+ features?: string[] | undefined;
327
+ relatedEntities?: string[] | undefined;
328
+ }>;
329
+ }, "strip", z.ZodTypeAny, {
330
+ id: string;
331
+ name: string;
332
+ category: "NPC" | "Monster" | "Item" | "Interactable";
333
+ stats: {
334
+ attributes: Record<string, string | number>;
335
+ behaviors: string[];
336
+ balanceFormulas?: {
337
+ expression: string;
338
+ variables: Record<string, {
339
+ type: "float" | "int" | "bool";
340
+ range?: string | undefined;
341
+ }>;
342
+ validated: boolean;
343
+ balanceNotes?: string | undefined;
344
+ }[] | undefined;
345
+ };
346
+ references: {
347
+ features: string[];
348
+ relatedEntities: string[];
349
+ };
350
+ narrative?: {
351
+ backstory: string;
352
+ dialogues?: string[] | undefined;
353
+ externalData?: {
354
+ type: "Spreadsheet" | "Database" | "JSON";
355
+ schema: string;
356
+ sampleRows: number;
357
+ fileReference?: string | undefined;
358
+ } | undefined;
359
+ } | undefined;
360
+ }, {
361
+ id: string;
362
+ name: string;
363
+ category: "NPC" | "Monster" | "Item" | "Interactable";
364
+ stats: {
365
+ attributes: Record<string, string | number>;
366
+ behaviors: string[];
367
+ balanceFormulas?: {
368
+ expression: string;
369
+ variables: Record<string, {
370
+ type: "float" | "int" | "bool";
371
+ range?: string | undefined;
372
+ }>;
373
+ validated?: boolean | undefined;
374
+ balanceNotes?: string | undefined;
375
+ }[] | undefined;
376
+ };
377
+ references: {
378
+ features?: string[] | undefined;
379
+ relatedEntities?: string[] | undefined;
380
+ };
381
+ narrative?: {
382
+ backstory: string;
383
+ dialogues?: string[] | undefined;
384
+ externalData?: {
385
+ type: "Spreadsheet" | "Database" | "JSON";
386
+ schema: string;
387
+ sampleRows?: number | undefined;
388
+ fileReference?: string | undefined;
389
+ } | undefined;
390
+ } | undefined;
391
+ }>;
392
+ export declare const CreativeSchema: z.ZodObject<{
393
+ artStyle: z.ZodString;
394
+ audioMood: z.ZodString;
395
+ referenceLinks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
396
+ assetRequirements: z.ZodObject<{
397
+ characters: z.ZodDefault<z.ZodNumber>;
398
+ environments: z.ZodDefault<z.ZodNumber>;
399
+ props: z.ZodDefault<z.ZodNumber>;
400
+ ui: z.ZodDefault<z.ZodNumber>;
401
+ sfx: z.ZodDefault<z.ZodNumber>;
402
+ music: z.ZodDefault<z.ZodNumber>;
403
+ }, "strip", z.ZodTypeAny, {
404
+ characters: number;
405
+ environments: number;
406
+ props: number;
407
+ ui: number;
408
+ sfx: number;
409
+ music: number;
410
+ }, {
411
+ characters?: number | undefined;
412
+ environments?: number | undefined;
413
+ props?: number | undefined;
414
+ ui?: number | undefined;
415
+ sfx?: number | undefined;
416
+ music?: number | undefined;
417
+ }>;
418
+ pipeline: z.ZodObject<{
419
+ toolsRequired: z.ZodArray<z.ZodString, "many">;
420
+ workflowNotes: z.ZodOptional<z.ZodString>;
421
+ }, "strip", z.ZodTypeAny, {
422
+ toolsRequired: string[];
423
+ workflowNotes?: string | undefined;
424
+ }, {
425
+ toolsRequired: string[];
426
+ workflowNotes?: string | undefined;
427
+ }>;
428
+ }, "strip", z.ZodTypeAny, {
429
+ artStyle: string;
430
+ audioMood: string;
431
+ assetRequirements: {
432
+ characters: number;
433
+ environments: number;
434
+ props: number;
435
+ ui: number;
436
+ sfx: number;
437
+ music: number;
438
+ };
439
+ pipeline: {
440
+ toolsRequired: string[];
441
+ workflowNotes?: string | undefined;
442
+ };
443
+ referenceLinks?: string[] | undefined;
444
+ }, {
445
+ artStyle: string;
446
+ audioMood: string;
447
+ assetRequirements: {
448
+ characters?: number | undefined;
449
+ environments?: number | undefined;
450
+ props?: number | undefined;
451
+ ui?: number | undefined;
452
+ sfx?: number | undefined;
453
+ music?: number | undefined;
454
+ };
455
+ pipeline: {
456
+ toolsRequired: string[];
457
+ workflowNotes?: string | undefined;
458
+ };
459
+ referenceLinks?: string[] | undefined;
460
+ }>;
461
+ export declare const TechnicalSchema: z.ZodObject<{
462
+ engine: z.ZodObject<{
463
+ primary: z.ZodEnum<["Unreal Engine 5", "Unity", "Godot", "Custom"]>;
464
+ version: z.ZodString;
465
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
466
+ reasoning: z.ZodOptional<z.ZodString>;
467
+ }, "strip", z.ZodTypeAny, {
468
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
469
+ version: string;
470
+ plugins?: string[] | undefined;
471
+ reasoning?: string | undefined;
472
+ }, {
473
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
474
+ version: string;
475
+ plugins?: string[] | undefined;
476
+ reasoning?: string | undefined;
477
+ }>;
478
+ toolsRequired: z.ZodArray<z.ZodObject<{
479
+ name: z.ZodString;
480
+ purpose: z.ZodString;
481
+ required: z.ZodBoolean;
482
+ }, "strip", z.ZodTypeAny, {
483
+ name: string;
484
+ purpose: string;
485
+ required: boolean;
486
+ }, {
487
+ name: string;
488
+ purpose: string;
489
+ required: boolean;
490
+ }>, "many">;
491
+ localization: z.ZodObject<{
492
+ strategy: z.ZodEnum<["None", "English Only", "EFIGS", "Global"]>;
493
+ languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
494
+ stringCount: z.ZodOptional<z.ZodNumber>;
495
+ }, "strip", z.ZodTypeAny, {
496
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
497
+ languages?: string[] | undefined;
498
+ stringCount?: number | undefined;
499
+ }, {
500
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
501
+ languages?: string[] | undefined;
502
+ stringCount?: number | undefined;
503
+ }>;
504
+ directoryStructure: z.ZodString;
505
+ buildTargets: z.ZodArray<z.ZodEnum<["Windows", "Mac", "Linux", "iOS", "Android", "Console"]>, "many">;
506
+ }, "strip", z.ZodTypeAny, {
507
+ toolsRequired: {
508
+ name: string;
509
+ purpose: string;
510
+ required: boolean;
511
+ }[];
512
+ engine: {
513
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
514
+ version: string;
515
+ plugins?: string[] | undefined;
516
+ reasoning?: string | undefined;
517
+ };
518
+ localization: {
519
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
520
+ languages?: string[] | undefined;
521
+ stringCount?: number | undefined;
522
+ };
523
+ directoryStructure: string;
524
+ buildTargets: ("Windows" | "Mac" | "Linux" | "iOS" | "Android" | "Console")[];
525
+ }, {
526
+ toolsRequired: {
527
+ name: string;
528
+ purpose: string;
529
+ required: boolean;
530
+ }[];
531
+ engine: {
532
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
533
+ version: string;
534
+ plugins?: string[] | undefined;
535
+ reasoning?: string | undefined;
536
+ };
537
+ localization: {
538
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
539
+ languages?: string[] | undefined;
540
+ stringCount?: number | undefined;
541
+ };
542
+ directoryStructure: string;
543
+ buildTargets: ("Windows" | "Mac" | "Linux" | "iOS" | "Android" | "Console")[];
544
+ }>;
545
+ export declare const GameBibleSchema: z.ZodObject<{
546
+ meta: z.ZodObject<{
547
+ id: z.ZodString;
548
+ title: z.ZodString;
549
+ conceptStatement: z.ZodString;
550
+ genre: z.ZodArray<z.ZodString, "many">;
551
+ targetPlatform: z.ZodArray<z.ZodString, "many">;
552
+ targetAudience: z.ZodString;
553
+ estimatedScope: z.ZodEnum<["Prototype", "Vertical Slice", "MVP", "Full Game"]>;
554
+ createdAt: z.ZodString;
555
+ version: z.ZodDefault<z.ZodString>;
556
+ }, "strip", z.ZodTypeAny, {
557
+ version: string;
558
+ id: string;
559
+ title: string;
560
+ conceptStatement: string;
561
+ genre: string[];
562
+ targetPlatform: string[];
563
+ targetAudience: string;
564
+ estimatedScope: "Prototype" | "Vertical Slice" | "MVP" | "Full Game";
565
+ createdAt: string;
566
+ }, {
567
+ id: string;
568
+ title: string;
569
+ conceptStatement: string;
570
+ genre: string[];
571
+ targetPlatform: string[];
572
+ targetAudience: string;
573
+ estimatedScope: "Prototype" | "Vertical Slice" | "MVP" | "Full Game";
574
+ createdAt: string;
575
+ version?: string | undefined;
576
+ }>;
577
+ features: z.ZodArray<z.ZodObject<{
578
+ id: z.ZodString;
579
+ name: z.ZodString;
580
+ intent: z.ZodString;
581
+ dependencies: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
582
+ monetization: z.ZodOptional<z.ZodObject<{
583
+ strategy: z.ZodEnum<["None", "IAP", "Premium", "Ads", "Hybrid"]>;
584
+ implementation: z.ZodOptional<z.ZodString>;
585
+ }, "strip", z.ZodTypeAny, {
586
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
587
+ implementation?: string | undefined;
588
+ }, {
589
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
590
+ implementation?: string | undefined;
591
+ }>>;
592
+ gameplayLoop: z.ZodArray<z.ZodString, "many">;
593
+ uiRequirements: z.ZodArray<z.ZodString, "many">;
594
+ technical: z.ZodObject<{
595
+ dataStructure: z.ZodString;
596
+ mathFormulas: z.ZodOptional<z.ZodArray<z.ZodObject<{
597
+ expression: z.ZodString;
598
+ variables: z.ZodRecord<z.ZodString, z.ZodObject<{
599
+ type: z.ZodEnum<["int", "float", "bool"]>;
600
+ range: z.ZodOptional<z.ZodString>;
601
+ }, "strip", z.ZodTypeAny, {
602
+ type: "float" | "int" | "bool";
603
+ range?: string | undefined;
604
+ }, {
605
+ type: "float" | "int" | "bool";
606
+ range?: string | undefined;
607
+ }>>;
608
+ validated: z.ZodDefault<z.ZodBoolean>;
609
+ balanceNotes: z.ZodOptional<z.ZodString>;
610
+ }, "strip", z.ZodTypeAny, {
611
+ expression: string;
612
+ variables: Record<string, {
613
+ type: "float" | "int" | "bool";
614
+ range?: string | undefined;
615
+ }>;
616
+ validated: boolean;
617
+ balanceNotes?: string | undefined;
618
+ }, {
619
+ expression: string;
620
+ variables: Record<string, {
621
+ type: "float" | "int" | "bool";
622
+ range?: string | undefined;
623
+ }>;
624
+ validated?: boolean | undefined;
625
+ balanceNotes?: string | undefined;
626
+ }>, "many">>;
627
+ fileLocation: z.ZodString;
628
+ estimatedComplexity: z.ZodEnum<["Low", "Medium", "High", "Very High"]>;
629
+ }, "strip", z.ZodTypeAny, {
630
+ dataStructure: string;
631
+ fileLocation: string;
632
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
633
+ mathFormulas?: {
634
+ expression: string;
635
+ variables: Record<string, {
636
+ type: "float" | "int" | "bool";
637
+ range?: string | undefined;
638
+ }>;
639
+ validated: boolean;
640
+ balanceNotes?: string | undefined;
641
+ }[] | undefined;
642
+ }, {
643
+ dataStructure: string;
644
+ fileLocation: string;
645
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
646
+ mathFormulas?: {
647
+ expression: string;
648
+ variables: Record<string, {
649
+ type: "float" | "int" | "bool";
650
+ range?: string | undefined;
651
+ }>;
652
+ validated?: boolean | undefined;
653
+ balanceNotes?: string | undefined;
654
+ }[] | undefined;
655
+ }>;
656
+ agile: z.ZodObject<{
657
+ epic: z.ZodString;
658
+ userStories: z.ZodArray<z.ZodString, "many">;
659
+ acceptanceCriteria: z.ZodArray<z.ZodString, "many">;
660
+ }, "strip", z.ZodTypeAny, {
661
+ epic: string;
662
+ userStories: string[];
663
+ acceptanceCriteria: string[];
664
+ }, {
665
+ epic: string;
666
+ userStories: string[];
667
+ acceptanceCriteria: string[];
668
+ }>;
669
+ }, "strip", z.ZodTypeAny, {
670
+ id: string;
671
+ name: string;
672
+ intent: string;
673
+ dependencies: string[];
674
+ gameplayLoop: string[];
675
+ uiRequirements: string[];
676
+ technical: {
677
+ dataStructure: string;
678
+ fileLocation: string;
679
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
680
+ mathFormulas?: {
681
+ expression: string;
682
+ variables: Record<string, {
683
+ type: "float" | "int" | "bool";
684
+ range?: string | undefined;
685
+ }>;
686
+ validated: boolean;
687
+ balanceNotes?: string | undefined;
688
+ }[] | undefined;
689
+ };
690
+ agile: {
691
+ epic: string;
692
+ userStories: string[];
693
+ acceptanceCriteria: string[];
694
+ };
695
+ monetization?: {
696
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
697
+ implementation?: string | undefined;
698
+ } | undefined;
699
+ }, {
700
+ id: string;
701
+ name: string;
702
+ intent: string;
703
+ gameplayLoop: string[];
704
+ uiRequirements: string[];
705
+ technical: {
706
+ dataStructure: string;
707
+ fileLocation: string;
708
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
709
+ mathFormulas?: {
710
+ expression: string;
711
+ variables: Record<string, {
712
+ type: "float" | "int" | "bool";
713
+ range?: string | undefined;
714
+ }>;
715
+ validated?: boolean | undefined;
716
+ balanceNotes?: string | undefined;
717
+ }[] | undefined;
718
+ };
719
+ agile: {
720
+ epic: string;
721
+ userStories: string[];
722
+ acceptanceCriteria: string[];
723
+ };
724
+ dependencies?: string[] | undefined;
725
+ monetization?: {
726
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
727
+ implementation?: string | undefined;
728
+ } | undefined;
729
+ }>, "many">;
730
+ gameObjects: z.ZodArray<z.ZodObject<{
731
+ id: z.ZodString;
732
+ name: z.ZodString;
733
+ category: z.ZodEnum<["NPC", "Monster", "Item", "Interactable"]>;
734
+ narrative: z.ZodOptional<z.ZodObject<{
735
+ backstory: z.ZodString;
736
+ dialogues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
737
+ externalData: z.ZodOptional<z.ZodObject<{
738
+ type: z.ZodEnum<["Spreadsheet", "Database", "JSON"]>;
739
+ schema: z.ZodString;
740
+ sampleRows: z.ZodDefault<z.ZodNumber>;
741
+ fileReference: z.ZodOptional<z.ZodString>;
742
+ }, "strip", z.ZodTypeAny, {
743
+ type: "Spreadsheet" | "Database" | "JSON";
744
+ schema: string;
745
+ sampleRows: number;
746
+ fileReference?: string | undefined;
747
+ }, {
748
+ type: "Spreadsheet" | "Database" | "JSON";
749
+ schema: string;
750
+ sampleRows?: number | undefined;
751
+ fileReference?: string | undefined;
752
+ }>>;
753
+ }, "strip", z.ZodTypeAny, {
754
+ backstory: string;
755
+ dialogues?: string[] | undefined;
756
+ externalData?: {
757
+ type: "Spreadsheet" | "Database" | "JSON";
758
+ schema: string;
759
+ sampleRows: number;
760
+ fileReference?: string | undefined;
761
+ } | undefined;
762
+ }, {
763
+ backstory: string;
764
+ dialogues?: string[] | undefined;
765
+ externalData?: {
766
+ type: "Spreadsheet" | "Database" | "JSON";
767
+ schema: string;
768
+ sampleRows?: number | undefined;
769
+ fileReference?: string | undefined;
770
+ } | undefined;
771
+ }>>;
772
+ stats: z.ZodObject<{
773
+ attributes: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
774
+ behaviors: z.ZodArray<z.ZodString, "many">;
775
+ balanceFormulas: z.ZodOptional<z.ZodArray<z.ZodObject<{
776
+ expression: z.ZodString;
777
+ variables: z.ZodRecord<z.ZodString, z.ZodObject<{
778
+ type: z.ZodEnum<["int", "float", "bool"]>;
779
+ range: z.ZodOptional<z.ZodString>;
780
+ }, "strip", z.ZodTypeAny, {
781
+ type: "float" | "int" | "bool";
782
+ range?: string | undefined;
783
+ }, {
784
+ type: "float" | "int" | "bool";
785
+ range?: string | undefined;
786
+ }>>;
787
+ validated: z.ZodDefault<z.ZodBoolean>;
788
+ balanceNotes: z.ZodOptional<z.ZodString>;
789
+ }, "strip", z.ZodTypeAny, {
790
+ expression: string;
791
+ variables: Record<string, {
792
+ type: "float" | "int" | "bool";
793
+ range?: string | undefined;
794
+ }>;
795
+ validated: boolean;
796
+ balanceNotes?: string | undefined;
797
+ }, {
798
+ expression: string;
799
+ variables: Record<string, {
800
+ type: "float" | "int" | "bool";
801
+ range?: string | undefined;
802
+ }>;
803
+ validated?: boolean | undefined;
804
+ balanceNotes?: string | undefined;
805
+ }>, "many">>;
806
+ }, "strip", z.ZodTypeAny, {
807
+ attributes: Record<string, string | number>;
808
+ behaviors: string[];
809
+ balanceFormulas?: {
810
+ expression: string;
811
+ variables: Record<string, {
812
+ type: "float" | "int" | "bool";
813
+ range?: string | undefined;
814
+ }>;
815
+ validated: boolean;
816
+ balanceNotes?: string | undefined;
817
+ }[] | undefined;
818
+ }, {
819
+ attributes: Record<string, string | number>;
820
+ behaviors: string[];
821
+ balanceFormulas?: {
822
+ expression: string;
823
+ variables: Record<string, {
824
+ type: "float" | "int" | "bool";
825
+ range?: string | undefined;
826
+ }>;
827
+ validated?: boolean | undefined;
828
+ balanceNotes?: string | undefined;
829
+ }[] | undefined;
830
+ }>;
831
+ references: z.ZodObject<{
832
+ features: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
833
+ relatedEntities: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
834
+ }, "strip", z.ZodTypeAny, {
835
+ features: string[];
836
+ relatedEntities: string[];
837
+ }, {
838
+ features?: string[] | undefined;
839
+ relatedEntities?: string[] | undefined;
840
+ }>;
841
+ }, "strip", z.ZodTypeAny, {
842
+ id: string;
843
+ name: string;
844
+ category: "NPC" | "Monster" | "Item" | "Interactable";
845
+ stats: {
846
+ attributes: Record<string, string | number>;
847
+ behaviors: string[];
848
+ balanceFormulas?: {
849
+ expression: string;
850
+ variables: Record<string, {
851
+ type: "float" | "int" | "bool";
852
+ range?: string | undefined;
853
+ }>;
854
+ validated: boolean;
855
+ balanceNotes?: string | undefined;
856
+ }[] | undefined;
857
+ };
858
+ references: {
859
+ features: string[];
860
+ relatedEntities: string[];
861
+ };
862
+ narrative?: {
863
+ backstory: string;
864
+ dialogues?: string[] | undefined;
865
+ externalData?: {
866
+ type: "Spreadsheet" | "Database" | "JSON";
867
+ schema: string;
868
+ sampleRows: number;
869
+ fileReference?: string | undefined;
870
+ } | undefined;
871
+ } | undefined;
872
+ }, {
873
+ id: string;
874
+ name: string;
875
+ category: "NPC" | "Monster" | "Item" | "Interactable";
876
+ stats: {
877
+ attributes: Record<string, string | number>;
878
+ behaviors: string[];
879
+ balanceFormulas?: {
880
+ expression: string;
881
+ variables: Record<string, {
882
+ type: "float" | "int" | "bool";
883
+ range?: string | undefined;
884
+ }>;
885
+ validated?: boolean | undefined;
886
+ balanceNotes?: string | undefined;
887
+ }[] | undefined;
888
+ };
889
+ references: {
890
+ features?: string[] | undefined;
891
+ relatedEntities?: string[] | undefined;
892
+ };
893
+ narrative?: {
894
+ backstory: string;
895
+ dialogues?: string[] | undefined;
896
+ externalData?: {
897
+ type: "Spreadsheet" | "Database" | "JSON";
898
+ schema: string;
899
+ sampleRows?: number | undefined;
900
+ fileReference?: string | undefined;
901
+ } | undefined;
902
+ } | undefined;
903
+ }>, "many">;
904
+ creative: z.ZodObject<{
905
+ artStyle: z.ZodString;
906
+ audioMood: z.ZodString;
907
+ referenceLinks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
908
+ assetRequirements: z.ZodObject<{
909
+ characters: z.ZodDefault<z.ZodNumber>;
910
+ environments: z.ZodDefault<z.ZodNumber>;
911
+ props: z.ZodDefault<z.ZodNumber>;
912
+ ui: z.ZodDefault<z.ZodNumber>;
913
+ sfx: z.ZodDefault<z.ZodNumber>;
914
+ music: z.ZodDefault<z.ZodNumber>;
915
+ }, "strip", z.ZodTypeAny, {
916
+ characters: number;
917
+ environments: number;
918
+ props: number;
919
+ ui: number;
920
+ sfx: number;
921
+ music: number;
922
+ }, {
923
+ characters?: number | undefined;
924
+ environments?: number | undefined;
925
+ props?: number | undefined;
926
+ ui?: number | undefined;
927
+ sfx?: number | undefined;
928
+ music?: number | undefined;
929
+ }>;
930
+ pipeline: z.ZodObject<{
931
+ toolsRequired: z.ZodArray<z.ZodString, "many">;
932
+ workflowNotes: z.ZodOptional<z.ZodString>;
933
+ }, "strip", z.ZodTypeAny, {
934
+ toolsRequired: string[];
935
+ workflowNotes?: string | undefined;
936
+ }, {
937
+ toolsRequired: string[];
938
+ workflowNotes?: string | undefined;
939
+ }>;
940
+ }, "strip", z.ZodTypeAny, {
941
+ artStyle: string;
942
+ audioMood: string;
943
+ assetRequirements: {
944
+ characters: number;
945
+ environments: number;
946
+ props: number;
947
+ ui: number;
948
+ sfx: number;
949
+ music: number;
950
+ };
951
+ pipeline: {
952
+ toolsRequired: string[];
953
+ workflowNotes?: string | undefined;
954
+ };
955
+ referenceLinks?: string[] | undefined;
956
+ }, {
957
+ artStyle: string;
958
+ audioMood: string;
959
+ assetRequirements: {
960
+ characters?: number | undefined;
961
+ environments?: number | undefined;
962
+ props?: number | undefined;
963
+ ui?: number | undefined;
964
+ sfx?: number | undefined;
965
+ music?: number | undefined;
966
+ };
967
+ pipeline: {
968
+ toolsRequired: string[];
969
+ workflowNotes?: string | undefined;
970
+ };
971
+ referenceLinks?: string[] | undefined;
972
+ }>;
973
+ technical: z.ZodObject<{
974
+ engine: z.ZodObject<{
975
+ primary: z.ZodEnum<["Unreal Engine 5", "Unity", "Godot", "Custom"]>;
976
+ version: z.ZodString;
977
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
978
+ reasoning: z.ZodOptional<z.ZodString>;
979
+ }, "strip", z.ZodTypeAny, {
980
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
981
+ version: string;
982
+ plugins?: string[] | undefined;
983
+ reasoning?: string | undefined;
984
+ }, {
985
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
986
+ version: string;
987
+ plugins?: string[] | undefined;
988
+ reasoning?: string | undefined;
989
+ }>;
990
+ toolsRequired: z.ZodArray<z.ZodObject<{
991
+ name: z.ZodString;
992
+ purpose: z.ZodString;
993
+ required: z.ZodBoolean;
994
+ }, "strip", z.ZodTypeAny, {
995
+ name: string;
996
+ purpose: string;
997
+ required: boolean;
998
+ }, {
999
+ name: string;
1000
+ purpose: string;
1001
+ required: boolean;
1002
+ }>, "many">;
1003
+ localization: z.ZodObject<{
1004
+ strategy: z.ZodEnum<["None", "English Only", "EFIGS", "Global"]>;
1005
+ languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1006
+ stringCount: z.ZodOptional<z.ZodNumber>;
1007
+ }, "strip", z.ZodTypeAny, {
1008
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
1009
+ languages?: string[] | undefined;
1010
+ stringCount?: number | undefined;
1011
+ }, {
1012
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
1013
+ languages?: string[] | undefined;
1014
+ stringCount?: number | undefined;
1015
+ }>;
1016
+ directoryStructure: z.ZodString;
1017
+ buildTargets: z.ZodArray<z.ZodEnum<["Windows", "Mac", "Linux", "iOS", "Android", "Console"]>, "many">;
1018
+ }, "strip", z.ZodTypeAny, {
1019
+ toolsRequired: {
1020
+ name: string;
1021
+ purpose: string;
1022
+ required: boolean;
1023
+ }[];
1024
+ engine: {
1025
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
1026
+ version: string;
1027
+ plugins?: string[] | undefined;
1028
+ reasoning?: string | undefined;
1029
+ };
1030
+ localization: {
1031
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
1032
+ languages?: string[] | undefined;
1033
+ stringCount?: number | undefined;
1034
+ };
1035
+ directoryStructure: string;
1036
+ buildTargets: ("Windows" | "Mac" | "Linux" | "iOS" | "Android" | "Console")[];
1037
+ }, {
1038
+ toolsRequired: {
1039
+ name: string;
1040
+ purpose: string;
1041
+ required: boolean;
1042
+ }[];
1043
+ engine: {
1044
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
1045
+ version: string;
1046
+ plugins?: string[] | undefined;
1047
+ reasoning?: string | undefined;
1048
+ };
1049
+ localization: {
1050
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
1051
+ languages?: string[] | undefined;
1052
+ stringCount?: number | undefined;
1053
+ };
1054
+ directoryStructure: string;
1055
+ buildTargets: ("Windows" | "Mac" | "Linux" | "iOS" | "Android" | "Console")[];
1056
+ }>;
1057
+ validation: z.ZodOptional<z.ZodObject<{
1058
+ lastValidated: z.ZodOptional<z.ZodString>;
1059
+ issues: z.ZodDefault<z.ZodArray<z.ZodObject<{
1060
+ severity: z.ZodEnum<["Error", "Warning", "Info"]>;
1061
+ message: z.ZodString;
1062
+ location: z.ZodString;
1063
+ }, "strip", z.ZodTypeAny, {
1064
+ message: string;
1065
+ severity: "Error" | "Warning" | "Info";
1066
+ location: string;
1067
+ }, {
1068
+ message: string;
1069
+ severity: "Error" | "Warning" | "Info";
1070
+ location: string;
1071
+ }>, "many">>;
1072
+ }, "strip", z.ZodTypeAny, {
1073
+ issues: {
1074
+ message: string;
1075
+ severity: "Error" | "Warning" | "Info";
1076
+ location: string;
1077
+ }[];
1078
+ lastValidated?: string | undefined;
1079
+ }, {
1080
+ issues?: {
1081
+ message: string;
1082
+ severity: "Error" | "Warning" | "Info";
1083
+ location: string;
1084
+ }[] | undefined;
1085
+ lastValidated?: string | undefined;
1086
+ }>>;
1087
+ }, "strip", z.ZodTypeAny, {
1088
+ technical: {
1089
+ toolsRequired: {
1090
+ name: string;
1091
+ purpose: string;
1092
+ required: boolean;
1093
+ }[];
1094
+ engine: {
1095
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
1096
+ version: string;
1097
+ plugins?: string[] | undefined;
1098
+ reasoning?: string | undefined;
1099
+ };
1100
+ localization: {
1101
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
1102
+ languages?: string[] | undefined;
1103
+ stringCount?: number | undefined;
1104
+ };
1105
+ directoryStructure: string;
1106
+ buildTargets: ("Windows" | "Mac" | "Linux" | "iOS" | "Android" | "Console")[];
1107
+ };
1108
+ features: {
1109
+ id: string;
1110
+ name: string;
1111
+ intent: string;
1112
+ dependencies: string[];
1113
+ gameplayLoop: string[];
1114
+ uiRequirements: string[];
1115
+ technical: {
1116
+ dataStructure: string;
1117
+ fileLocation: string;
1118
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
1119
+ mathFormulas?: {
1120
+ expression: string;
1121
+ variables: Record<string, {
1122
+ type: "float" | "int" | "bool";
1123
+ range?: string | undefined;
1124
+ }>;
1125
+ validated: boolean;
1126
+ balanceNotes?: string | undefined;
1127
+ }[] | undefined;
1128
+ };
1129
+ agile: {
1130
+ epic: string;
1131
+ userStories: string[];
1132
+ acceptanceCriteria: string[];
1133
+ };
1134
+ monetization?: {
1135
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
1136
+ implementation?: string | undefined;
1137
+ } | undefined;
1138
+ }[];
1139
+ meta: {
1140
+ version: string;
1141
+ id: string;
1142
+ title: string;
1143
+ conceptStatement: string;
1144
+ genre: string[];
1145
+ targetPlatform: string[];
1146
+ targetAudience: string;
1147
+ estimatedScope: "Prototype" | "Vertical Slice" | "MVP" | "Full Game";
1148
+ createdAt: string;
1149
+ };
1150
+ gameObjects: {
1151
+ id: string;
1152
+ name: string;
1153
+ category: "NPC" | "Monster" | "Item" | "Interactable";
1154
+ stats: {
1155
+ attributes: Record<string, string | number>;
1156
+ behaviors: string[];
1157
+ balanceFormulas?: {
1158
+ expression: string;
1159
+ variables: Record<string, {
1160
+ type: "float" | "int" | "bool";
1161
+ range?: string | undefined;
1162
+ }>;
1163
+ validated: boolean;
1164
+ balanceNotes?: string | undefined;
1165
+ }[] | undefined;
1166
+ };
1167
+ references: {
1168
+ features: string[];
1169
+ relatedEntities: string[];
1170
+ };
1171
+ narrative?: {
1172
+ backstory: string;
1173
+ dialogues?: string[] | undefined;
1174
+ externalData?: {
1175
+ type: "Spreadsheet" | "Database" | "JSON";
1176
+ schema: string;
1177
+ sampleRows: number;
1178
+ fileReference?: string | undefined;
1179
+ } | undefined;
1180
+ } | undefined;
1181
+ }[];
1182
+ creative: {
1183
+ artStyle: string;
1184
+ audioMood: string;
1185
+ assetRequirements: {
1186
+ characters: number;
1187
+ environments: number;
1188
+ props: number;
1189
+ ui: number;
1190
+ sfx: number;
1191
+ music: number;
1192
+ };
1193
+ pipeline: {
1194
+ toolsRequired: string[];
1195
+ workflowNotes?: string | undefined;
1196
+ };
1197
+ referenceLinks?: string[] | undefined;
1198
+ };
1199
+ validation?: {
1200
+ issues: {
1201
+ message: string;
1202
+ severity: "Error" | "Warning" | "Info";
1203
+ location: string;
1204
+ }[];
1205
+ lastValidated?: string | undefined;
1206
+ } | undefined;
1207
+ }, {
1208
+ technical: {
1209
+ toolsRequired: {
1210
+ name: string;
1211
+ purpose: string;
1212
+ required: boolean;
1213
+ }[];
1214
+ engine: {
1215
+ primary: "Unreal Engine 5" | "Unity" | "Godot" | "Custom";
1216
+ version: string;
1217
+ plugins?: string[] | undefined;
1218
+ reasoning?: string | undefined;
1219
+ };
1220
+ localization: {
1221
+ strategy: "None" | "English Only" | "EFIGS" | "Global";
1222
+ languages?: string[] | undefined;
1223
+ stringCount?: number | undefined;
1224
+ };
1225
+ directoryStructure: string;
1226
+ buildTargets: ("Windows" | "Mac" | "Linux" | "iOS" | "Android" | "Console")[];
1227
+ };
1228
+ features: {
1229
+ id: string;
1230
+ name: string;
1231
+ intent: string;
1232
+ gameplayLoop: string[];
1233
+ uiRequirements: string[];
1234
+ technical: {
1235
+ dataStructure: string;
1236
+ fileLocation: string;
1237
+ estimatedComplexity: "Low" | "Medium" | "High" | "Very High";
1238
+ mathFormulas?: {
1239
+ expression: string;
1240
+ variables: Record<string, {
1241
+ type: "float" | "int" | "bool";
1242
+ range?: string | undefined;
1243
+ }>;
1244
+ validated?: boolean | undefined;
1245
+ balanceNotes?: string | undefined;
1246
+ }[] | undefined;
1247
+ };
1248
+ agile: {
1249
+ epic: string;
1250
+ userStories: string[];
1251
+ acceptanceCriteria: string[];
1252
+ };
1253
+ dependencies?: string[] | undefined;
1254
+ monetization?: {
1255
+ strategy: "None" | "IAP" | "Premium" | "Ads" | "Hybrid";
1256
+ implementation?: string | undefined;
1257
+ } | undefined;
1258
+ }[];
1259
+ meta: {
1260
+ id: string;
1261
+ title: string;
1262
+ conceptStatement: string;
1263
+ genre: string[];
1264
+ targetPlatform: string[];
1265
+ targetAudience: string;
1266
+ estimatedScope: "Prototype" | "Vertical Slice" | "MVP" | "Full Game";
1267
+ createdAt: string;
1268
+ version?: string | undefined;
1269
+ };
1270
+ gameObjects: {
1271
+ id: string;
1272
+ name: string;
1273
+ category: "NPC" | "Monster" | "Item" | "Interactable";
1274
+ stats: {
1275
+ attributes: Record<string, string | number>;
1276
+ behaviors: string[];
1277
+ balanceFormulas?: {
1278
+ expression: string;
1279
+ variables: Record<string, {
1280
+ type: "float" | "int" | "bool";
1281
+ range?: string | undefined;
1282
+ }>;
1283
+ validated?: boolean | undefined;
1284
+ balanceNotes?: string | undefined;
1285
+ }[] | undefined;
1286
+ };
1287
+ references: {
1288
+ features?: string[] | undefined;
1289
+ relatedEntities?: string[] | undefined;
1290
+ };
1291
+ narrative?: {
1292
+ backstory: string;
1293
+ dialogues?: string[] | undefined;
1294
+ externalData?: {
1295
+ type: "Spreadsheet" | "Database" | "JSON";
1296
+ schema: string;
1297
+ sampleRows?: number | undefined;
1298
+ fileReference?: string | undefined;
1299
+ } | undefined;
1300
+ } | undefined;
1301
+ }[];
1302
+ creative: {
1303
+ artStyle: string;
1304
+ audioMood: string;
1305
+ assetRequirements: {
1306
+ characters?: number | undefined;
1307
+ environments?: number | undefined;
1308
+ props?: number | undefined;
1309
+ ui?: number | undefined;
1310
+ sfx?: number | undefined;
1311
+ music?: number | undefined;
1312
+ };
1313
+ pipeline: {
1314
+ toolsRequired: string[];
1315
+ workflowNotes?: string | undefined;
1316
+ };
1317
+ referenceLinks?: string[] | undefined;
1318
+ };
1319
+ validation?: {
1320
+ issues?: {
1321
+ message: string;
1322
+ severity: "Error" | "Warning" | "Info";
1323
+ location: string;
1324
+ }[] | undefined;
1325
+ lastValidated?: string | undefined;
1326
+ } | undefined;
1327
+ }>;
1328
+ export type GameBible = z.infer<typeof GameBibleSchema>;
1329
+ export type Feature = z.infer<typeof FeatureSchema>;
1330
+ export type Entity = z.infer<typeof EntitySchema>;
1331
+ export type Engine = z.infer<typeof EngineSchema>;
1332
+ export type MathFormula = z.infer<typeof MathFormulaSchema>;
1333
+ export type ExternalData = z.infer<typeof ExternalDataSchema>;
1334
+ export type Creative = z.infer<typeof CreativeSchema>;
1335
+ export type Technical = z.infer<typeof TechnicalSchema>;
1336
+ //# sourceMappingURL=schema.d.ts.map