@glitch-stack/types 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.
@@ -0,0 +1,2986 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/json-schema.d.ts
4
+ declare function getDatabaseJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
5
+ none: "none";
6
+ sqlite: "sqlite";
7
+ postgres: "postgres";
8
+ mysql: "mysql";
9
+ }>>;
10
+ declare function getORMJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
11
+ none: "none";
12
+ drizzle: "drizzle";
13
+ prisma: "prisma";
14
+ }>>;
15
+ declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
16
+ none: "none";
17
+ hono: "hono";
18
+ express: "express";
19
+ fastify: "fastify";
20
+ nest: "nest";
21
+ self: "self";
22
+ }>>;
23
+ declare function getRuntimeJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
24
+ none: "none";
25
+ bun: "bun";
26
+ node: "node";
27
+ workers: "workers";
28
+ }>>;
29
+ declare function getFrontendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
30
+ none: "none";
31
+ "tanstack-start": "tanstack-start";
32
+ next: "next";
33
+ angular: "angular";
34
+ "native-uniwind": "native-uniwind";
35
+ astro: "astro";
36
+ }>>;
37
+ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
38
+ none: "none";
39
+ pwa: "pwa";
40
+ tauri: "tauri";
41
+ electrobun: "electrobun";
42
+ starlight: "starlight";
43
+ biome: "biome";
44
+ husky: "husky";
45
+ mcp: "mcp";
46
+ turborepo: "turborepo";
47
+ fumadocs: "fumadocs";
48
+ ultracite: "ultracite";
49
+ opentui: "opentui";
50
+ wxt: "wxt";
51
+ skills: "skills";
52
+ }>>;
53
+ declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
54
+ none: "none";
55
+ todo: "todo";
56
+ ai: "ai";
57
+ }>>;
58
+ declare function getPackageManagerJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
59
+ bun: "bun";
60
+ npm: "npm";
61
+ pnpm: "pnpm";
62
+ }>>;
63
+ declare function getAPIJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
64
+ none: "none";
65
+ trpc: "trpc";
66
+ orpc: "orpc";
67
+ }>>;
68
+ declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
69
+ none: "none";
70
+ "better-auth": "better-auth";
71
+ clerk: "clerk";
72
+ }>>;
73
+ declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
74
+ none: "none";
75
+ polar: "polar";
76
+ }>>;
77
+ declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
78
+ none: "none";
79
+ cloudflare: "cloudflare";
80
+ }>>;
81
+ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
82
+ none: "none";
83
+ cloudflare: "cloudflare";
84
+ }>>;
85
+ declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
86
+ merge: "merge";
87
+ overwrite: "overwrite";
88
+ increment: "increment";
89
+ error: "error";
90
+ }>>;
91
+ declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
92
+ none: "none";
93
+ t3: "t3";
94
+ uniwind: "uniwind";
95
+ }>>;
96
+ declare function getAddonOptionsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
97
+ wxt: z.ZodOptional<z.ZodObject<{
98
+ template: z.ZodEnum<{
99
+ vanilla: "vanilla";
100
+ vue: "vue";
101
+ react: "react";
102
+ }>;
103
+ devPort: z.ZodOptional<z.ZodNumber>;
104
+ }, z.core.$strict>>;
105
+ fumadocs: z.ZodOptional<z.ZodObject<{
106
+ template: z.ZodEnum<{
107
+ "tanstack-start": "tanstack-start";
108
+ "next-mdx": "next-mdx";
109
+ "next-mdx-static": "next-mdx-static";
110
+ waku: "waku";
111
+ "tanstack-start-spa": "tanstack-start-spa";
112
+ }>;
113
+ devPort: z.ZodOptional<z.ZodNumber>;
114
+ }, z.core.$strict>>;
115
+ opentui: z.ZodOptional<z.ZodObject<{
116
+ template: z.ZodEnum<{
117
+ react: "react";
118
+ core: "core";
119
+ }>;
120
+ }, z.core.$strict>>;
121
+ mcp: z.ZodOptional<z.ZodObject<{
122
+ scope: z.ZodOptional<z.ZodEnum<{
123
+ project: "project";
124
+ global: "global";
125
+ }>>;
126
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
127
+ "better-auth": "better-auth";
128
+ clerk: "clerk";
129
+ polar: "polar";
130
+ "glitch-stack": "glitch-stack";
131
+ context7: "context7";
132
+ "cloudflare-docs": "cloudflare-docs";
133
+ shadcn: "shadcn";
134
+ "next-devtools": "next-devtools";
135
+ "astro-docs": "astro-docs";
136
+ planetscale: "planetscale";
137
+ neon: "neon";
138
+ supabase: "supabase";
139
+ expo: "expo";
140
+ }>>>;
141
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
142
+ antigravity: "antigravity";
143
+ cline: "cline";
144
+ "cline-cli": "cline-cli";
145
+ cursor: "cursor";
146
+ "claude-code": "claude-code";
147
+ codex: "codex";
148
+ opencode: "opencode";
149
+ "gemini-cli": "gemini-cli";
150
+ "github-copilot-cli": "github-copilot-cli";
151
+ mcporter: "mcporter";
152
+ vscode: "vscode";
153
+ zed: "zed";
154
+ "claude-desktop": "claude-desktop";
155
+ goose: "goose";
156
+ }>>>;
157
+ }, z.core.$strict>>;
158
+ skills: z.ZodOptional<z.ZodObject<{
159
+ scope: z.ZodOptional<z.ZodEnum<{
160
+ project: "project";
161
+ global: "global";
162
+ }>>;
163
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
164
+ antigravity: "antigravity";
165
+ cline: "cline";
166
+ cursor: "cursor";
167
+ "claude-code": "claude-code";
168
+ codex: "codex";
169
+ opencode: "opencode";
170
+ "gemini-cli": "gemini-cli";
171
+ goose: "goose";
172
+ "github-copilot": "github-copilot";
173
+ windsurf: "windsurf";
174
+ roo: "roo";
175
+ kilo: "kilo";
176
+ openhands: "openhands";
177
+ trae: "trae";
178
+ amp: "amp";
179
+ pi: "pi";
180
+ qoder: "qoder";
181
+ "qwen-code": "qwen-code";
182
+ "kiro-cli": "kiro-cli";
183
+ droid: "droid";
184
+ "command-code": "command-code";
185
+ clawdbot: "clawdbot";
186
+ zencoder: "zencoder";
187
+ neovate: "neovate";
188
+ mcpjam: "mcpjam";
189
+ }>>>;
190
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
191
+ source: z.ZodEnum<{
192
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
193
+ "vercel/ai": "vercel/ai";
194
+ "vercel/turborepo": "vercel/turborepo";
195
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
196
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
197
+ "heroui-inc/heroui": "heroui-inc/heroui";
198
+ "shadcn/ui": "shadcn/ui";
199
+ "better-auth/skills": "better-auth/skills";
200
+ "clerk/skills": "clerk/skills";
201
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
202
+ "supabase/agent-skills": "supabase/agent-skills";
203
+ "planetscale/database-skills": "planetscale/database-skills";
204
+ "expo/skills": "expo/skills";
205
+ "prisma/skills": "prisma/skills";
206
+ "msmps/opentui-skill": "msmps/opentui-skill";
207
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
208
+ }>;
209
+ skills: z.ZodArray<z.ZodString>;
210
+ }, z.core.$strict>>>;
211
+ }, z.core.$strict>>;
212
+ ultracite: z.ZodOptional<z.ZodObject<{
213
+ linter: z.ZodOptional<z.ZodEnum<{
214
+ biome: "biome";
215
+ eslint: "eslint";
216
+ }>>;
217
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
218
+ antigravity: "antigravity";
219
+ cursor: "cursor";
220
+ vscode: "vscode";
221
+ zed: "zed";
222
+ windsurf: "windsurf";
223
+ trae: "trae";
224
+ void: "void";
225
+ kiro: "kiro";
226
+ }>>>;
227
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
228
+ cline: "cline";
229
+ codex: "codex";
230
+ opencode: "opencode";
231
+ goose: "goose";
232
+ amp: "amp";
233
+ droid: "droid";
234
+ claude: "claude";
235
+ jules: "jules";
236
+ copilot: "copilot";
237
+ aider: "aider";
238
+ "firebase-studio": "firebase-studio";
239
+ "open-hands": "open-hands";
240
+ gemini: "gemini";
241
+ junie: "junie";
242
+ augmentcode: "augmentcode";
243
+ "kilo-code": "kilo-code";
244
+ "roo-code": "roo-code";
245
+ warp: "warp";
246
+ crush: "crush";
247
+ qwen: "qwen";
248
+ "amazon-q-cli": "amazon-q-cli";
249
+ firebender: "firebender";
250
+ "cursor-cli": "cursor-cli";
251
+ "mistral-vibe": "mistral-vibe";
252
+ vercel: "vercel";
253
+ }>>>;
254
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
255
+ cursor: "cursor";
256
+ windsurf: "windsurf";
257
+ claude: "claude";
258
+ }>>>;
259
+ }, z.core.$strict>>;
260
+ }, z.core.$strict>>;
261
+ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
262
+ projectName: z.ZodOptional<z.ZodString>;
263
+ template: z.ZodOptional<z.ZodEnum<{
264
+ none: "none";
265
+ t3: "t3";
266
+ uniwind: "uniwind";
267
+ }>>;
268
+ yes: z.ZodOptional<z.ZodBoolean>;
269
+ yolo: z.ZodOptional<z.ZodBoolean>;
270
+ dryRun: z.ZodOptional<z.ZodBoolean>;
271
+ verbose: z.ZodOptional<z.ZodBoolean>;
272
+ addonOptions: z.ZodOptional<z.ZodObject<{
273
+ wxt: z.ZodOptional<z.ZodObject<{
274
+ template: z.ZodEnum<{
275
+ vanilla: "vanilla";
276
+ vue: "vue";
277
+ react: "react";
278
+ }>;
279
+ devPort: z.ZodOptional<z.ZodNumber>;
280
+ }, z.core.$strict>>;
281
+ fumadocs: z.ZodOptional<z.ZodObject<{
282
+ template: z.ZodEnum<{
283
+ "tanstack-start": "tanstack-start";
284
+ "next-mdx": "next-mdx";
285
+ "next-mdx-static": "next-mdx-static";
286
+ waku: "waku";
287
+ "tanstack-start-spa": "tanstack-start-spa";
288
+ }>;
289
+ devPort: z.ZodOptional<z.ZodNumber>;
290
+ }, z.core.$strict>>;
291
+ opentui: z.ZodOptional<z.ZodObject<{
292
+ template: z.ZodEnum<{
293
+ react: "react";
294
+ core: "core";
295
+ }>;
296
+ }, z.core.$strict>>;
297
+ mcp: z.ZodOptional<z.ZodObject<{
298
+ scope: z.ZodOptional<z.ZodEnum<{
299
+ project: "project";
300
+ global: "global";
301
+ }>>;
302
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
303
+ "better-auth": "better-auth";
304
+ clerk: "clerk";
305
+ polar: "polar";
306
+ "glitch-stack": "glitch-stack";
307
+ context7: "context7";
308
+ "cloudflare-docs": "cloudflare-docs";
309
+ shadcn: "shadcn";
310
+ "next-devtools": "next-devtools";
311
+ "astro-docs": "astro-docs";
312
+ planetscale: "planetscale";
313
+ neon: "neon";
314
+ supabase: "supabase";
315
+ expo: "expo";
316
+ }>>>;
317
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
318
+ antigravity: "antigravity";
319
+ cline: "cline";
320
+ "cline-cli": "cline-cli";
321
+ cursor: "cursor";
322
+ "claude-code": "claude-code";
323
+ codex: "codex";
324
+ opencode: "opencode";
325
+ "gemini-cli": "gemini-cli";
326
+ "github-copilot-cli": "github-copilot-cli";
327
+ mcporter: "mcporter";
328
+ vscode: "vscode";
329
+ zed: "zed";
330
+ "claude-desktop": "claude-desktop";
331
+ goose: "goose";
332
+ }>>>;
333
+ }, z.core.$strict>>;
334
+ skills: z.ZodOptional<z.ZodObject<{
335
+ scope: z.ZodOptional<z.ZodEnum<{
336
+ project: "project";
337
+ global: "global";
338
+ }>>;
339
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
340
+ antigravity: "antigravity";
341
+ cline: "cline";
342
+ cursor: "cursor";
343
+ "claude-code": "claude-code";
344
+ codex: "codex";
345
+ opencode: "opencode";
346
+ "gemini-cli": "gemini-cli";
347
+ goose: "goose";
348
+ "github-copilot": "github-copilot";
349
+ windsurf: "windsurf";
350
+ roo: "roo";
351
+ kilo: "kilo";
352
+ openhands: "openhands";
353
+ trae: "trae";
354
+ amp: "amp";
355
+ pi: "pi";
356
+ qoder: "qoder";
357
+ "qwen-code": "qwen-code";
358
+ "kiro-cli": "kiro-cli";
359
+ droid: "droid";
360
+ "command-code": "command-code";
361
+ clawdbot: "clawdbot";
362
+ zencoder: "zencoder";
363
+ neovate: "neovate";
364
+ mcpjam: "mcpjam";
365
+ }>>>;
366
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
367
+ source: z.ZodEnum<{
368
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
369
+ "vercel/ai": "vercel/ai";
370
+ "vercel/turborepo": "vercel/turborepo";
371
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
372
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
373
+ "heroui-inc/heroui": "heroui-inc/heroui";
374
+ "shadcn/ui": "shadcn/ui";
375
+ "better-auth/skills": "better-auth/skills";
376
+ "clerk/skills": "clerk/skills";
377
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
378
+ "supabase/agent-skills": "supabase/agent-skills";
379
+ "planetscale/database-skills": "planetscale/database-skills";
380
+ "expo/skills": "expo/skills";
381
+ "prisma/skills": "prisma/skills";
382
+ "msmps/opentui-skill": "msmps/opentui-skill";
383
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
384
+ }>;
385
+ skills: z.ZodArray<z.ZodString>;
386
+ }, z.core.$strict>>>;
387
+ }, z.core.$strict>>;
388
+ ultracite: z.ZodOptional<z.ZodObject<{
389
+ linter: z.ZodOptional<z.ZodEnum<{
390
+ biome: "biome";
391
+ eslint: "eslint";
392
+ }>>;
393
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
394
+ antigravity: "antigravity";
395
+ cursor: "cursor";
396
+ vscode: "vscode";
397
+ zed: "zed";
398
+ windsurf: "windsurf";
399
+ trae: "trae";
400
+ void: "void";
401
+ kiro: "kiro";
402
+ }>>>;
403
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
404
+ cline: "cline";
405
+ codex: "codex";
406
+ opencode: "opencode";
407
+ goose: "goose";
408
+ amp: "amp";
409
+ droid: "droid";
410
+ claude: "claude";
411
+ jules: "jules";
412
+ copilot: "copilot";
413
+ aider: "aider";
414
+ "firebase-studio": "firebase-studio";
415
+ "open-hands": "open-hands";
416
+ gemini: "gemini";
417
+ junie: "junie";
418
+ augmentcode: "augmentcode";
419
+ "kilo-code": "kilo-code";
420
+ "roo-code": "roo-code";
421
+ warp: "warp";
422
+ crush: "crush";
423
+ qwen: "qwen";
424
+ "amazon-q-cli": "amazon-q-cli";
425
+ firebender: "firebender";
426
+ "cursor-cli": "cursor-cli";
427
+ "mistral-vibe": "mistral-vibe";
428
+ vercel: "vercel";
429
+ }>>>;
430
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
431
+ cursor: "cursor";
432
+ windsurf: "windsurf";
433
+ claude: "claude";
434
+ }>>>;
435
+ }, z.core.$strict>>;
436
+ }, z.core.$strict>>;
437
+ database: z.ZodOptional<z.ZodEnum<{
438
+ none: "none";
439
+ sqlite: "sqlite";
440
+ postgres: "postgres";
441
+ mysql: "mysql";
442
+ }>>;
443
+ orm: z.ZodOptional<z.ZodEnum<{
444
+ none: "none";
445
+ drizzle: "drizzle";
446
+ prisma: "prisma";
447
+ }>>;
448
+ auth: z.ZodOptional<z.ZodEnum<{
449
+ none: "none";
450
+ "better-auth": "better-auth";
451
+ clerk: "clerk";
452
+ }>>;
453
+ payments: z.ZodOptional<z.ZodEnum<{
454
+ none: "none";
455
+ polar: "polar";
456
+ }>>;
457
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
458
+ none: "none";
459
+ "tanstack-start": "tanstack-start";
460
+ next: "next";
461
+ angular: "angular";
462
+ "native-uniwind": "native-uniwind";
463
+ astro: "astro";
464
+ }>>>;
465
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
466
+ none: "none";
467
+ pwa: "pwa";
468
+ tauri: "tauri";
469
+ electrobun: "electrobun";
470
+ starlight: "starlight";
471
+ biome: "biome";
472
+ husky: "husky";
473
+ mcp: "mcp";
474
+ turborepo: "turborepo";
475
+ fumadocs: "fumadocs";
476
+ ultracite: "ultracite";
477
+ opentui: "opentui";
478
+ wxt: "wxt";
479
+ skills: "skills";
480
+ }>>>;
481
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
482
+ none: "none";
483
+ todo: "todo";
484
+ ai: "ai";
485
+ }>>>;
486
+ git: z.ZodOptional<z.ZodBoolean>;
487
+ packageManager: z.ZodOptional<z.ZodEnum<{
488
+ bun: "bun";
489
+ npm: "npm";
490
+ pnpm: "pnpm";
491
+ }>>;
492
+ install: z.ZodOptional<z.ZodBoolean>;
493
+ backend: z.ZodOptional<z.ZodEnum<{
494
+ none: "none";
495
+ hono: "hono";
496
+ express: "express";
497
+ fastify: "fastify";
498
+ nest: "nest";
499
+ self: "self";
500
+ }>>;
501
+ runtime: z.ZodOptional<z.ZodEnum<{
502
+ none: "none";
503
+ bun: "bun";
504
+ node: "node";
505
+ workers: "workers";
506
+ }>>;
507
+ api: z.ZodOptional<z.ZodEnum<{
508
+ none: "none";
509
+ trpc: "trpc";
510
+ orpc: "orpc";
511
+ }>>;
512
+ webDeploy: z.ZodOptional<z.ZodEnum<{
513
+ none: "none";
514
+ cloudflare: "cloudflare";
515
+ }>>;
516
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
517
+ none: "none";
518
+ cloudflare: "cloudflare";
519
+ }>>;
520
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
521
+ merge: "merge";
522
+ overwrite: "overwrite";
523
+ increment: "increment";
524
+ error: "error";
525
+ }>>;
526
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
527
+ }, z.core.$strict>>;
528
+ declare function getAddInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
529
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
530
+ none: "none";
531
+ pwa: "pwa";
532
+ tauri: "tauri";
533
+ electrobun: "electrobun";
534
+ starlight: "starlight";
535
+ biome: "biome";
536
+ husky: "husky";
537
+ mcp: "mcp";
538
+ turborepo: "turborepo";
539
+ fumadocs: "fumadocs";
540
+ ultracite: "ultracite";
541
+ opentui: "opentui";
542
+ wxt: "wxt";
543
+ skills: "skills";
544
+ }>>>;
545
+ addonOptions: z.ZodOptional<z.ZodObject<{
546
+ wxt: z.ZodOptional<z.ZodObject<{
547
+ template: z.ZodEnum<{
548
+ vanilla: "vanilla";
549
+ vue: "vue";
550
+ react: "react";
551
+ }>;
552
+ devPort: z.ZodOptional<z.ZodNumber>;
553
+ }, z.core.$strict>>;
554
+ fumadocs: z.ZodOptional<z.ZodObject<{
555
+ template: z.ZodEnum<{
556
+ "tanstack-start": "tanstack-start";
557
+ "next-mdx": "next-mdx";
558
+ "next-mdx-static": "next-mdx-static";
559
+ waku: "waku";
560
+ "tanstack-start-spa": "tanstack-start-spa";
561
+ }>;
562
+ devPort: z.ZodOptional<z.ZodNumber>;
563
+ }, z.core.$strict>>;
564
+ opentui: z.ZodOptional<z.ZodObject<{
565
+ template: z.ZodEnum<{
566
+ react: "react";
567
+ core: "core";
568
+ }>;
569
+ }, z.core.$strict>>;
570
+ mcp: z.ZodOptional<z.ZodObject<{
571
+ scope: z.ZodOptional<z.ZodEnum<{
572
+ project: "project";
573
+ global: "global";
574
+ }>>;
575
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
576
+ "better-auth": "better-auth";
577
+ clerk: "clerk";
578
+ polar: "polar";
579
+ "glitch-stack": "glitch-stack";
580
+ context7: "context7";
581
+ "cloudflare-docs": "cloudflare-docs";
582
+ shadcn: "shadcn";
583
+ "next-devtools": "next-devtools";
584
+ "astro-docs": "astro-docs";
585
+ planetscale: "planetscale";
586
+ neon: "neon";
587
+ supabase: "supabase";
588
+ expo: "expo";
589
+ }>>>;
590
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
591
+ antigravity: "antigravity";
592
+ cline: "cline";
593
+ "cline-cli": "cline-cli";
594
+ cursor: "cursor";
595
+ "claude-code": "claude-code";
596
+ codex: "codex";
597
+ opencode: "opencode";
598
+ "gemini-cli": "gemini-cli";
599
+ "github-copilot-cli": "github-copilot-cli";
600
+ mcporter: "mcporter";
601
+ vscode: "vscode";
602
+ zed: "zed";
603
+ "claude-desktop": "claude-desktop";
604
+ goose: "goose";
605
+ }>>>;
606
+ }, z.core.$strict>>;
607
+ skills: z.ZodOptional<z.ZodObject<{
608
+ scope: z.ZodOptional<z.ZodEnum<{
609
+ project: "project";
610
+ global: "global";
611
+ }>>;
612
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
613
+ antigravity: "antigravity";
614
+ cline: "cline";
615
+ cursor: "cursor";
616
+ "claude-code": "claude-code";
617
+ codex: "codex";
618
+ opencode: "opencode";
619
+ "gemini-cli": "gemini-cli";
620
+ goose: "goose";
621
+ "github-copilot": "github-copilot";
622
+ windsurf: "windsurf";
623
+ roo: "roo";
624
+ kilo: "kilo";
625
+ openhands: "openhands";
626
+ trae: "trae";
627
+ amp: "amp";
628
+ pi: "pi";
629
+ qoder: "qoder";
630
+ "qwen-code": "qwen-code";
631
+ "kiro-cli": "kiro-cli";
632
+ droid: "droid";
633
+ "command-code": "command-code";
634
+ clawdbot: "clawdbot";
635
+ zencoder: "zencoder";
636
+ neovate: "neovate";
637
+ mcpjam: "mcpjam";
638
+ }>>>;
639
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
640
+ source: z.ZodEnum<{
641
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
642
+ "vercel/ai": "vercel/ai";
643
+ "vercel/turborepo": "vercel/turborepo";
644
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
645
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
646
+ "heroui-inc/heroui": "heroui-inc/heroui";
647
+ "shadcn/ui": "shadcn/ui";
648
+ "better-auth/skills": "better-auth/skills";
649
+ "clerk/skills": "clerk/skills";
650
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
651
+ "supabase/agent-skills": "supabase/agent-skills";
652
+ "planetscale/database-skills": "planetscale/database-skills";
653
+ "expo/skills": "expo/skills";
654
+ "prisma/skills": "prisma/skills";
655
+ "msmps/opentui-skill": "msmps/opentui-skill";
656
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
657
+ }>;
658
+ skills: z.ZodArray<z.ZodString>;
659
+ }, z.core.$strict>>>;
660
+ }, z.core.$strict>>;
661
+ ultracite: z.ZodOptional<z.ZodObject<{
662
+ linter: z.ZodOptional<z.ZodEnum<{
663
+ biome: "biome";
664
+ eslint: "eslint";
665
+ }>>;
666
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
667
+ antigravity: "antigravity";
668
+ cursor: "cursor";
669
+ vscode: "vscode";
670
+ zed: "zed";
671
+ windsurf: "windsurf";
672
+ trae: "trae";
673
+ void: "void";
674
+ kiro: "kiro";
675
+ }>>>;
676
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
677
+ cline: "cline";
678
+ codex: "codex";
679
+ opencode: "opencode";
680
+ goose: "goose";
681
+ amp: "amp";
682
+ droid: "droid";
683
+ claude: "claude";
684
+ jules: "jules";
685
+ copilot: "copilot";
686
+ aider: "aider";
687
+ "firebase-studio": "firebase-studio";
688
+ "open-hands": "open-hands";
689
+ gemini: "gemini";
690
+ junie: "junie";
691
+ augmentcode: "augmentcode";
692
+ "kilo-code": "kilo-code";
693
+ "roo-code": "roo-code";
694
+ warp: "warp";
695
+ crush: "crush";
696
+ qwen: "qwen";
697
+ "amazon-q-cli": "amazon-q-cli";
698
+ firebender: "firebender";
699
+ "cursor-cli": "cursor-cli";
700
+ "mistral-vibe": "mistral-vibe";
701
+ vercel: "vercel";
702
+ }>>>;
703
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
704
+ cursor: "cursor";
705
+ windsurf: "windsurf";
706
+ claude: "claude";
707
+ }>>>;
708
+ }, z.core.$strict>>;
709
+ }, z.core.$strict>>;
710
+ webDeploy: z.ZodOptional<z.ZodEnum<{
711
+ none: "none";
712
+ cloudflare: "cloudflare";
713
+ }>>;
714
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
715
+ none: "none";
716
+ cloudflare: "cloudflare";
717
+ }>>;
718
+ projectDir: z.ZodOptional<z.ZodString>;
719
+ install: z.ZodOptional<z.ZodBoolean>;
720
+ packageManager: z.ZodOptional<z.ZodEnum<{
721
+ bun: "bun";
722
+ npm: "npm";
723
+ pnpm: "pnpm";
724
+ }>>;
725
+ dryRun: z.ZodOptional<z.ZodBoolean>;
726
+ }, z.core.$strict>>;
727
+ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
728
+ projectName: z.ZodString;
729
+ projectDir: z.ZodString;
730
+ relativePath: z.ZodString;
731
+ addonOptions: z.ZodOptional<z.ZodObject<{
732
+ wxt: z.ZodOptional<z.ZodObject<{
733
+ template: z.ZodEnum<{
734
+ vanilla: "vanilla";
735
+ vue: "vue";
736
+ react: "react";
737
+ }>;
738
+ devPort: z.ZodOptional<z.ZodNumber>;
739
+ }, z.core.$strict>>;
740
+ fumadocs: z.ZodOptional<z.ZodObject<{
741
+ template: z.ZodEnum<{
742
+ "tanstack-start": "tanstack-start";
743
+ "next-mdx": "next-mdx";
744
+ "next-mdx-static": "next-mdx-static";
745
+ waku: "waku";
746
+ "tanstack-start-spa": "tanstack-start-spa";
747
+ }>;
748
+ devPort: z.ZodOptional<z.ZodNumber>;
749
+ }, z.core.$strict>>;
750
+ opentui: z.ZodOptional<z.ZodObject<{
751
+ template: z.ZodEnum<{
752
+ react: "react";
753
+ core: "core";
754
+ }>;
755
+ }, z.core.$strict>>;
756
+ mcp: z.ZodOptional<z.ZodObject<{
757
+ scope: z.ZodOptional<z.ZodEnum<{
758
+ project: "project";
759
+ global: "global";
760
+ }>>;
761
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
762
+ "better-auth": "better-auth";
763
+ clerk: "clerk";
764
+ polar: "polar";
765
+ "glitch-stack": "glitch-stack";
766
+ context7: "context7";
767
+ "cloudflare-docs": "cloudflare-docs";
768
+ shadcn: "shadcn";
769
+ "next-devtools": "next-devtools";
770
+ "astro-docs": "astro-docs";
771
+ planetscale: "planetscale";
772
+ neon: "neon";
773
+ supabase: "supabase";
774
+ expo: "expo";
775
+ }>>>;
776
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
777
+ antigravity: "antigravity";
778
+ cline: "cline";
779
+ "cline-cli": "cline-cli";
780
+ cursor: "cursor";
781
+ "claude-code": "claude-code";
782
+ codex: "codex";
783
+ opencode: "opencode";
784
+ "gemini-cli": "gemini-cli";
785
+ "github-copilot-cli": "github-copilot-cli";
786
+ mcporter: "mcporter";
787
+ vscode: "vscode";
788
+ zed: "zed";
789
+ "claude-desktop": "claude-desktop";
790
+ goose: "goose";
791
+ }>>>;
792
+ }, z.core.$strict>>;
793
+ skills: z.ZodOptional<z.ZodObject<{
794
+ scope: z.ZodOptional<z.ZodEnum<{
795
+ project: "project";
796
+ global: "global";
797
+ }>>;
798
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
799
+ antigravity: "antigravity";
800
+ cline: "cline";
801
+ cursor: "cursor";
802
+ "claude-code": "claude-code";
803
+ codex: "codex";
804
+ opencode: "opencode";
805
+ "gemini-cli": "gemini-cli";
806
+ goose: "goose";
807
+ "github-copilot": "github-copilot";
808
+ windsurf: "windsurf";
809
+ roo: "roo";
810
+ kilo: "kilo";
811
+ openhands: "openhands";
812
+ trae: "trae";
813
+ amp: "amp";
814
+ pi: "pi";
815
+ qoder: "qoder";
816
+ "qwen-code": "qwen-code";
817
+ "kiro-cli": "kiro-cli";
818
+ droid: "droid";
819
+ "command-code": "command-code";
820
+ clawdbot: "clawdbot";
821
+ zencoder: "zencoder";
822
+ neovate: "neovate";
823
+ mcpjam: "mcpjam";
824
+ }>>>;
825
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
826
+ source: z.ZodEnum<{
827
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
828
+ "vercel/ai": "vercel/ai";
829
+ "vercel/turborepo": "vercel/turborepo";
830
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
831
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
832
+ "heroui-inc/heroui": "heroui-inc/heroui";
833
+ "shadcn/ui": "shadcn/ui";
834
+ "better-auth/skills": "better-auth/skills";
835
+ "clerk/skills": "clerk/skills";
836
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
837
+ "supabase/agent-skills": "supabase/agent-skills";
838
+ "planetscale/database-skills": "planetscale/database-skills";
839
+ "expo/skills": "expo/skills";
840
+ "prisma/skills": "prisma/skills";
841
+ "msmps/opentui-skill": "msmps/opentui-skill";
842
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
843
+ }>;
844
+ skills: z.ZodArray<z.ZodString>;
845
+ }, z.core.$strict>>>;
846
+ }, z.core.$strict>>;
847
+ ultracite: z.ZodOptional<z.ZodObject<{
848
+ linter: z.ZodOptional<z.ZodEnum<{
849
+ biome: "biome";
850
+ eslint: "eslint";
851
+ }>>;
852
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
853
+ antigravity: "antigravity";
854
+ cursor: "cursor";
855
+ vscode: "vscode";
856
+ zed: "zed";
857
+ windsurf: "windsurf";
858
+ trae: "trae";
859
+ void: "void";
860
+ kiro: "kiro";
861
+ }>>>;
862
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
863
+ cline: "cline";
864
+ codex: "codex";
865
+ opencode: "opencode";
866
+ goose: "goose";
867
+ amp: "amp";
868
+ droid: "droid";
869
+ claude: "claude";
870
+ jules: "jules";
871
+ copilot: "copilot";
872
+ aider: "aider";
873
+ "firebase-studio": "firebase-studio";
874
+ "open-hands": "open-hands";
875
+ gemini: "gemini";
876
+ junie: "junie";
877
+ augmentcode: "augmentcode";
878
+ "kilo-code": "kilo-code";
879
+ "roo-code": "roo-code";
880
+ warp: "warp";
881
+ crush: "crush";
882
+ qwen: "qwen";
883
+ "amazon-q-cli": "amazon-q-cli";
884
+ firebender: "firebender";
885
+ "cursor-cli": "cursor-cli";
886
+ "mistral-vibe": "mistral-vibe";
887
+ vercel: "vercel";
888
+ }>>>;
889
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
890
+ cursor: "cursor";
891
+ windsurf: "windsurf";
892
+ claude: "claude";
893
+ }>>>;
894
+ }, z.core.$strict>>;
895
+ }, z.core.$strict>>;
896
+ database: z.ZodEnum<{
897
+ none: "none";
898
+ sqlite: "sqlite";
899
+ postgres: "postgres";
900
+ mysql: "mysql";
901
+ }>;
902
+ orm: z.ZodEnum<{
903
+ none: "none";
904
+ drizzle: "drizzle";
905
+ prisma: "prisma";
906
+ }>;
907
+ backend: z.ZodEnum<{
908
+ none: "none";
909
+ hono: "hono";
910
+ express: "express";
911
+ fastify: "fastify";
912
+ nest: "nest";
913
+ self: "self";
914
+ }>;
915
+ runtime: z.ZodEnum<{
916
+ none: "none";
917
+ bun: "bun";
918
+ node: "node";
919
+ workers: "workers";
920
+ }>;
921
+ frontend: z.ZodArray<z.ZodEnum<{
922
+ none: "none";
923
+ "tanstack-start": "tanstack-start";
924
+ next: "next";
925
+ angular: "angular";
926
+ "native-uniwind": "native-uniwind";
927
+ astro: "astro";
928
+ }>>;
929
+ addons: z.ZodArray<z.ZodEnum<{
930
+ none: "none";
931
+ pwa: "pwa";
932
+ tauri: "tauri";
933
+ electrobun: "electrobun";
934
+ starlight: "starlight";
935
+ biome: "biome";
936
+ husky: "husky";
937
+ mcp: "mcp";
938
+ turborepo: "turborepo";
939
+ fumadocs: "fumadocs";
940
+ ultracite: "ultracite";
941
+ opentui: "opentui";
942
+ wxt: "wxt";
943
+ skills: "skills";
944
+ }>>;
945
+ examples: z.ZodArray<z.ZodEnum<{
946
+ none: "none";
947
+ todo: "todo";
948
+ ai: "ai";
949
+ }>>;
950
+ auth: z.ZodEnum<{
951
+ none: "none";
952
+ "better-auth": "better-auth";
953
+ clerk: "clerk";
954
+ }>;
955
+ payments: z.ZodEnum<{
956
+ none: "none";
957
+ polar: "polar";
958
+ }>;
959
+ git: z.ZodBoolean;
960
+ packageManager: z.ZodEnum<{
961
+ bun: "bun";
962
+ npm: "npm";
963
+ pnpm: "pnpm";
964
+ }>;
965
+ install: z.ZodBoolean;
966
+ api: z.ZodEnum<{
967
+ none: "none";
968
+ trpc: "trpc";
969
+ orpc: "orpc";
970
+ }>;
971
+ webDeploy: z.ZodEnum<{
972
+ none: "none";
973
+ cloudflare: "cloudflare";
974
+ }>;
975
+ serverDeploy: z.ZodEnum<{
976
+ none: "none";
977
+ cloudflare: "cloudflare";
978
+ }>;
979
+ }, z.core.$strip>>;
980
+ declare function getGlitchStackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
981
+ version: z.ZodString;
982
+ createdAt: z.ZodString;
983
+ reproducibleCommand: z.ZodOptional<z.ZodString>;
984
+ addonOptions: z.ZodOptional<z.ZodObject<{
985
+ wxt: z.ZodOptional<z.ZodObject<{
986
+ template: z.ZodEnum<{
987
+ vanilla: "vanilla";
988
+ vue: "vue";
989
+ react: "react";
990
+ }>;
991
+ devPort: z.ZodOptional<z.ZodNumber>;
992
+ }, z.core.$strict>>;
993
+ fumadocs: z.ZodOptional<z.ZodObject<{
994
+ template: z.ZodEnum<{
995
+ "tanstack-start": "tanstack-start";
996
+ "next-mdx": "next-mdx";
997
+ "next-mdx-static": "next-mdx-static";
998
+ waku: "waku";
999
+ "tanstack-start-spa": "tanstack-start-spa";
1000
+ }>;
1001
+ devPort: z.ZodOptional<z.ZodNumber>;
1002
+ }, z.core.$strict>>;
1003
+ opentui: z.ZodOptional<z.ZodObject<{
1004
+ template: z.ZodEnum<{
1005
+ react: "react";
1006
+ core: "core";
1007
+ }>;
1008
+ }, z.core.$strict>>;
1009
+ mcp: z.ZodOptional<z.ZodObject<{
1010
+ scope: z.ZodOptional<z.ZodEnum<{
1011
+ project: "project";
1012
+ global: "global";
1013
+ }>>;
1014
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1015
+ "better-auth": "better-auth";
1016
+ clerk: "clerk";
1017
+ polar: "polar";
1018
+ "glitch-stack": "glitch-stack";
1019
+ context7: "context7";
1020
+ "cloudflare-docs": "cloudflare-docs";
1021
+ shadcn: "shadcn";
1022
+ "next-devtools": "next-devtools";
1023
+ "astro-docs": "astro-docs";
1024
+ planetscale: "planetscale";
1025
+ neon: "neon";
1026
+ supabase: "supabase";
1027
+ expo: "expo";
1028
+ }>>>;
1029
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1030
+ antigravity: "antigravity";
1031
+ cline: "cline";
1032
+ "cline-cli": "cline-cli";
1033
+ cursor: "cursor";
1034
+ "claude-code": "claude-code";
1035
+ codex: "codex";
1036
+ opencode: "opencode";
1037
+ "gemini-cli": "gemini-cli";
1038
+ "github-copilot-cli": "github-copilot-cli";
1039
+ mcporter: "mcporter";
1040
+ vscode: "vscode";
1041
+ zed: "zed";
1042
+ "claude-desktop": "claude-desktop";
1043
+ goose: "goose";
1044
+ }>>>;
1045
+ }, z.core.$strict>>;
1046
+ skills: z.ZodOptional<z.ZodObject<{
1047
+ scope: z.ZodOptional<z.ZodEnum<{
1048
+ project: "project";
1049
+ global: "global";
1050
+ }>>;
1051
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1052
+ antigravity: "antigravity";
1053
+ cline: "cline";
1054
+ cursor: "cursor";
1055
+ "claude-code": "claude-code";
1056
+ codex: "codex";
1057
+ opencode: "opencode";
1058
+ "gemini-cli": "gemini-cli";
1059
+ goose: "goose";
1060
+ "github-copilot": "github-copilot";
1061
+ windsurf: "windsurf";
1062
+ roo: "roo";
1063
+ kilo: "kilo";
1064
+ openhands: "openhands";
1065
+ trae: "trae";
1066
+ amp: "amp";
1067
+ pi: "pi";
1068
+ qoder: "qoder";
1069
+ "qwen-code": "qwen-code";
1070
+ "kiro-cli": "kiro-cli";
1071
+ droid: "droid";
1072
+ "command-code": "command-code";
1073
+ clawdbot: "clawdbot";
1074
+ zencoder: "zencoder";
1075
+ neovate: "neovate";
1076
+ mcpjam: "mcpjam";
1077
+ }>>>;
1078
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1079
+ source: z.ZodEnum<{
1080
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
1081
+ "vercel/ai": "vercel/ai";
1082
+ "vercel/turborepo": "vercel/turborepo";
1083
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
1084
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
1085
+ "heroui-inc/heroui": "heroui-inc/heroui";
1086
+ "shadcn/ui": "shadcn/ui";
1087
+ "better-auth/skills": "better-auth/skills";
1088
+ "clerk/skills": "clerk/skills";
1089
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
1090
+ "supabase/agent-skills": "supabase/agent-skills";
1091
+ "planetscale/database-skills": "planetscale/database-skills";
1092
+ "expo/skills": "expo/skills";
1093
+ "prisma/skills": "prisma/skills";
1094
+ "msmps/opentui-skill": "msmps/opentui-skill";
1095
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
1096
+ }>;
1097
+ skills: z.ZodArray<z.ZodString>;
1098
+ }, z.core.$strict>>>;
1099
+ }, z.core.$strict>>;
1100
+ ultracite: z.ZodOptional<z.ZodObject<{
1101
+ linter: z.ZodOptional<z.ZodEnum<{
1102
+ biome: "biome";
1103
+ eslint: "eslint";
1104
+ }>>;
1105
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1106
+ antigravity: "antigravity";
1107
+ cursor: "cursor";
1108
+ vscode: "vscode";
1109
+ zed: "zed";
1110
+ windsurf: "windsurf";
1111
+ trae: "trae";
1112
+ void: "void";
1113
+ kiro: "kiro";
1114
+ }>>>;
1115
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1116
+ cline: "cline";
1117
+ codex: "codex";
1118
+ opencode: "opencode";
1119
+ goose: "goose";
1120
+ amp: "amp";
1121
+ droid: "droid";
1122
+ claude: "claude";
1123
+ jules: "jules";
1124
+ copilot: "copilot";
1125
+ aider: "aider";
1126
+ "firebase-studio": "firebase-studio";
1127
+ "open-hands": "open-hands";
1128
+ gemini: "gemini";
1129
+ junie: "junie";
1130
+ augmentcode: "augmentcode";
1131
+ "kilo-code": "kilo-code";
1132
+ "roo-code": "roo-code";
1133
+ warp: "warp";
1134
+ crush: "crush";
1135
+ qwen: "qwen";
1136
+ "amazon-q-cli": "amazon-q-cli";
1137
+ firebender: "firebender";
1138
+ "cursor-cli": "cursor-cli";
1139
+ "mistral-vibe": "mistral-vibe";
1140
+ vercel: "vercel";
1141
+ }>>>;
1142
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1143
+ cursor: "cursor";
1144
+ windsurf: "windsurf";
1145
+ claude: "claude";
1146
+ }>>>;
1147
+ }, z.core.$strict>>;
1148
+ }, z.core.$strict>>;
1149
+ database: z.ZodEnum<{
1150
+ none: "none";
1151
+ sqlite: "sqlite";
1152
+ postgres: "postgres";
1153
+ mysql: "mysql";
1154
+ }>;
1155
+ orm: z.ZodEnum<{
1156
+ none: "none";
1157
+ drizzle: "drizzle";
1158
+ prisma: "prisma";
1159
+ }>;
1160
+ backend: z.ZodEnum<{
1161
+ none: "none";
1162
+ hono: "hono";
1163
+ express: "express";
1164
+ fastify: "fastify";
1165
+ nest: "nest";
1166
+ self: "self";
1167
+ }>;
1168
+ runtime: z.ZodEnum<{
1169
+ none: "none";
1170
+ bun: "bun";
1171
+ node: "node";
1172
+ workers: "workers";
1173
+ }>;
1174
+ frontend: z.ZodArray<z.ZodEnum<{
1175
+ none: "none";
1176
+ "tanstack-start": "tanstack-start";
1177
+ next: "next";
1178
+ angular: "angular";
1179
+ "native-uniwind": "native-uniwind";
1180
+ astro: "astro";
1181
+ }>>;
1182
+ addons: z.ZodArray<z.ZodEnum<{
1183
+ none: "none";
1184
+ pwa: "pwa";
1185
+ tauri: "tauri";
1186
+ electrobun: "electrobun";
1187
+ starlight: "starlight";
1188
+ biome: "biome";
1189
+ husky: "husky";
1190
+ mcp: "mcp";
1191
+ turborepo: "turborepo";
1192
+ fumadocs: "fumadocs";
1193
+ ultracite: "ultracite";
1194
+ opentui: "opentui";
1195
+ wxt: "wxt";
1196
+ skills: "skills";
1197
+ }>>;
1198
+ examples: z.ZodArray<z.ZodEnum<{
1199
+ none: "none";
1200
+ todo: "todo";
1201
+ ai: "ai";
1202
+ }>>;
1203
+ auth: z.ZodEnum<{
1204
+ none: "none";
1205
+ "better-auth": "better-auth";
1206
+ clerk: "clerk";
1207
+ }>;
1208
+ payments: z.ZodEnum<{
1209
+ none: "none";
1210
+ polar: "polar";
1211
+ }>;
1212
+ packageManager: z.ZodEnum<{
1213
+ bun: "bun";
1214
+ npm: "npm";
1215
+ pnpm: "pnpm";
1216
+ }>;
1217
+ api: z.ZodEnum<{
1218
+ none: "none";
1219
+ trpc: "trpc";
1220
+ orpc: "orpc";
1221
+ }>;
1222
+ webDeploy: z.ZodEnum<{
1223
+ none: "none";
1224
+ cloudflare: "cloudflare";
1225
+ }>;
1226
+ serverDeploy: z.ZodEnum<{
1227
+ none: "none";
1228
+ cloudflare: "cloudflare";
1229
+ }>;
1230
+ }, z.core.$strip>>;
1231
+ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
1232
+ success: z.ZodBoolean;
1233
+ projectConfig: z.ZodObject<{
1234
+ projectName: z.ZodString;
1235
+ projectDir: z.ZodString;
1236
+ relativePath: z.ZodString;
1237
+ addonOptions: z.ZodOptional<z.ZodObject<{
1238
+ wxt: z.ZodOptional<z.ZodObject<{
1239
+ template: z.ZodEnum<{
1240
+ vanilla: "vanilla";
1241
+ vue: "vue";
1242
+ react: "react";
1243
+ }>;
1244
+ devPort: z.ZodOptional<z.ZodNumber>;
1245
+ }, z.core.$strict>>;
1246
+ fumadocs: z.ZodOptional<z.ZodObject<{
1247
+ template: z.ZodEnum<{
1248
+ "tanstack-start": "tanstack-start";
1249
+ "next-mdx": "next-mdx";
1250
+ "next-mdx-static": "next-mdx-static";
1251
+ waku: "waku";
1252
+ "tanstack-start-spa": "tanstack-start-spa";
1253
+ }>;
1254
+ devPort: z.ZodOptional<z.ZodNumber>;
1255
+ }, z.core.$strict>>;
1256
+ opentui: z.ZodOptional<z.ZodObject<{
1257
+ template: z.ZodEnum<{
1258
+ react: "react";
1259
+ core: "core";
1260
+ }>;
1261
+ }, z.core.$strict>>;
1262
+ mcp: z.ZodOptional<z.ZodObject<{
1263
+ scope: z.ZodOptional<z.ZodEnum<{
1264
+ project: "project";
1265
+ global: "global";
1266
+ }>>;
1267
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1268
+ "better-auth": "better-auth";
1269
+ clerk: "clerk";
1270
+ polar: "polar";
1271
+ "glitch-stack": "glitch-stack";
1272
+ context7: "context7";
1273
+ "cloudflare-docs": "cloudflare-docs";
1274
+ shadcn: "shadcn";
1275
+ "next-devtools": "next-devtools";
1276
+ "astro-docs": "astro-docs";
1277
+ planetscale: "planetscale";
1278
+ neon: "neon";
1279
+ supabase: "supabase";
1280
+ expo: "expo";
1281
+ }>>>;
1282
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1283
+ antigravity: "antigravity";
1284
+ cline: "cline";
1285
+ "cline-cli": "cline-cli";
1286
+ cursor: "cursor";
1287
+ "claude-code": "claude-code";
1288
+ codex: "codex";
1289
+ opencode: "opencode";
1290
+ "gemini-cli": "gemini-cli";
1291
+ "github-copilot-cli": "github-copilot-cli";
1292
+ mcporter: "mcporter";
1293
+ vscode: "vscode";
1294
+ zed: "zed";
1295
+ "claude-desktop": "claude-desktop";
1296
+ goose: "goose";
1297
+ }>>>;
1298
+ }, z.core.$strict>>;
1299
+ skills: z.ZodOptional<z.ZodObject<{
1300
+ scope: z.ZodOptional<z.ZodEnum<{
1301
+ project: "project";
1302
+ global: "global";
1303
+ }>>;
1304
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1305
+ antigravity: "antigravity";
1306
+ cline: "cline";
1307
+ cursor: "cursor";
1308
+ "claude-code": "claude-code";
1309
+ codex: "codex";
1310
+ opencode: "opencode";
1311
+ "gemini-cli": "gemini-cli";
1312
+ goose: "goose";
1313
+ "github-copilot": "github-copilot";
1314
+ windsurf: "windsurf";
1315
+ roo: "roo";
1316
+ kilo: "kilo";
1317
+ openhands: "openhands";
1318
+ trae: "trae";
1319
+ amp: "amp";
1320
+ pi: "pi";
1321
+ qoder: "qoder";
1322
+ "qwen-code": "qwen-code";
1323
+ "kiro-cli": "kiro-cli";
1324
+ droid: "droid";
1325
+ "command-code": "command-code";
1326
+ clawdbot: "clawdbot";
1327
+ zencoder: "zencoder";
1328
+ neovate: "neovate";
1329
+ mcpjam: "mcpjam";
1330
+ }>>>;
1331
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1332
+ source: z.ZodEnum<{
1333
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
1334
+ "vercel/ai": "vercel/ai";
1335
+ "vercel/turborepo": "vercel/turborepo";
1336
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
1337
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
1338
+ "heroui-inc/heroui": "heroui-inc/heroui";
1339
+ "shadcn/ui": "shadcn/ui";
1340
+ "better-auth/skills": "better-auth/skills";
1341
+ "clerk/skills": "clerk/skills";
1342
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
1343
+ "supabase/agent-skills": "supabase/agent-skills";
1344
+ "planetscale/database-skills": "planetscale/database-skills";
1345
+ "expo/skills": "expo/skills";
1346
+ "prisma/skills": "prisma/skills";
1347
+ "msmps/opentui-skill": "msmps/opentui-skill";
1348
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
1349
+ }>;
1350
+ skills: z.ZodArray<z.ZodString>;
1351
+ }, z.core.$strict>>>;
1352
+ }, z.core.$strict>>;
1353
+ ultracite: z.ZodOptional<z.ZodObject<{
1354
+ linter: z.ZodOptional<z.ZodEnum<{
1355
+ biome: "biome";
1356
+ eslint: "eslint";
1357
+ }>>;
1358
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1359
+ antigravity: "antigravity";
1360
+ cursor: "cursor";
1361
+ vscode: "vscode";
1362
+ zed: "zed";
1363
+ windsurf: "windsurf";
1364
+ trae: "trae";
1365
+ void: "void";
1366
+ kiro: "kiro";
1367
+ }>>>;
1368
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1369
+ cline: "cline";
1370
+ codex: "codex";
1371
+ opencode: "opencode";
1372
+ goose: "goose";
1373
+ amp: "amp";
1374
+ droid: "droid";
1375
+ claude: "claude";
1376
+ jules: "jules";
1377
+ copilot: "copilot";
1378
+ aider: "aider";
1379
+ "firebase-studio": "firebase-studio";
1380
+ "open-hands": "open-hands";
1381
+ gemini: "gemini";
1382
+ junie: "junie";
1383
+ augmentcode: "augmentcode";
1384
+ "kilo-code": "kilo-code";
1385
+ "roo-code": "roo-code";
1386
+ warp: "warp";
1387
+ crush: "crush";
1388
+ qwen: "qwen";
1389
+ "amazon-q-cli": "amazon-q-cli";
1390
+ firebender: "firebender";
1391
+ "cursor-cli": "cursor-cli";
1392
+ "mistral-vibe": "mistral-vibe";
1393
+ vercel: "vercel";
1394
+ }>>>;
1395
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1396
+ cursor: "cursor";
1397
+ windsurf: "windsurf";
1398
+ claude: "claude";
1399
+ }>>>;
1400
+ }, z.core.$strict>>;
1401
+ }, z.core.$strict>>;
1402
+ database: z.ZodEnum<{
1403
+ none: "none";
1404
+ sqlite: "sqlite";
1405
+ postgres: "postgres";
1406
+ mysql: "mysql";
1407
+ }>;
1408
+ orm: z.ZodEnum<{
1409
+ none: "none";
1410
+ drizzle: "drizzle";
1411
+ prisma: "prisma";
1412
+ }>;
1413
+ backend: z.ZodEnum<{
1414
+ none: "none";
1415
+ hono: "hono";
1416
+ express: "express";
1417
+ fastify: "fastify";
1418
+ nest: "nest";
1419
+ self: "self";
1420
+ }>;
1421
+ runtime: z.ZodEnum<{
1422
+ none: "none";
1423
+ bun: "bun";
1424
+ node: "node";
1425
+ workers: "workers";
1426
+ }>;
1427
+ frontend: z.ZodArray<z.ZodEnum<{
1428
+ none: "none";
1429
+ "tanstack-start": "tanstack-start";
1430
+ next: "next";
1431
+ angular: "angular";
1432
+ "native-uniwind": "native-uniwind";
1433
+ astro: "astro";
1434
+ }>>;
1435
+ addons: z.ZodArray<z.ZodEnum<{
1436
+ none: "none";
1437
+ pwa: "pwa";
1438
+ tauri: "tauri";
1439
+ electrobun: "electrobun";
1440
+ starlight: "starlight";
1441
+ biome: "biome";
1442
+ husky: "husky";
1443
+ mcp: "mcp";
1444
+ turborepo: "turborepo";
1445
+ fumadocs: "fumadocs";
1446
+ ultracite: "ultracite";
1447
+ opentui: "opentui";
1448
+ wxt: "wxt";
1449
+ skills: "skills";
1450
+ }>>;
1451
+ examples: z.ZodArray<z.ZodEnum<{
1452
+ none: "none";
1453
+ todo: "todo";
1454
+ ai: "ai";
1455
+ }>>;
1456
+ auth: z.ZodEnum<{
1457
+ none: "none";
1458
+ "better-auth": "better-auth";
1459
+ clerk: "clerk";
1460
+ }>;
1461
+ payments: z.ZodEnum<{
1462
+ none: "none";
1463
+ polar: "polar";
1464
+ }>;
1465
+ git: z.ZodBoolean;
1466
+ packageManager: z.ZodEnum<{
1467
+ bun: "bun";
1468
+ npm: "npm";
1469
+ pnpm: "pnpm";
1470
+ }>;
1471
+ install: z.ZodBoolean;
1472
+ api: z.ZodEnum<{
1473
+ none: "none";
1474
+ trpc: "trpc";
1475
+ orpc: "orpc";
1476
+ }>;
1477
+ webDeploy: z.ZodEnum<{
1478
+ none: "none";
1479
+ cloudflare: "cloudflare";
1480
+ }>;
1481
+ serverDeploy: z.ZodEnum<{
1482
+ none: "none";
1483
+ cloudflare: "cloudflare";
1484
+ }>;
1485
+ }, z.core.$strip>;
1486
+ reproducibleCommand: z.ZodString;
1487
+ timeScaffolded: z.ZodString;
1488
+ elapsedTimeMs: z.ZodNumber;
1489
+ projectDirectory: z.ZodString;
1490
+ relativePath: z.ZodString;
1491
+ error: z.ZodOptional<z.ZodString>;
1492
+ }, z.core.$strip>>;
1493
+ declare function getAllJsonSchemas(): {
1494
+ database: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1495
+ none: "none";
1496
+ sqlite: "sqlite";
1497
+ postgres: "postgres";
1498
+ mysql: "mysql";
1499
+ }>>;
1500
+ orm: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1501
+ none: "none";
1502
+ drizzle: "drizzle";
1503
+ prisma: "prisma";
1504
+ }>>;
1505
+ backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1506
+ none: "none";
1507
+ hono: "hono";
1508
+ express: "express";
1509
+ fastify: "fastify";
1510
+ nest: "nest";
1511
+ self: "self";
1512
+ }>>;
1513
+ runtime: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1514
+ none: "none";
1515
+ bun: "bun";
1516
+ node: "node";
1517
+ workers: "workers";
1518
+ }>>;
1519
+ frontend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1520
+ none: "none";
1521
+ "tanstack-start": "tanstack-start";
1522
+ next: "next";
1523
+ angular: "angular";
1524
+ "native-uniwind": "native-uniwind";
1525
+ astro: "astro";
1526
+ }>>;
1527
+ addons: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1528
+ none: "none";
1529
+ pwa: "pwa";
1530
+ tauri: "tauri";
1531
+ electrobun: "electrobun";
1532
+ starlight: "starlight";
1533
+ biome: "biome";
1534
+ husky: "husky";
1535
+ mcp: "mcp";
1536
+ turborepo: "turborepo";
1537
+ fumadocs: "fumadocs";
1538
+ ultracite: "ultracite";
1539
+ opentui: "opentui";
1540
+ wxt: "wxt";
1541
+ skills: "skills";
1542
+ }>>;
1543
+ examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1544
+ none: "none";
1545
+ todo: "todo";
1546
+ ai: "ai";
1547
+ }>>;
1548
+ packageManager: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1549
+ bun: "bun";
1550
+ npm: "npm";
1551
+ pnpm: "pnpm";
1552
+ }>>;
1553
+ api: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1554
+ none: "none";
1555
+ trpc: "trpc";
1556
+ orpc: "orpc";
1557
+ }>>;
1558
+ auth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1559
+ none: "none";
1560
+ "better-auth": "better-auth";
1561
+ clerk: "clerk";
1562
+ }>>;
1563
+ payments: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1564
+ none: "none";
1565
+ polar: "polar";
1566
+ }>>;
1567
+ webDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1568
+ none: "none";
1569
+ cloudflare: "cloudflare";
1570
+ }>>;
1571
+ serverDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1572
+ none: "none";
1573
+ cloudflare: "cloudflare";
1574
+ }>>;
1575
+ directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1576
+ merge: "merge";
1577
+ overwrite: "overwrite";
1578
+ increment: "increment";
1579
+ error: "error";
1580
+ }>>;
1581
+ template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1582
+ none: "none";
1583
+ t3: "t3";
1584
+ uniwind: "uniwind";
1585
+ }>>;
1586
+ addonOptions: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
1587
+ wxt: z.ZodOptional<z.ZodObject<{
1588
+ template: z.ZodEnum<{
1589
+ vanilla: "vanilla";
1590
+ vue: "vue";
1591
+ react: "react";
1592
+ }>;
1593
+ devPort: z.ZodOptional<z.ZodNumber>;
1594
+ }, z.core.$strict>>;
1595
+ fumadocs: z.ZodOptional<z.ZodObject<{
1596
+ template: z.ZodEnum<{
1597
+ "tanstack-start": "tanstack-start";
1598
+ "next-mdx": "next-mdx";
1599
+ "next-mdx-static": "next-mdx-static";
1600
+ waku: "waku";
1601
+ "tanstack-start-spa": "tanstack-start-spa";
1602
+ }>;
1603
+ devPort: z.ZodOptional<z.ZodNumber>;
1604
+ }, z.core.$strict>>;
1605
+ opentui: z.ZodOptional<z.ZodObject<{
1606
+ template: z.ZodEnum<{
1607
+ react: "react";
1608
+ core: "core";
1609
+ }>;
1610
+ }, z.core.$strict>>;
1611
+ mcp: z.ZodOptional<z.ZodObject<{
1612
+ scope: z.ZodOptional<z.ZodEnum<{
1613
+ project: "project";
1614
+ global: "global";
1615
+ }>>;
1616
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1617
+ "better-auth": "better-auth";
1618
+ clerk: "clerk";
1619
+ polar: "polar";
1620
+ "glitch-stack": "glitch-stack";
1621
+ context7: "context7";
1622
+ "cloudflare-docs": "cloudflare-docs";
1623
+ shadcn: "shadcn";
1624
+ "next-devtools": "next-devtools";
1625
+ "astro-docs": "astro-docs";
1626
+ planetscale: "planetscale";
1627
+ neon: "neon";
1628
+ supabase: "supabase";
1629
+ expo: "expo";
1630
+ }>>>;
1631
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1632
+ antigravity: "antigravity";
1633
+ cline: "cline";
1634
+ "cline-cli": "cline-cli";
1635
+ cursor: "cursor";
1636
+ "claude-code": "claude-code";
1637
+ codex: "codex";
1638
+ opencode: "opencode";
1639
+ "gemini-cli": "gemini-cli";
1640
+ "github-copilot-cli": "github-copilot-cli";
1641
+ mcporter: "mcporter";
1642
+ vscode: "vscode";
1643
+ zed: "zed";
1644
+ "claude-desktop": "claude-desktop";
1645
+ goose: "goose";
1646
+ }>>>;
1647
+ }, z.core.$strict>>;
1648
+ skills: z.ZodOptional<z.ZodObject<{
1649
+ scope: z.ZodOptional<z.ZodEnum<{
1650
+ project: "project";
1651
+ global: "global";
1652
+ }>>;
1653
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1654
+ antigravity: "antigravity";
1655
+ cline: "cline";
1656
+ cursor: "cursor";
1657
+ "claude-code": "claude-code";
1658
+ codex: "codex";
1659
+ opencode: "opencode";
1660
+ "gemini-cli": "gemini-cli";
1661
+ goose: "goose";
1662
+ "github-copilot": "github-copilot";
1663
+ windsurf: "windsurf";
1664
+ roo: "roo";
1665
+ kilo: "kilo";
1666
+ openhands: "openhands";
1667
+ trae: "trae";
1668
+ amp: "amp";
1669
+ pi: "pi";
1670
+ qoder: "qoder";
1671
+ "qwen-code": "qwen-code";
1672
+ "kiro-cli": "kiro-cli";
1673
+ droid: "droid";
1674
+ "command-code": "command-code";
1675
+ clawdbot: "clawdbot";
1676
+ zencoder: "zencoder";
1677
+ neovate: "neovate";
1678
+ mcpjam: "mcpjam";
1679
+ }>>>;
1680
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1681
+ source: z.ZodEnum<{
1682
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
1683
+ "vercel/ai": "vercel/ai";
1684
+ "vercel/turborepo": "vercel/turborepo";
1685
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
1686
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
1687
+ "heroui-inc/heroui": "heroui-inc/heroui";
1688
+ "shadcn/ui": "shadcn/ui";
1689
+ "better-auth/skills": "better-auth/skills";
1690
+ "clerk/skills": "clerk/skills";
1691
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
1692
+ "supabase/agent-skills": "supabase/agent-skills";
1693
+ "planetscale/database-skills": "planetscale/database-skills";
1694
+ "expo/skills": "expo/skills";
1695
+ "prisma/skills": "prisma/skills";
1696
+ "msmps/opentui-skill": "msmps/opentui-skill";
1697
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
1698
+ }>;
1699
+ skills: z.ZodArray<z.ZodString>;
1700
+ }, z.core.$strict>>>;
1701
+ }, z.core.$strict>>;
1702
+ ultracite: z.ZodOptional<z.ZodObject<{
1703
+ linter: z.ZodOptional<z.ZodEnum<{
1704
+ biome: "biome";
1705
+ eslint: "eslint";
1706
+ }>>;
1707
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1708
+ antigravity: "antigravity";
1709
+ cursor: "cursor";
1710
+ vscode: "vscode";
1711
+ zed: "zed";
1712
+ windsurf: "windsurf";
1713
+ trae: "trae";
1714
+ void: "void";
1715
+ kiro: "kiro";
1716
+ }>>>;
1717
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1718
+ cline: "cline";
1719
+ codex: "codex";
1720
+ opencode: "opencode";
1721
+ goose: "goose";
1722
+ amp: "amp";
1723
+ droid: "droid";
1724
+ claude: "claude";
1725
+ jules: "jules";
1726
+ copilot: "copilot";
1727
+ aider: "aider";
1728
+ "firebase-studio": "firebase-studio";
1729
+ "open-hands": "open-hands";
1730
+ gemini: "gemini";
1731
+ junie: "junie";
1732
+ augmentcode: "augmentcode";
1733
+ "kilo-code": "kilo-code";
1734
+ "roo-code": "roo-code";
1735
+ warp: "warp";
1736
+ crush: "crush";
1737
+ qwen: "qwen";
1738
+ "amazon-q-cli": "amazon-q-cli";
1739
+ firebender: "firebender";
1740
+ "cursor-cli": "cursor-cli";
1741
+ "mistral-vibe": "mistral-vibe";
1742
+ vercel: "vercel";
1743
+ }>>>;
1744
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1745
+ cursor: "cursor";
1746
+ windsurf: "windsurf";
1747
+ claude: "claude";
1748
+ }>>>;
1749
+ }, z.core.$strict>>;
1750
+ }, z.core.$strict>>;
1751
+ createInput: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
1752
+ projectName: z.ZodOptional<z.ZodString>;
1753
+ template: z.ZodOptional<z.ZodEnum<{
1754
+ none: "none";
1755
+ t3: "t3";
1756
+ uniwind: "uniwind";
1757
+ }>>;
1758
+ yes: z.ZodOptional<z.ZodBoolean>;
1759
+ yolo: z.ZodOptional<z.ZodBoolean>;
1760
+ dryRun: z.ZodOptional<z.ZodBoolean>;
1761
+ verbose: z.ZodOptional<z.ZodBoolean>;
1762
+ addonOptions: z.ZodOptional<z.ZodObject<{
1763
+ wxt: z.ZodOptional<z.ZodObject<{
1764
+ template: z.ZodEnum<{
1765
+ vanilla: "vanilla";
1766
+ vue: "vue";
1767
+ react: "react";
1768
+ }>;
1769
+ devPort: z.ZodOptional<z.ZodNumber>;
1770
+ }, z.core.$strict>>;
1771
+ fumadocs: z.ZodOptional<z.ZodObject<{
1772
+ template: z.ZodEnum<{
1773
+ "tanstack-start": "tanstack-start";
1774
+ "next-mdx": "next-mdx";
1775
+ "next-mdx-static": "next-mdx-static";
1776
+ waku: "waku";
1777
+ "tanstack-start-spa": "tanstack-start-spa";
1778
+ }>;
1779
+ devPort: z.ZodOptional<z.ZodNumber>;
1780
+ }, z.core.$strict>>;
1781
+ opentui: z.ZodOptional<z.ZodObject<{
1782
+ template: z.ZodEnum<{
1783
+ react: "react";
1784
+ core: "core";
1785
+ }>;
1786
+ }, z.core.$strict>>;
1787
+ mcp: z.ZodOptional<z.ZodObject<{
1788
+ scope: z.ZodOptional<z.ZodEnum<{
1789
+ project: "project";
1790
+ global: "global";
1791
+ }>>;
1792
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1793
+ "better-auth": "better-auth";
1794
+ clerk: "clerk";
1795
+ polar: "polar";
1796
+ "glitch-stack": "glitch-stack";
1797
+ context7: "context7";
1798
+ "cloudflare-docs": "cloudflare-docs";
1799
+ shadcn: "shadcn";
1800
+ "next-devtools": "next-devtools";
1801
+ "astro-docs": "astro-docs";
1802
+ planetscale: "planetscale";
1803
+ neon: "neon";
1804
+ supabase: "supabase";
1805
+ expo: "expo";
1806
+ }>>>;
1807
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1808
+ antigravity: "antigravity";
1809
+ cline: "cline";
1810
+ "cline-cli": "cline-cli";
1811
+ cursor: "cursor";
1812
+ "claude-code": "claude-code";
1813
+ codex: "codex";
1814
+ opencode: "opencode";
1815
+ "gemini-cli": "gemini-cli";
1816
+ "github-copilot-cli": "github-copilot-cli";
1817
+ mcporter: "mcporter";
1818
+ vscode: "vscode";
1819
+ zed: "zed";
1820
+ "claude-desktop": "claude-desktop";
1821
+ goose: "goose";
1822
+ }>>>;
1823
+ }, z.core.$strict>>;
1824
+ skills: z.ZodOptional<z.ZodObject<{
1825
+ scope: z.ZodOptional<z.ZodEnum<{
1826
+ project: "project";
1827
+ global: "global";
1828
+ }>>;
1829
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1830
+ antigravity: "antigravity";
1831
+ cline: "cline";
1832
+ cursor: "cursor";
1833
+ "claude-code": "claude-code";
1834
+ codex: "codex";
1835
+ opencode: "opencode";
1836
+ "gemini-cli": "gemini-cli";
1837
+ goose: "goose";
1838
+ "github-copilot": "github-copilot";
1839
+ windsurf: "windsurf";
1840
+ roo: "roo";
1841
+ kilo: "kilo";
1842
+ openhands: "openhands";
1843
+ trae: "trae";
1844
+ amp: "amp";
1845
+ pi: "pi";
1846
+ qoder: "qoder";
1847
+ "qwen-code": "qwen-code";
1848
+ "kiro-cli": "kiro-cli";
1849
+ droid: "droid";
1850
+ "command-code": "command-code";
1851
+ clawdbot: "clawdbot";
1852
+ zencoder: "zencoder";
1853
+ neovate: "neovate";
1854
+ mcpjam: "mcpjam";
1855
+ }>>>;
1856
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1857
+ source: z.ZodEnum<{
1858
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
1859
+ "vercel/ai": "vercel/ai";
1860
+ "vercel/turborepo": "vercel/turborepo";
1861
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
1862
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
1863
+ "heroui-inc/heroui": "heroui-inc/heroui";
1864
+ "shadcn/ui": "shadcn/ui";
1865
+ "better-auth/skills": "better-auth/skills";
1866
+ "clerk/skills": "clerk/skills";
1867
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
1868
+ "supabase/agent-skills": "supabase/agent-skills";
1869
+ "planetscale/database-skills": "planetscale/database-skills";
1870
+ "expo/skills": "expo/skills";
1871
+ "prisma/skills": "prisma/skills";
1872
+ "msmps/opentui-skill": "msmps/opentui-skill";
1873
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
1874
+ }>;
1875
+ skills: z.ZodArray<z.ZodString>;
1876
+ }, z.core.$strict>>>;
1877
+ }, z.core.$strict>>;
1878
+ ultracite: z.ZodOptional<z.ZodObject<{
1879
+ linter: z.ZodOptional<z.ZodEnum<{
1880
+ biome: "biome";
1881
+ eslint: "eslint";
1882
+ }>>;
1883
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1884
+ antigravity: "antigravity";
1885
+ cursor: "cursor";
1886
+ vscode: "vscode";
1887
+ zed: "zed";
1888
+ windsurf: "windsurf";
1889
+ trae: "trae";
1890
+ void: "void";
1891
+ kiro: "kiro";
1892
+ }>>>;
1893
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1894
+ cline: "cline";
1895
+ codex: "codex";
1896
+ opencode: "opencode";
1897
+ goose: "goose";
1898
+ amp: "amp";
1899
+ droid: "droid";
1900
+ claude: "claude";
1901
+ jules: "jules";
1902
+ copilot: "copilot";
1903
+ aider: "aider";
1904
+ "firebase-studio": "firebase-studio";
1905
+ "open-hands": "open-hands";
1906
+ gemini: "gemini";
1907
+ junie: "junie";
1908
+ augmentcode: "augmentcode";
1909
+ "kilo-code": "kilo-code";
1910
+ "roo-code": "roo-code";
1911
+ warp: "warp";
1912
+ crush: "crush";
1913
+ qwen: "qwen";
1914
+ "amazon-q-cli": "amazon-q-cli";
1915
+ firebender: "firebender";
1916
+ "cursor-cli": "cursor-cli";
1917
+ "mistral-vibe": "mistral-vibe";
1918
+ vercel: "vercel";
1919
+ }>>>;
1920
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1921
+ cursor: "cursor";
1922
+ windsurf: "windsurf";
1923
+ claude: "claude";
1924
+ }>>>;
1925
+ }, z.core.$strict>>;
1926
+ }, z.core.$strict>>;
1927
+ database: z.ZodOptional<z.ZodEnum<{
1928
+ none: "none";
1929
+ sqlite: "sqlite";
1930
+ postgres: "postgres";
1931
+ mysql: "mysql";
1932
+ }>>;
1933
+ orm: z.ZodOptional<z.ZodEnum<{
1934
+ none: "none";
1935
+ drizzle: "drizzle";
1936
+ prisma: "prisma";
1937
+ }>>;
1938
+ auth: z.ZodOptional<z.ZodEnum<{
1939
+ none: "none";
1940
+ "better-auth": "better-auth";
1941
+ clerk: "clerk";
1942
+ }>>;
1943
+ payments: z.ZodOptional<z.ZodEnum<{
1944
+ none: "none";
1945
+ polar: "polar";
1946
+ }>>;
1947
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1948
+ none: "none";
1949
+ "tanstack-start": "tanstack-start";
1950
+ next: "next";
1951
+ angular: "angular";
1952
+ "native-uniwind": "native-uniwind";
1953
+ astro: "astro";
1954
+ }>>>;
1955
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1956
+ none: "none";
1957
+ pwa: "pwa";
1958
+ tauri: "tauri";
1959
+ electrobun: "electrobun";
1960
+ starlight: "starlight";
1961
+ biome: "biome";
1962
+ husky: "husky";
1963
+ mcp: "mcp";
1964
+ turborepo: "turborepo";
1965
+ fumadocs: "fumadocs";
1966
+ ultracite: "ultracite";
1967
+ opentui: "opentui";
1968
+ wxt: "wxt";
1969
+ skills: "skills";
1970
+ }>>>;
1971
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1972
+ none: "none";
1973
+ todo: "todo";
1974
+ ai: "ai";
1975
+ }>>>;
1976
+ git: z.ZodOptional<z.ZodBoolean>;
1977
+ packageManager: z.ZodOptional<z.ZodEnum<{
1978
+ bun: "bun";
1979
+ npm: "npm";
1980
+ pnpm: "pnpm";
1981
+ }>>;
1982
+ install: z.ZodOptional<z.ZodBoolean>;
1983
+ backend: z.ZodOptional<z.ZodEnum<{
1984
+ none: "none";
1985
+ hono: "hono";
1986
+ express: "express";
1987
+ fastify: "fastify";
1988
+ nest: "nest";
1989
+ self: "self";
1990
+ }>>;
1991
+ runtime: z.ZodOptional<z.ZodEnum<{
1992
+ none: "none";
1993
+ bun: "bun";
1994
+ node: "node";
1995
+ workers: "workers";
1996
+ }>>;
1997
+ api: z.ZodOptional<z.ZodEnum<{
1998
+ none: "none";
1999
+ trpc: "trpc";
2000
+ orpc: "orpc";
2001
+ }>>;
2002
+ webDeploy: z.ZodOptional<z.ZodEnum<{
2003
+ none: "none";
2004
+ cloudflare: "cloudflare";
2005
+ }>>;
2006
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
2007
+ none: "none";
2008
+ cloudflare: "cloudflare";
2009
+ }>>;
2010
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
2011
+ merge: "merge";
2012
+ overwrite: "overwrite";
2013
+ increment: "increment";
2014
+ error: "error";
2015
+ }>>;
2016
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
2017
+ }, z.core.$strict>>;
2018
+ addInput: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
2019
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2020
+ none: "none";
2021
+ pwa: "pwa";
2022
+ tauri: "tauri";
2023
+ electrobun: "electrobun";
2024
+ starlight: "starlight";
2025
+ biome: "biome";
2026
+ husky: "husky";
2027
+ mcp: "mcp";
2028
+ turborepo: "turborepo";
2029
+ fumadocs: "fumadocs";
2030
+ ultracite: "ultracite";
2031
+ opentui: "opentui";
2032
+ wxt: "wxt";
2033
+ skills: "skills";
2034
+ }>>>;
2035
+ addonOptions: z.ZodOptional<z.ZodObject<{
2036
+ wxt: z.ZodOptional<z.ZodObject<{
2037
+ template: z.ZodEnum<{
2038
+ vanilla: "vanilla";
2039
+ vue: "vue";
2040
+ react: "react";
2041
+ }>;
2042
+ devPort: z.ZodOptional<z.ZodNumber>;
2043
+ }, z.core.$strict>>;
2044
+ fumadocs: z.ZodOptional<z.ZodObject<{
2045
+ template: z.ZodEnum<{
2046
+ "tanstack-start": "tanstack-start";
2047
+ "next-mdx": "next-mdx";
2048
+ "next-mdx-static": "next-mdx-static";
2049
+ waku: "waku";
2050
+ "tanstack-start-spa": "tanstack-start-spa";
2051
+ }>;
2052
+ devPort: z.ZodOptional<z.ZodNumber>;
2053
+ }, z.core.$strict>>;
2054
+ opentui: z.ZodOptional<z.ZodObject<{
2055
+ template: z.ZodEnum<{
2056
+ react: "react";
2057
+ core: "core";
2058
+ }>;
2059
+ }, z.core.$strict>>;
2060
+ mcp: z.ZodOptional<z.ZodObject<{
2061
+ scope: z.ZodOptional<z.ZodEnum<{
2062
+ project: "project";
2063
+ global: "global";
2064
+ }>>;
2065
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2066
+ "better-auth": "better-auth";
2067
+ clerk: "clerk";
2068
+ polar: "polar";
2069
+ "glitch-stack": "glitch-stack";
2070
+ context7: "context7";
2071
+ "cloudflare-docs": "cloudflare-docs";
2072
+ shadcn: "shadcn";
2073
+ "next-devtools": "next-devtools";
2074
+ "astro-docs": "astro-docs";
2075
+ planetscale: "planetscale";
2076
+ neon: "neon";
2077
+ supabase: "supabase";
2078
+ expo: "expo";
2079
+ }>>>;
2080
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2081
+ antigravity: "antigravity";
2082
+ cline: "cline";
2083
+ "cline-cli": "cline-cli";
2084
+ cursor: "cursor";
2085
+ "claude-code": "claude-code";
2086
+ codex: "codex";
2087
+ opencode: "opencode";
2088
+ "gemini-cli": "gemini-cli";
2089
+ "github-copilot-cli": "github-copilot-cli";
2090
+ mcporter: "mcporter";
2091
+ vscode: "vscode";
2092
+ zed: "zed";
2093
+ "claude-desktop": "claude-desktop";
2094
+ goose: "goose";
2095
+ }>>>;
2096
+ }, z.core.$strict>>;
2097
+ skills: z.ZodOptional<z.ZodObject<{
2098
+ scope: z.ZodOptional<z.ZodEnum<{
2099
+ project: "project";
2100
+ global: "global";
2101
+ }>>;
2102
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2103
+ antigravity: "antigravity";
2104
+ cline: "cline";
2105
+ cursor: "cursor";
2106
+ "claude-code": "claude-code";
2107
+ codex: "codex";
2108
+ opencode: "opencode";
2109
+ "gemini-cli": "gemini-cli";
2110
+ goose: "goose";
2111
+ "github-copilot": "github-copilot";
2112
+ windsurf: "windsurf";
2113
+ roo: "roo";
2114
+ kilo: "kilo";
2115
+ openhands: "openhands";
2116
+ trae: "trae";
2117
+ amp: "amp";
2118
+ pi: "pi";
2119
+ qoder: "qoder";
2120
+ "qwen-code": "qwen-code";
2121
+ "kiro-cli": "kiro-cli";
2122
+ droid: "droid";
2123
+ "command-code": "command-code";
2124
+ clawdbot: "clawdbot";
2125
+ zencoder: "zencoder";
2126
+ neovate: "neovate";
2127
+ mcpjam: "mcpjam";
2128
+ }>>>;
2129
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
2130
+ source: z.ZodEnum<{
2131
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
2132
+ "vercel/ai": "vercel/ai";
2133
+ "vercel/turborepo": "vercel/turborepo";
2134
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
2135
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
2136
+ "heroui-inc/heroui": "heroui-inc/heroui";
2137
+ "shadcn/ui": "shadcn/ui";
2138
+ "better-auth/skills": "better-auth/skills";
2139
+ "clerk/skills": "clerk/skills";
2140
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
2141
+ "supabase/agent-skills": "supabase/agent-skills";
2142
+ "planetscale/database-skills": "planetscale/database-skills";
2143
+ "expo/skills": "expo/skills";
2144
+ "prisma/skills": "prisma/skills";
2145
+ "msmps/opentui-skill": "msmps/opentui-skill";
2146
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
2147
+ }>;
2148
+ skills: z.ZodArray<z.ZodString>;
2149
+ }, z.core.$strict>>>;
2150
+ }, z.core.$strict>>;
2151
+ ultracite: z.ZodOptional<z.ZodObject<{
2152
+ linter: z.ZodOptional<z.ZodEnum<{
2153
+ biome: "biome";
2154
+ eslint: "eslint";
2155
+ }>>;
2156
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2157
+ antigravity: "antigravity";
2158
+ cursor: "cursor";
2159
+ vscode: "vscode";
2160
+ zed: "zed";
2161
+ windsurf: "windsurf";
2162
+ trae: "trae";
2163
+ void: "void";
2164
+ kiro: "kiro";
2165
+ }>>>;
2166
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2167
+ cline: "cline";
2168
+ codex: "codex";
2169
+ opencode: "opencode";
2170
+ goose: "goose";
2171
+ amp: "amp";
2172
+ droid: "droid";
2173
+ claude: "claude";
2174
+ jules: "jules";
2175
+ copilot: "copilot";
2176
+ aider: "aider";
2177
+ "firebase-studio": "firebase-studio";
2178
+ "open-hands": "open-hands";
2179
+ gemini: "gemini";
2180
+ junie: "junie";
2181
+ augmentcode: "augmentcode";
2182
+ "kilo-code": "kilo-code";
2183
+ "roo-code": "roo-code";
2184
+ warp: "warp";
2185
+ crush: "crush";
2186
+ qwen: "qwen";
2187
+ "amazon-q-cli": "amazon-q-cli";
2188
+ firebender: "firebender";
2189
+ "cursor-cli": "cursor-cli";
2190
+ "mistral-vibe": "mistral-vibe";
2191
+ vercel: "vercel";
2192
+ }>>>;
2193
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2194
+ cursor: "cursor";
2195
+ windsurf: "windsurf";
2196
+ claude: "claude";
2197
+ }>>>;
2198
+ }, z.core.$strict>>;
2199
+ }, z.core.$strict>>;
2200
+ webDeploy: z.ZodOptional<z.ZodEnum<{
2201
+ none: "none";
2202
+ cloudflare: "cloudflare";
2203
+ }>>;
2204
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
2205
+ none: "none";
2206
+ cloudflare: "cloudflare";
2207
+ }>>;
2208
+ projectDir: z.ZodOptional<z.ZodString>;
2209
+ install: z.ZodOptional<z.ZodBoolean>;
2210
+ packageManager: z.ZodOptional<z.ZodEnum<{
2211
+ bun: "bun";
2212
+ npm: "npm";
2213
+ pnpm: "pnpm";
2214
+ }>>;
2215
+ dryRun: z.ZodOptional<z.ZodBoolean>;
2216
+ }, z.core.$strict>>;
2217
+ projectConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
2218
+ projectName: z.ZodString;
2219
+ projectDir: z.ZodString;
2220
+ relativePath: z.ZodString;
2221
+ addonOptions: z.ZodOptional<z.ZodObject<{
2222
+ wxt: z.ZodOptional<z.ZodObject<{
2223
+ template: z.ZodEnum<{
2224
+ vanilla: "vanilla";
2225
+ vue: "vue";
2226
+ react: "react";
2227
+ }>;
2228
+ devPort: z.ZodOptional<z.ZodNumber>;
2229
+ }, z.core.$strict>>;
2230
+ fumadocs: z.ZodOptional<z.ZodObject<{
2231
+ template: z.ZodEnum<{
2232
+ "tanstack-start": "tanstack-start";
2233
+ "next-mdx": "next-mdx";
2234
+ "next-mdx-static": "next-mdx-static";
2235
+ waku: "waku";
2236
+ "tanstack-start-spa": "tanstack-start-spa";
2237
+ }>;
2238
+ devPort: z.ZodOptional<z.ZodNumber>;
2239
+ }, z.core.$strict>>;
2240
+ opentui: z.ZodOptional<z.ZodObject<{
2241
+ template: z.ZodEnum<{
2242
+ react: "react";
2243
+ core: "core";
2244
+ }>;
2245
+ }, z.core.$strict>>;
2246
+ mcp: z.ZodOptional<z.ZodObject<{
2247
+ scope: z.ZodOptional<z.ZodEnum<{
2248
+ project: "project";
2249
+ global: "global";
2250
+ }>>;
2251
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2252
+ "better-auth": "better-auth";
2253
+ clerk: "clerk";
2254
+ polar: "polar";
2255
+ "glitch-stack": "glitch-stack";
2256
+ context7: "context7";
2257
+ "cloudflare-docs": "cloudflare-docs";
2258
+ shadcn: "shadcn";
2259
+ "next-devtools": "next-devtools";
2260
+ "astro-docs": "astro-docs";
2261
+ planetscale: "planetscale";
2262
+ neon: "neon";
2263
+ supabase: "supabase";
2264
+ expo: "expo";
2265
+ }>>>;
2266
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2267
+ antigravity: "antigravity";
2268
+ cline: "cline";
2269
+ "cline-cli": "cline-cli";
2270
+ cursor: "cursor";
2271
+ "claude-code": "claude-code";
2272
+ codex: "codex";
2273
+ opencode: "opencode";
2274
+ "gemini-cli": "gemini-cli";
2275
+ "github-copilot-cli": "github-copilot-cli";
2276
+ mcporter: "mcporter";
2277
+ vscode: "vscode";
2278
+ zed: "zed";
2279
+ "claude-desktop": "claude-desktop";
2280
+ goose: "goose";
2281
+ }>>>;
2282
+ }, z.core.$strict>>;
2283
+ skills: z.ZodOptional<z.ZodObject<{
2284
+ scope: z.ZodOptional<z.ZodEnum<{
2285
+ project: "project";
2286
+ global: "global";
2287
+ }>>;
2288
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2289
+ antigravity: "antigravity";
2290
+ cline: "cline";
2291
+ cursor: "cursor";
2292
+ "claude-code": "claude-code";
2293
+ codex: "codex";
2294
+ opencode: "opencode";
2295
+ "gemini-cli": "gemini-cli";
2296
+ goose: "goose";
2297
+ "github-copilot": "github-copilot";
2298
+ windsurf: "windsurf";
2299
+ roo: "roo";
2300
+ kilo: "kilo";
2301
+ openhands: "openhands";
2302
+ trae: "trae";
2303
+ amp: "amp";
2304
+ pi: "pi";
2305
+ qoder: "qoder";
2306
+ "qwen-code": "qwen-code";
2307
+ "kiro-cli": "kiro-cli";
2308
+ droid: "droid";
2309
+ "command-code": "command-code";
2310
+ clawdbot: "clawdbot";
2311
+ zencoder: "zencoder";
2312
+ neovate: "neovate";
2313
+ mcpjam: "mcpjam";
2314
+ }>>>;
2315
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
2316
+ source: z.ZodEnum<{
2317
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
2318
+ "vercel/ai": "vercel/ai";
2319
+ "vercel/turborepo": "vercel/turborepo";
2320
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
2321
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
2322
+ "heroui-inc/heroui": "heroui-inc/heroui";
2323
+ "shadcn/ui": "shadcn/ui";
2324
+ "better-auth/skills": "better-auth/skills";
2325
+ "clerk/skills": "clerk/skills";
2326
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
2327
+ "supabase/agent-skills": "supabase/agent-skills";
2328
+ "planetscale/database-skills": "planetscale/database-skills";
2329
+ "expo/skills": "expo/skills";
2330
+ "prisma/skills": "prisma/skills";
2331
+ "msmps/opentui-skill": "msmps/opentui-skill";
2332
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
2333
+ }>;
2334
+ skills: z.ZodArray<z.ZodString>;
2335
+ }, z.core.$strict>>>;
2336
+ }, z.core.$strict>>;
2337
+ ultracite: z.ZodOptional<z.ZodObject<{
2338
+ linter: z.ZodOptional<z.ZodEnum<{
2339
+ biome: "biome";
2340
+ eslint: "eslint";
2341
+ }>>;
2342
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2343
+ antigravity: "antigravity";
2344
+ cursor: "cursor";
2345
+ vscode: "vscode";
2346
+ zed: "zed";
2347
+ windsurf: "windsurf";
2348
+ trae: "trae";
2349
+ void: "void";
2350
+ kiro: "kiro";
2351
+ }>>>;
2352
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2353
+ cline: "cline";
2354
+ codex: "codex";
2355
+ opencode: "opencode";
2356
+ goose: "goose";
2357
+ amp: "amp";
2358
+ droid: "droid";
2359
+ claude: "claude";
2360
+ jules: "jules";
2361
+ copilot: "copilot";
2362
+ aider: "aider";
2363
+ "firebase-studio": "firebase-studio";
2364
+ "open-hands": "open-hands";
2365
+ gemini: "gemini";
2366
+ junie: "junie";
2367
+ augmentcode: "augmentcode";
2368
+ "kilo-code": "kilo-code";
2369
+ "roo-code": "roo-code";
2370
+ warp: "warp";
2371
+ crush: "crush";
2372
+ qwen: "qwen";
2373
+ "amazon-q-cli": "amazon-q-cli";
2374
+ firebender: "firebender";
2375
+ "cursor-cli": "cursor-cli";
2376
+ "mistral-vibe": "mistral-vibe";
2377
+ vercel: "vercel";
2378
+ }>>>;
2379
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2380
+ cursor: "cursor";
2381
+ windsurf: "windsurf";
2382
+ claude: "claude";
2383
+ }>>>;
2384
+ }, z.core.$strict>>;
2385
+ }, z.core.$strict>>;
2386
+ database: z.ZodEnum<{
2387
+ none: "none";
2388
+ sqlite: "sqlite";
2389
+ postgres: "postgres";
2390
+ mysql: "mysql";
2391
+ }>;
2392
+ orm: z.ZodEnum<{
2393
+ none: "none";
2394
+ drizzle: "drizzle";
2395
+ prisma: "prisma";
2396
+ }>;
2397
+ backend: z.ZodEnum<{
2398
+ none: "none";
2399
+ hono: "hono";
2400
+ express: "express";
2401
+ fastify: "fastify";
2402
+ nest: "nest";
2403
+ self: "self";
2404
+ }>;
2405
+ runtime: z.ZodEnum<{
2406
+ none: "none";
2407
+ bun: "bun";
2408
+ node: "node";
2409
+ workers: "workers";
2410
+ }>;
2411
+ frontend: z.ZodArray<z.ZodEnum<{
2412
+ none: "none";
2413
+ "tanstack-start": "tanstack-start";
2414
+ next: "next";
2415
+ angular: "angular";
2416
+ "native-uniwind": "native-uniwind";
2417
+ astro: "astro";
2418
+ }>>;
2419
+ addons: z.ZodArray<z.ZodEnum<{
2420
+ none: "none";
2421
+ pwa: "pwa";
2422
+ tauri: "tauri";
2423
+ electrobun: "electrobun";
2424
+ starlight: "starlight";
2425
+ biome: "biome";
2426
+ husky: "husky";
2427
+ mcp: "mcp";
2428
+ turborepo: "turborepo";
2429
+ fumadocs: "fumadocs";
2430
+ ultracite: "ultracite";
2431
+ opentui: "opentui";
2432
+ wxt: "wxt";
2433
+ skills: "skills";
2434
+ }>>;
2435
+ examples: z.ZodArray<z.ZodEnum<{
2436
+ none: "none";
2437
+ todo: "todo";
2438
+ ai: "ai";
2439
+ }>>;
2440
+ auth: z.ZodEnum<{
2441
+ none: "none";
2442
+ "better-auth": "better-auth";
2443
+ clerk: "clerk";
2444
+ }>;
2445
+ payments: z.ZodEnum<{
2446
+ none: "none";
2447
+ polar: "polar";
2448
+ }>;
2449
+ git: z.ZodBoolean;
2450
+ packageManager: z.ZodEnum<{
2451
+ bun: "bun";
2452
+ npm: "npm";
2453
+ pnpm: "pnpm";
2454
+ }>;
2455
+ install: z.ZodBoolean;
2456
+ api: z.ZodEnum<{
2457
+ none: "none";
2458
+ trpc: "trpc";
2459
+ orpc: "orpc";
2460
+ }>;
2461
+ webDeploy: z.ZodEnum<{
2462
+ none: "none";
2463
+ cloudflare: "cloudflare";
2464
+ }>;
2465
+ serverDeploy: z.ZodEnum<{
2466
+ none: "none";
2467
+ cloudflare: "cloudflare";
2468
+ }>;
2469
+ }, z.core.$strip>>;
2470
+ glitchStackConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
2471
+ version: z.ZodString;
2472
+ createdAt: z.ZodString;
2473
+ reproducibleCommand: z.ZodOptional<z.ZodString>;
2474
+ addonOptions: z.ZodOptional<z.ZodObject<{
2475
+ wxt: z.ZodOptional<z.ZodObject<{
2476
+ template: z.ZodEnum<{
2477
+ vanilla: "vanilla";
2478
+ vue: "vue";
2479
+ react: "react";
2480
+ }>;
2481
+ devPort: z.ZodOptional<z.ZodNumber>;
2482
+ }, z.core.$strict>>;
2483
+ fumadocs: z.ZodOptional<z.ZodObject<{
2484
+ template: z.ZodEnum<{
2485
+ "tanstack-start": "tanstack-start";
2486
+ "next-mdx": "next-mdx";
2487
+ "next-mdx-static": "next-mdx-static";
2488
+ waku: "waku";
2489
+ "tanstack-start-spa": "tanstack-start-spa";
2490
+ }>;
2491
+ devPort: z.ZodOptional<z.ZodNumber>;
2492
+ }, z.core.$strict>>;
2493
+ opentui: z.ZodOptional<z.ZodObject<{
2494
+ template: z.ZodEnum<{
2495
+ react: "react";
2496
+ core: "core";
2497
+ }>;
2498
+ }, z.core.$strict>>;
2499
+ mcp: z.ZodOptional<z.ZodObject<{
2500
+ scope: z.ZodOptional<z.ZodEnum<{
2501
+ project: "project";
2502
+ global: "global";
2503
+ }>>;
2504
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2505
+ "better-auth": "better-auth";
2506
+ clerk: "clerk";
2507
+ polar: "polar";
2508
+ "glitch-stack": "glitch-stack";
2509
+ context7: "context7";
2510
+ "cloudflare-docs": "cloudflare-docs";
2511
+ shadcn: "shadcn";
2512
+ "next-devtools": "next-devtools";
2513
+ "astro-docs": "astro-docs";
2514
+ planetscale: "planetscale";
2515
+ neon: "neon";
2516
+ supabase: "supabase";
2517
+ expo: "expo";
2518
+ }>>>;
2519
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2520
+ antigravity: "antigravity";
2521
+ cline: "cline";
2522
+ "cline-cli": "cline-cli";
2523
+ cursor: "cursor";
2524
+ "claude-code": "claude-code";
2525
+ codex: "codex";
2526
+ opencode: "opencode";
2527
+ "gemini-cli": "gemini-cli";
2528
+ "github-copilot-cli": "github-copilot-cli";
2529
+ mcporter: "mcporter";
2530
+ vscode: "vscode";
2531
+ zed: "zed";
2532
+ "claude-desktop": "claude-desktop";
2533
+ goose: "goose";
2534
+ }>>>;
2535
+ }, z.core.$strict>>;
2536
+ skills: z.ZodOptional<z.ZodObject<{
2537
+ scope: z.ZodOptional<z.ZodEnum<{
2538
+ project: "project";
2539
+ global: "global";
2540
+ }>>;
2541
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2542
+ antigravity: "antigravity";
2543
+ cline: "cline";
2544
+ cursor: "cursor";
2545
+ "claude-code": "claude-code";
2546
+ codex: "codex";
2547
+ opencode: "opencode";
2548
+ "gemini-cli": "gemini-cli";
2549
+ goose: "goose";
2550
+ "github-copilot": "github-copilot";
2551
+ windsurf: "windsurf";
2552
+ roo: "roo";
2553
+ kilo: "kilo";
2554
+ openhands: "openhands";
2555
+ trae: "trae";
2556
+ amp: "amp";
2557
+ pi: "pi";
2558
+ qoder: "qoder";
2559
+ "qwen-code": "qwen-code";
2560
+ "kiro-cli": "kiro-cli";
2561
+ droid: "droid";
2562
+ "command-code": "command-code";
2563
+ clawdbot: "clawdbot";
2564
+ zencoder: "zencoder";
2565
+ neovate: "neovate";
2566
+ mcpjam: "mcpjam";
2567
+ }>>>;
2568
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
2569
+ source: z.ZodEnum<{
2570
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
2571
+ "vercel/ai": "vercel/ai";
2572
+ "vercel/turborepo": "vercel/turborepo";
2573
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
2574
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
2575
+ "heroui-inc/heroui": "heroui-inc/heroui";
2576
+ "shadcn/ui": "shadcn/ui";
2577
+ "better-auth/skills": "better-auth/skills";
2578
+ "clerk/skills": "clerk/skills";
2579
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
2580
+ "supabase/agent-skills": "supabase/agent-skills";
2581
+ "planetscale/database-skills": "planetscale/database-skills";
2582
+ "expo/skills": "expo/skills";
2583
+ "prisma/skills": "prisma/skills";
2584
+ "msmps/opentui-skill": "msmps/opentui-skill";
2585
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
2586
+ }>;
2587
+ skills: z.ZodArray<z.ZodString>;
2588
+ }, z.core.$strict>>>;
2589
+ }, z.core.$strict>>;
2590
+ ultracite: z.ZodOptional<z.ZodObject<{
2591
+ linter: z.ZodOptional<z.ZodEnum<{
2592
+ biome: "biome";
2593
+ eslint: "eslint";
2594
+ }>>;
2595
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2596
+ antigravity: "antigravity";
2597
+ cursor: "cursor";
2598
+ vscode: "vscode";
2599
+ zed: "zed";
2600
+ windsurf: "windsurf";
2601
+ trae: "trae";
2602
+ void: "void";
2603
+ kiro: "kiro";
2604
+ }>>>;
2605
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2606
+ cline: "cline";
2607
+ codex: "codex";
2608
+ opencode: "opencode";
2609
+ goose: "goose";
2610
+ amp: "amp";
2611
+ droid: "droid";
2612
+ claude: "claude";
2613
+ jules: "jules";
2614
+ copilot: "copilot";
2615
+ aider: "aider";
2616
+ "firebase-studio": "firebase-studio";
2617
+ "open-hands": "open-hands";
2618
+ gemini: "gemini";
2619
+ junie: "junie";
2620
+ augmentcode: "augmentcode";
2621
+ "kilo-code": "kilo-code";
2622
+ "roo-code": "roo-code";
2623
+ warp: "warp";
2624
+ crush: "crush";
2625
+ qwen: "qwen";
2626
+ "amazon-q-cli": "amazon-q-cli";
2627
+ firebender: "firebender";
2628
+ "cursor-cli": "cursor-cli";
2629
+ "mistral-vibe": "mistral-vibe";
2630
+ vercel: "vercel";
2631
+ }>>>;
2632
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2633
+ cursor: "cursor";
2634
+ windsurf: "windsurf";
2635
+ claude: "claude";
2636
+ }>>>;
2637
+ }, z.core.$strict>>;
2638
+ }, z.core.$strict>>;
2639
+ database: z.ZodEnum<{
2640
+ none: "none";
2641
+ sqlite: "sqlite";
2642
+ postgres: "postgres";
2643
+ mysql: "mysql";
2644
+ }>;
2645
+ orm: z.ZodEnum<{
2646
+ none: "none";
2647
+ drizzle: "drizzle";
2648
+ prisma: "prisma";
2649
+ }>;
2650
+ backend: z.ZodEnum<{
2651
+ none: "none";
2652
+ hono: "hono";
2653
+ express: "express";
2654
+ fastify: "fastify";
2655
+ nest: "nest";
2656
+ self: "self";
2657
+ }>;
2658
+ runtime: z.ZodEnum<{
2659
+ none: "none";
2660
+ bun: "bun";
2661
+ node: "node";
2662
+ workers: "workers";
2663
+ }>;
2664
+ frontend: z.ZodArray<z.ZodEnum<{
2665
+ none: "none";
2666
+ "tanstack-start": "tanstack-start";
2667
+ next: "next";
2668
+ angular: "angular";
2669
+ "native-uniwind": "native-uniwind";
2670
+ astro: "astro";
2671
+ }>>;
2672
+ addons: z.ZodArray<z.ZodEnum<{
2673
+ none: "none";
2674
+ pwa: "pwa";
2675
+ tauri: "tauri";
2676
+ electrobun: "electrobun";
2677
+ starlight: "starlight";
2678
+ biome: "biome";
2679
+ husky: "husky";
2680
+ mcp: "mcp";
2681
+ turborepo: "turborepo";
2682
+ fumadocs: "fumadocs";
2683
+ ultracite: "ultracite";
2684
+ opentui: "opentui";
2685
+ wxt: "wxt";
2686
+ skills: "skills";
2687
+ }>>;
2688
+ examples: z.ZodArray<z.ZodEnum<{
2689
+ none: "none";
2690
+ todo: "todo";
2691
+ ai: "ai";
2692
+ }>>;
2693
+ auth: z.ZodEnum<{
2694
+ none: "none";
2695
+ "better-auth": "better-auth";
2696
+ clerk: "clerk";
2697
+ }>;
2698
+ payments: z.ZodEnum<{
2699
+ none: "none";
2700
+ polar: "polar";
2701
+ }>;
2702
+ packageManager: z.ZodEnum<{
2703
+ bun: "bun";
2704
+ npm: "npm";
2705
+ pnpm: "pnpm";
2706
+ }>;
2707
+ api: z.ZodEnum<{
2708
+ none: "none";
2709
+ trpc: "trpc";
2710
+ orpc: "orpc";
2711
+ }>;
2712
+ webDeploy: z.ZodEnum<{
2713
+ none: "none";
2714
+ cloudflare: "cloudflare";
2715
+ }>;
2716
+ serverDeploy: z.ZodEnum<{
2717
+ none: "none";
2718
+ cloudflare: "cloudflare";
2719
+ }>;
2720
+ }, z.core.$strip>>;
2721
+ initResult: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
2722
+ success: z.ZodBoolean;
2723
+ projectConfig: z.ZodObject<{
2724
+ projectName: z.ZodString;
2725
+ projectDir: z.ZodString;
2726
+ relativePath: z.ZodString;
2727
+ addonOptions: z.ZodOptional<z.ZodObject<{
2728
+ wxt: z.ZodOptional<z.ZodObject<{
2729
+ template: z.ZodEnum<{
2730
+ vanilla: "vanilla";
2731
+ vue: "vue";
2732
+ react: "react";
2733
+ }>;
2734
+ devPort: z.ZodOptional<z.ZodNumber>;
2735
+ }, z.core.$strict>>;
2736
+ fumadocs: z.ZodOptional<z.ZodObject<{
2737
+ template: z.ZodEnum<{
2738
+ "tanstack-start": "tanstack-start";
2739
+ "next-mdx": "next-mdx";
2740
+ "next-mdx-static": "next-mdx-static";
2741
+ waku: "waku";
2742
+ "tanstack-start-spa": "tanstack-start-spa";
2743
+ }>;
2744
+ devPort: z.ZodOptional<z.ZodNumber>;
2745
+ }, z.core.$strict>>;
2746
+ opentui: z.ZodOptional<z.ZodObject<{
2747
+ template: z.ZodEnum<{
2748
+ react: "react";
2749
+ core: "core";
2750
+ }>;
2751
+ }, z.core.$strict>>;
2752
+ mcp: z.ZodOptional<z.ZodObject<{
2753
+ scope: z.ZodOptional<z.ZodEnum<{
2754
+ project: "project";
2755
+ global: "global";
2756
+ }>>;
2757
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2758
+ "better-auth": "better-auth";
2759
+ clerk: "clerk";
2760
+ polar: "polar";
2761
+ "glitch-stack": "glitch-stack";
2762
+ context7: "context7";
2763
+ "cloudflare-docs": "cloudflare-docs";
2764
+ shadcn: "shadcn";
2765
+ "next-devtools": "next-devtools";
2766
+ "astro-docs": "astro-docs";
2767
+ planetscale: "planetscale";
2768
+ neon: "neon";
2769
+ supabase: "supabase";
2770
+ expo: "expo";
2771
+ }>>>;
2772
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2773
+ antigravity: "antigravity";
2774
+ cline: "cline";
2775
+ "cline-cli": "cline-cli";
2776
+ cursor: "cursor";
2777
+ "claude-code": "claude-code";
2778
+ codex: "codex";
2779
+ opencode: "opencode";
2780
+ "gemini-cli": "gemini-cli";
2781
+ "github-copilot-cli": "github-copilot-cli";
2782
+ mcporter: "mcporter";
2783
+ vscode: "vscode";
2784
+ zed: "zed";
2785
+ "claude-desktop": "claude-desktop";
2786
+ goose: "goose";
2787
+ }>>>;
2788
+ }, z.core.$strict>>;
2789
+ skills: z.ZodOptional<z.ZodObject<{
2790
+ scope: z.ZodOptional<z.ZodEnum<{
2791
+ project: "project";
2792
+ global: "global";
2793
+ }>>;
2794
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2795
+ antigravity: "antigravity";
2796
+ cline: "cline";
2797
+ cursor: "cursor";
2798
+ "claude-code": "claude-code";
2799
+ codex: "codex";
2800
+ opencode: "opencode";
2801
+ "gemini-cli": "gemini-cli";
2802
+ goose: "goose";
2803
+ "github-copilot": "github-copilot";
2804
+ windsurf: "windsurf";
2805
+ roo: "roo";
2806
+ kilo: "kilo";
2807
+ openhands: "openhands";
2808
+ trae: "trae";
2809
+ amp: "amp";
2810
+ pi: "pi";
2811
+ qoder: "qoder";
2812
+ "qwen-code": "qwen-code";
2813
+ "kiro-cli": "kiro-cli";
2814
+ droid: "droid";
2815
+ "command-code": "command-code";
2816
+ clawdbot: "clawdbot";
2817
+ zencoder: "zencoder";
2818
+ neovate: "neovate";
2819
+ mcpjam: "mcpjam";
2820
+ }>>>;
2821
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
2822
+ source: z.ZodEnum<{
2823
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
2824
+ "vercel/ai": "vercel/ai";
2825
+ "vercel/turborepo": "vercel/turborepo";
2826
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
2827
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
2828
+ "heroui-inc/heroui": "heroui-inc/heroui";
2829
+ "shadcn/ui": "shadcn/ui";
2830
+ "better-auth/skills": "better-auth/skills";
2831
+ "clerk/skills": "clerk/skills";
2832
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
2833
+ "supabase/agent-skills": "supabase/agent-skills";
2834
+ "planetscale/database-skills": "planetscale/database-skills";
2835
+ "expo/skills": "expo/skills";
2836
+ "prisma/skills": "prisma/skills";
2837
+ "msmps/opentui-skill": "msmps/opentui-skill";
2838
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
2839
+ }>;
2840
+ skills: z.ZodArray<z.ZodString>;
2841
+ }, z.core.$strict>>>;
2842
+ }, z.core.$strict>>;
2843
+ ultracite: z.ZodOptional<z.ZodObject<{
2844
+ linter: z.ZodOptional<z.ZodEnum<{
2845
+ biome: "biome";
2846
+ eslint: "eslint";
2847
+ }>>;
2848
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2849
+ antigravity: "antigravity";
2850
+ cursor: "cursor";
2851
+ vscode: "vscode";
2852
+ zed: "zed";
2853
+ windsurf: "windsurf";
2854
+ trae: "trae";
2855
+ void: "void";
2856
+ kiro: "kiro";
2857
+ }>>>;
2858
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2859
+ cline: "cline";
2860
+ codex: "codex";
2861
+ opencode: "opencode";
2862
+ goose: "goose";
2863
+ amp: "amp";
2864
+ droid: "droid";
2865
+ claude: "claude";
2866
+ jules: "jules";
2867
+ copilot: "copilot";
2868
+ aider: "aider";
2869
+ "firebase-studio": "firebase-studio";
2870
+ "open-hands": "open-hands";
2871
+ gemini: "gemini";
2872
+ junie: "junie";
2873
+ augmentcode: "augmentcode";
2874
+ "kilo-code": "kilo-code";
2875
+ "roo-code": "roo-code";
2876
+ warp: "warp";
2877
+ crush: "crush";
2878
+ qwen: "qwen";
2879
+ "amazon-q-cli": "amazon-q-cli";
2880
+ firebender: "firebender";
2881
+ "cursor-cli": "cursor-cli";
2882
+ "mistral-vibe": "mistral-vibe";
2883
+ vercel: "vercel";
2884
+ }>>>;
2885
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2886
+ cursor: "cursor";
2887
+ windsurf: "windsurf";
2888
+ claude: "claude";
2889
+ }>>>;
2890
+ }, z.core.$strict>>;
2891
+ }, z.core.$strict>>;
2892
+ database: z.ZodEnum<{
2893
+ none: "none";
2894
+ sqlite: "sqlite";
2895
+ postgres: "postgres";
2896
+ mysql: "mysql";
2897
+ }>;
2898
+ orm: z.ZodEnum<{
2899
+ none: "none";
2900
+ drizzle: "drizzle";
2901
+ prisma: "prisma";
2902
+ }>;
2903
+ backend: z.ZodEnum<{
2904
+ none: "none";
2905
+ hono: "hono";
2906
+ express: "express";
2907
+ fastify: "fastify";
2908
+ nest: "nest";
2909
+ self: "self";
2910
+ }>;
2911
+ runtime: z.ZodEnum<{
2912
+ none: "none";
2913
+ bun: "bun";
2914
+ node: "node";
2915
+ workers: "workers";
2916
+ }>;
2917
+ frontend: z.ZodArray<z.ZodEnum<{
2918
+ none: "none";
2919
+ "tanstack-start": "tanstack-start";
2920
+ next: "next";
2921
+ angular: "angular";
2922
+ "native-uniwind": "native-uniwind";
2923
+ astro: "astro";
2924
+ }>>;
2925
+ addons: z.ZodArray<z.ZodEnum<{
2926
+ none: "none";
2927
+ pwa: "pwa";
2928
+ tauri: "tauri";
2929
+ electrobun: "electrobun";
2930
+ starlight: "starlight";
2931
+ biome: "biome";
2932
+ husky: "husky";
2933
+ mcp: "mcp";
2934
+ turborepo: "turborepo";
2935
+ fumadocs: "fumadocs";
2936
+ ultracite: "ultracite";
2937
+ opentui: "opentui";
2938
+ wxt: "wxt";
2939
+ skills: "skills";
2940
+ }>>;
2941
+ examples: z.ZodArray<z.ZodEnum<{
2942
+ none: "none";
2943
+ todo: "todo";
2944
+ ai: "ai";
2945
+ }>>;
2946
+ auth: z.ZodEnum<{
2947
+ none: "none";
2948
+ "better-auth": "better-auth";
2949
+ clerk: "clerk";
2950
+ }>;
2951
+ payments: z.ZodEnum<{
2952
+ none: "none";
2953
+ polar: "polar";
2954
+ }>;
2955
+ git: z.ZodBoolean;
2956
+ packageManager: z.ZodEnum<{
2957
+ bun: "bun";
2958
+ npm: "npm";
2959
+ pnpm: "pnpm";
2960
+ }>;
2961
+ install: z.ZodBoolean;
2962
+ api: z.ZodEnum<{
2963
+ none: "none";
2964
+ trpc: "trpc";
2965
+ orpc: "orpc";
2966
+ }>;
2967
+ webDeploy: z.ZodEnum<{
2968
+ none: "none";
2969
+ cloudflare: "cloudflare";
2970
+ }>;
2971
+ serverDeploy: z.ZodEnum<{
2972
+ none: "none";
2973
+ cloudflare: "cloudflare";
2974
+ }>;
2975
+ }, z.core.$strip>;
2976
+ reproducibleCommand: z.ZodString;
2977
+ timeScaffolded: z.ZodString;
2978
+ elapsedTimeMs: z.ZodNumber;
2979
+ projectDirectory: z.ZodString;
2980
+ relativePath: z.ZodString;
2981
+ error: z.ZodOptional<z.ZodString>;
2982
+ }, z.core.$strip>>;
2983
+ };
2984
+ //#endregion
2985
+ export { getAPIJsonSchema, getAddInputJsonSchema, getAddonOptionsJsonSchema, getAddonsJsonSchema, getAllJsonSchemas, getAuthJsonSchema, getBackendJsonSchema, getCreateInputJsonSchema, getDatabaseJsonSchema, getDirectoryConflictJsonSchema, getExamplesJsonSchema, getFrontendJsonSchema, getGlitchStackConfigJsonSchema, getInitResultJsonSchema, getORMJsonSchema, getPackageManagerJsonSchema, getPaymentsJsonSchema, getProjectConfigJsonSchema, getRuntimeJsonSchema, getServerDeployJsonSchema, getTemplateJsonSchema, getWebDeployJsonSchema };
2986
+ //# sourceMappingURL=json-schema.d.mts.map