@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,2194 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/schemas.d.ts
4
+ declare const DatabaseSchema: z.ZodEnum<{
5
+ none: "none";
6
+ sqlite: "sqlite";
7
+ postgres: "postgres";
8
+ mysql: "mysql";
9
+ }>;
10
+ declare const ORMSchema: z.ZodEnum<{
11
+ none: "none";
12
+ drizzle: "drizzle";
13
+ prisma: "prisma";
14
+ }>;
15
+ declare const BackendSchema: z.ZodEnum<{
16
+ none: "none";
17
+ hono: "hono";
18
+ express: "express";
19
+ fastify: "fastify";
20
+ nest: "nest";
21
+ self: "self";
22
+ }>;
23
+ declare const RuntimeSchema: z.ZodEnum<{
24
+ none: "none";
25
+ bun: "bun";
26
+ node: "node";
27
+ workers: "workers";
28
+ }>;
29
+ declare const FrontendSchema: 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 const AddonsSchema: 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 const ExamplesSchema: z.ZodEnum<{
54
+ none: "none";
55
+ todo: "todo";
56
+ ai: "ai";
57
+ }>;
58
+ declare const PackageManagerSchema: z.ZodEnum<{
59
+ bun: "bun";
60
+ npm: "npm";
61
+ pnpm: "pnpm";
62
+ }>;
63
+ declare const APISchema: z.ZodEnum<{
64
+ none: "none";
65
+ trpc: "trpc";
66
+ orpc: "orpc";
67
+ }>;
68
+ declare const AuthSchema: z.ZodEnum<{
69
+ none: "none";
70
+ "better-auth": "better-auth";
71
+ clerk: "clerk";
72
+ }>;
73
+ declare const PaymentsSchema: z.ZodEnum<{
74
+ none: "none";
75
+ polar: "polar";
76
+ }>;
77
+ declare const WebDeploySchema: z.ZodEnum<{
78
+ none: "none";
79
+ cloudflare: "cloudflare";
80
+ }>;
81
+ declare const ServerDeploySchema: z.ZodEnum<{
82
+ none: "none";
83
+ cloudflare: "cloudflare";
84
+ }>;
85
+ declare const DirectoryConflictSchema: z.ZodEnum<{
86
+ merge: "merge";
87
+ overwrite: "overwrite";
88
+ increment: "increment";
89
+ error: "error";
90
+ }>;
91
+ declare const TemplateSchema: z.ZodEnum<{
92
+ none: "none";
93
+ t3: "t3";
94
+ uniwind: "uniwind";
95
+ }>;
96
+ declare const WxtTemplateSchema: z.ZodEnum<{
97
+ vanilla: "vanilla";
98
+ vue: "vue";
99
+ react: "react";
100
+ }>;
101
+ declare const TuiTemplateSchema: z.ZodEnum<{
102
+ react: "react";
103
+ core: "core";
104
+ }>;
105
+ declare const FumadocsTemplateSchema: z.ZodEnum<{
106
+ "tanstack-start": "tanstack-start";
107
+ "next-mdx": "next-mdx";
108
+ "next-mdx-static": "next-mdx-static";
109
+ waku: "waku";
110
+ "tanstack-start-spa": "tanstack-start-spa";
111
+ }>;
112
+ declare const InstallScopeSchema: z.ZodEnum<{
113
+ project: "project";
114
+ global: "global";
115
+ }>;
116
+ declare const McpServerSchema: z.ZodEnum<{
117
+ "better-auth": "better-auth";
118
+ clerk: "clerk";
119
+ polar: "polar";
120
+ "glitch-stack": "glitch-stack";
121
+ context7: "context7";
122
+ "cloudflare-docs": "cloudflare-docs";
123
+ shadcn: "shadcn";
124
+ "next-devtools": "next-devtools";
125
+ "astro-docs": "astro-docs";
126
+ planetscale: "planetscale";
127
+ neon: "neon";
128
+ supabase: "supabase";
129
+ expo: "expo";
130
+ }>;
131
+ declare const McpAgentSchema: z.ZodEnum<{
132
+ antigravity: "antigravity";
133
+ cline: "cline";
134
+ "cline-cli": "cline-cli";
135
+ cursor: "cursor";
136
+ "claude-code": "claude-code";
137
+ codex: "codex";
138
+ opencode: "opencode";
139
+ "gemini-cli": "gemini-cli";
140
+ "github-copilot-cli": "github-copilot-cli";
141
+ mcporter: "mcporter";
142
+ vscode: "vscode";
143
+ zed: "zed";
144
+ "claude-desktop": "claude-desktop";
145
+ goose: "goose";
146
+ }>;
147
+ declare const SkillsSourceSchema: z.ZodEnum<{
148
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
149
+ "vercel/ai": "vercel/ai";
150
+ "vercel/turborepo": "vercel/turborepo";
151
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
152
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
153
+ "heroui-inc/heroui": "heroui-inc/heroui";
154
+ "shadcn/ui": "shadcn/ui";
155
+ "better-auth/skills": "better-auth/skills";
156
+ "clerk/skills": "clerk/skills";
157
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
158
+ "supabase/agent-skills": "supabase/agent-skills";
159
+ "planetscale/database-skills": "planetscale/database-skills";
160
+ "expo/skills": "expo/skills";
161
+ "prisma/skills": "prisma/skills";
162
+ "msmps/opentui-skill": "msmps/opentui-skill";
163
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
164
+ }>;
165
+ declare const SkillsAgentSchema: z.ZodEnum<{
166
+ antigravity: "antigravity";
167
+ cline: "cline";
168
+ cursor: "cursor";
169
+ "claude-code": "claude-code";
170
+ codex: "codex";
171
+ opencode: "opencode";
172
+ "gemini-cli": "gemini-cli";
173
+ goose: "goose";
174
+ "github-copilot": "github-copilot";
175
+ windsurf: "windsurf";
176
+ roo: "roo";
177
+ kilo: "kilo";
178
+ openhands: "openhands";
179
+ trae: "trae";
180
+ amp: "amp";
181
+ pi: "pi";
182
+ qoder: "qoder";
183
+ "qwen-code": "qwen-code";
184
+ "kiro-cli": "kiro-cli";
185
+ droid: "droid";
186
+ "command-code": "command-code";
187
+ clawdbot: "clawdbot";
188
+ zencoder: "zencoder";
189
+ neovate: "neovate";
190
+ mcpjam: "mcpjam";
191
+ }>;
192
+ declare const SkillSelectionSchema: z.ZodObject<{
193
+ source: z.ZodEnum<{
194
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
195
+ "vercel/ai": "vercel/ai";
196
+ "vercel/turborepo": "vercel/turborepo";
197
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
198
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
199
+ "heroui-inc/heroui": "heroui-inc/heroui";
200
+ "shadcn/ui": "shadcn/ui";
201
+ "better-auth/skills": "better-auth/skills";
202
+ "clerk/skills": "clerk/skills";
203
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
204
+ "supabase/agent-skills": "supabase/agent-skills";
205
+ "planetscale/database-skills": "planetscale/database-skills";
206
+ "expo/skills": "expo/skills";
207
+ "prisma/skills": "prisma/skills";
208
+ "msmps/opentui-skill": "msmps/opentui-skill";
209
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
210
+ }>;
211
+ skills: z.ZodArray<z.ZodString>;
212
+ }, z.core.$strict>;
213
+ declare const UltraciteLinterSchema: z.ZodEnum<{
214
+ biome: "biome";
215
+ eslint: "eslint";
216
+ }>;
217
+ declare const UltraciteEditorSchema: 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
+ declare const UltraciteAgentSchema: 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
+ declare const UltraciteHookSchema: z.ZodEnum<{
255
+ cursor: "cursor";
256
+ windsurf: "windsurf";
257
+ claude: "claude";
258
+ }>;
259
+ declare const AddonOptionsSchema: z.ZodObject<{
260
+ wxt: z.ZodOptional<z.ZodObject<{
261
+ template: z.ZodEnum<{
262
+ vanilla: "vanilla";
263
+ vue: "vue";
264
+ react: "react";
265
+ }>;
266
+ devPort: z.ZodOptional<z.ZodNumber>;
267
+ }, z.core.$strict>>;
268
+ fumadocs: z.ZodOptional<z.ZodObject<{
269
+ template: z.ZodEnum<{
270
+ "tanstack-start": "tanstack-start";
271
+ "next-mdx": "next-mdx";
272
+ "next-mdx-static": "next-mdx-static";
273
+ waku: "waku";
274
+ "tanstack-start-spa": "tanstack-start-spa";
275
+ }>;
276
+ devPort: z.ZodOptional<z.ZodNumber>;
277
+ }, z.core.$strict>>;
278
+ opentui: z.ZodOptional<z.ZodObject<{
279
+ template: z.ZodEnum<{
280
+ react: "react";
281
+ core: "core";
282
+ }>;
283
+ }, z.core.$strict>>;
284
+ mcp: z.ZodOptional<z.ZodObject<{
285
+ scope: z.ZodOptional<z.ZodEnum<{
286
+ project: "project";
287
+ global: "global";
288
+ }>>;
289
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
290
+ "better-auth": "better-auth";
291
+ clerk: "clerk";
292
+ polar: "polar";
293
+ "glitch-stack": "glitch-stack";
294
+ context7: "context7";
295
+ "cloudflare-docs": "cloudflare-docs";
296
+ shadcn: "shadcn";
297
+ "next-devtools": "next-devtools";
298
+ "astro-docs": "astro-docs";
299
+ planetscale: "planetscale";
300
+ neon: "neon";
301
+ supabase: "supabase";
302
+ expo: "expo";
303
+ }>>>;
304
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
305
+ antigravity: "antigravity";
306
+ cline: "cline";
307
+ "cline-cli": "cline-cli";
308
+ cursor: "cursor";
309
+ "claude-code": "claude-code";
310
+ codex: "codex";
311
+ opencode: "opencode";
312
+ "gemini-cli": "gemini-cli";
313
+ "github-copilot-cli": "github-copilot-cli";
314
+ mcporter: "mcporter";
315
+ vscode: "vscode";
316
+ zed: "zed";
317
+ "claude-desktop": "claude-desktop";
318
+ goose: "goose";
319
+ }>>>;
320
+ }, z.core.$strict>>;
321
+ skills: z.ZodOptional<z.ZodObject<{
322
+ scope: z.ZodOptional<z.ZodEnum<{
323
+ project: "project";
324
+ global: "global";
325
+ }>>;
326
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
327
+ antigravity: "antigravity";
328
+ cline: "cline";
329
+ cursor: "cursor";
330
+ "claude-code": "claude-code";
331
+ codex: "codex";
332
+ opencode: "opencode";
333
+ "gemini-cli": "gemini-cli";
334
+ goose: "goose";
335
+ "github-copilot": "github-copilot";
336
+ windsurf: "windsurf";
337
+ roo: "roo";
338
+ kilo: "kilo";
339
+ openhands: "openhands";
340
+ trae: "trae";
341
+ amp: "amp";
342
+ pi: "pi";
343
+ qoder: "qoder";
344
+ "qwen-code": "qwen-code";
345
+ "kiro-cli": "kiro-cli";
346
+ droid: "droid";
347
+ "command-code": "command-code";
348
+ clawdbot: "clawdbot";
349
+ zencoder: "zencoder";
350
+ neovate: "neovate";
351
+ mcpjam: "mcpjam";
352
+ }>>>;
353
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
354
+ source: z.ZodEnum<{
355
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
356
+ "vercel/ai": "vercel/ai";
357
+ "vercel/turborepo": "vercel/turborepo";
358
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
359
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
360
+ "heroui-inc/heroui": "heroui-inc/heroui";
361
+ "shadcn/ui": "shadcn/ui";
362
+ "better-auth/skills": "better-auth/skills";
363
+ "clerk/skills": "clerk/skills";
364
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
365
+ "supabase/agent-skills": "supabase/agent-skills";
366
+ "planetscale/database-skills": "planetscale/database-skills";
367
+ "expo/skills": "expo/skills";
368
+ "prisma/skills": "prisma/skills";
369
+ "msmps/opentui-skill": "msmps/opentui-skill";
370
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
371
+ }>;
372
+ skills: z.ZodArray<z.ZodString>;
373
+ }, z.core.$strict>>>;
374
+ }, z.core.$strict>>;
375
+ ultracite: z.ZodOptional<z.ZodObject<{
376
+ linter: z.ZodOptional<z.ZodEnum<{
377
+ biome: "biome";
378
+ eslint: "eslint";
379
+ }>>;
380
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
381
+ antigravity: "antigravity";
382
+ cursor: "cursor";
383
+ vscode: "vscode";
384
+ zed: "zed";
385
+ windsurf: "windsurf";
386
+ trae: "trae";
387
+ void: "void";
388
+ kiro: "kiro";
389
+ }>>>;
390
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
391
+ cline: "cline";
392
+ codex: "codex";
393
+ opencode: "opencode";
394
+ goose: "goose";
395
+ amp: "amp";
396
+ droid: "droid";
397
+ claude: "claude";
398
+ jules: "jules";
399
+ copilot: "copilot";
400
+ aider: "aider";
401
+ "firebase-studio": "firebase-studio";
402
+ "open-hands": "open-hands";
403
+ gemini: "gemini";
404
+ junie: "junie";
405
+ augmentcode: "augmentcode";
406
+ "kilo-code": "kilo-code";
407
+ "roo-code": "roo-code";
408
+ warp: "warp";
409
+ crush: "crush";
410
+ qwen: "qwen";
411
+ "amazon-q-cli": "amazon-q-cli";
412
+ firebender: "firebender";
413
+ "cursor-cli": "cursor-cli";
414
+ "mistral-vibe": "mistral-vibe";
415
+ vercel: "vercel";
416
+ }>>>;
417
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
418
+ cursor: "cursor";
419
+ windsurf: "windsurf";
420
+ claude: "claude";
421
+ }>>>;
422
+ }, z.core.$strict>>;
423
+ }, z.core.$strict>;
424
+ declare const ProjectNameSchema: z.ZodString;
425
+ declare const CreateInputSchema: z.ZodObject<{
426
+ projectName: z.ZodOptional<z.ZodString>;
427
+ template: z.ZodOptional<z.ZodEnum<{
428
+ none: "none";
429
+ t3: "t3";
430
+ uniwind: "uniwind";
431
+ }>>;
432
+ yes: z.ZodOptional<z.ZodBoolean>;
433
+ yolo: z.ZodOptional<z.ZodBoolean>;
434
+ dryRun: z.ZodOptional<z.ZodBoolean>;
435
+ verbose: z.ZodOptional<z.ZodBoolean>;
436
+ addonOptions: z.ZodOptional<z.ZodObject<{
437
+ wxt: z.ZodOptional<z.ZodObject<{
438
+ template: z.ZodEnum<{
439
+ vanilla: "vanilla";
440
+ vue: "vue";
441
+ react: "react";
442
+ }>;
443
+ devPort: z.ZodOptional<z.ZodNumber>;
444
+ }, z.core.$strict>>;
445
+ fumadocs: z.ZodOptional<z.ZodObject<{
446
+ template: z.ZodEnum<{
447
+ "tanstack-start": "tanstack-start";
448
+ "next-mdx": "next-mdx";
449
+ "next-mdx-static": "next-mdx-static";
450
+ waku: "waku";
451
+ "tanstack-start-spa": "tanstack-start-spa";
452
+ }>;
453
+ devPort: z.ZodOptional<z.ZodNumber>;
454
+ }, z.core.$strict>>;
455
+ opentui: z.ZodOptional<z.ZodObject<{
456
+ template: z.ZodEnum<{
457
+ react: "react";
458
+ core: "core";
459
+ }>;
460
+ }, z.core.$strict>>;
461
+ mcp: z.ZodOptional<z.ZodObject<{
462
+ scope: z.ZodOptional<z.ZodEnum<{
463
+ project: "project";
464
+ global: "global";
465
+ }>>;
466
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
467
+ "better-auth": "better-auth";
468
+ clerk: "clerk";
469
+ polar: "polar";
470
+ "glitch-stack": "glitch-stack";
471
+ context7: "context7";
472
+ "cloudflare-docs": "cloudflare-docs";
473
+ shadcn: "shadcn";
474
+ "next-devtools": "next-devtools";
475
+ "astro-docs": "astro-docs";
476
+ planetscale: "planetscale";
477
+ neon: "neon";
478
+ supabase: "supabase";
479
+ expo: "expo";
480
+ }>>>;
481
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
482
+ antigravity: "antigravity";
483
+ cline: "cline";
484
+ "cline-cli": "cline-cli";
485
+ cursor: "cursor";
486
+ "claude-code": "claude-code";
487
+ codex: "codex";
488
+ opencode: "opencode";
489
+ "gemini-cli": "gemini-cli";
490
+ "github-copilot-cli": "github-copilot-cli";
491
+ mcporter: "mcporter";
492
+ vscode: "vscode";
493
+ zed: "zed";
494
+ "claude-desktop": "claude-desktop";
495
+ goose: "goose";
496
+ }>>>;
497
+ }, z.core.$strict>>;
498
+ skills: z.ZodOptional<z.ZodObject<{
499
+ scope: z.ZodOptional<z.ZodEnum<{
500
+ project: "project";
501
+ global: "global";
502
+ }>>;
503
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
504
+ antigravity: "antigravity";
505
+ cline: "cline";
506
+ cursor: "cursor";
507
+ "claude-code": "claude-code";
508
+ codex: "codex";
509
+ opencode: "opencode";
510
+ "gemini-cli": "gemini-cli";
511
+ goose: "goose";
512
+ "github-copilot": "github-copilot";
513
+ windsurf: "windsurf";
514
+ roo: "roo";
515
+ kilo: "kilo";
516
+ openhands: "openhands";
517
+ trae: "trae";
518
+ amp: "amp";
519
+ pi: "pi";
520
+ qoder: "qoder";
521
+ "qwen-code": "qwen-code";
522
+ "kiro-cli": "kiro-cli";
523
+ droid: "droid";
524
+ "command-code": "command-code";
525
+ clawdbot: "clawdbot";
526
+ zencoder: "zencoder";
527
+ neovate: "neovate";
528
+ mcpjam: "mcpjam";
529
+ }>>>;
530
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
531
+ source: z.ZodEnum<{
532
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
533
+ "vercel/ai": "vercel/ai";
534
+ "vercel/turborepo": "vercel/turborepo";
535
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
536
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
537
+ "heroui-inc/heroui": "heroui-inc/heroui";
538
+ "shadcn/ui": "shadcn/ui";
539
+ "better-auth/skills": "better-auth/skills";
540
+ "clerk/skills": "clerk/skills";
541
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
542
+ "supabase/agent-skills": "supabase/agent-skills";
543
+ "planetscale/database-skills": "planetscale/database-skills";
544
+ "expo/skills": "expo/skills";
545
+ "prisma/skills": "prisma/skills";
546
+ "msmps/opentui-skill": "msmps/opentui-skill";
547
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
548
+ }>;
549
+ skills: z.ZodArray<z.ZodString>;
550
+ }, z.core.$strict>>>;
551
+ }, z.core.$strict>>;
552
+ ultracite: z.ZodOptional<z.ZodObject<{
553
+ linter: z.ZodOptional<z.ZodEnum<{
554
+ biome: "biome";
555
+ eslint: "eslint";
556
+ }>>;
557
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
558
+ antigravity: "antigravity";
559
+ cursor: "cursor";
560
+ vscode: "vscode";
561
+ zed: "zed";
562
+ windsurf: "windsurf";
563
+ trae: "trae";
564
+ void: "void";
565
+ kiro: "kiro";
566
+ }>>>;
567
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
568
+ cline: "cline";
569
+ codex: "codex";
570
+ opencode: "opencode";
571
+ goose: "goose";
572
+ amp: "amp";
573
+ droid: "droid";
574
+ claude: "claude";
575
+ jules: "jules";
576
+ copilot: "copilot";
577
+ aider: "aider";
578
+ "firebase-studio": "firebase-studio";
579
+ "open-hands": "open-hands";
580
+ gemini: "gemini";
581
+ junie: "junie";
582
+ augmentcode: "augmentcode";
583
+ "kilo-code": "kilo-code";
584
+ "roo-code": "roo-code";
585
+ warp: "warp";
586
+ crush: "crush";
587
+ qwen: "qwen";
588
+ "amazon-q-cli": "amazon-q-cli";
589
+ firebender: "firebender";
590
+ "cursor-cli": "cursor-cli";
591
+ "mistral-vibe": "mistral-vibe";
592
+ vercel: "vercel";
593
+ }>>>;
594
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
595
+ cursor: "cursor";
596
+ windsurf: "windsurf";
597
+ claude: "claude";
598
+ }>>>;
599
+ }, z.core.$strict>>;
600
+ }, z.core.$strict>>;
601
+ database: z.ZodOptional<z.ZodEnum<{
602
+ none: "none";
603
+ sqlite: "sqlite";
604
+ postgres: "postgres";
605
+ mysql: "mysql";
606
+ }>>;
607
+ orm: z.ZodOptional<z.ZodEnum<{
608
+ none: "none";
609
+ drizzle: "drizzle";
610
+ prisma: "prisma";
611
+ }>>;
612
+ auth: z.ZodOptional<z.ZodEnum<{
613
+ none: "none";
614
+ "better-auth": "better-auth";
615
+ clerk: "clerk";
616
+ }>>;
617
+ payments: z.ZodOptional<z.ZodEnum<{
618
+ none: "none";
619
+ polar: "polar";
620
+ }>>;
621
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
622
+ none: "none";
623
+ "tanstack-start": "tanstack-start";
624
+ next: "next";
625
+ angular: "angular";
626
+ "native-uniwind": "native-uniwind";
627
+ astro: "astro";
628
+ }>>>;
629
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
630
+ none: "none";
631
+ pwa: "pwa";
632
+ tauri: "tauri";
633
+ electrobun: "electrobun";
634
+ starlight: "starlight";
635
+ biome: "biome";
636
+ husky: "husky";
637
+ mcp: "mcp";
638
+ turborepo: "turborepo";
639
+ fumadocs: "fumadocs";
640
+ ultracite: "ultracite";
641
+ opentui: "opentui";
642
+ wxt: "wxt";
643
+ skills: "skills";
644
+ }>>>;
645
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
646
+ none: "none";
647
+ todo: "todo";
648
+ ai: "ai";
649
+ }>>>;
650
+ git: z.ZodOptional<z.ZodBoolean>;
651
+ packageManager: z.ZodOptional<z.ZodEnum<{
652
+ bun: "bun";
653
+ npm: "npm";
654
+ pnpm: "pnpm";
655
+ }>>;
656
+ install: z.ZodOptional<z.ZodBoolean>;
657
+ backend: z.ZodOptional<z.ZodEnum<{
658
+ none: "none";
659
+ hono: "hono";
660
+ express: "express";
661
+ fastify: "fastify";
662
+ nest: "nest";
663
+ self: "self";
664
+ }>>;
665
+ runtime: z.ZodOptional<z.ZodEnum<{
666
+ none: "none";
667
+ bun: "bun";
668
+ node: "node";
669
+ workers: "workers";
670
+ }>>;
671
+ api: z.ZodOptional<z.ZodEnum<{
672
+ none: "none";
673
+ trpc: "trpc";
674
+ orpc: "orpc";
675
+ }>>;
676
+ webDeploy: z.ZodOptional<z.ZodEnum<{
677
+ none: "none";
678
+ cloudflare: "cloudflare";
679
+ }>>;
680
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
681
+ none: "none";
682
+ cloudflare: "cloudflare";
683
+ }>>;
684
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
685
+ merge: "merge";
686
+ overwrite: "overwrite";
687
+ increment: "increment";
688
+ error: "error";
689
+ }>>;
690
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
691
+ }, z.core.$strict>;
692
+ declare const AddInputSchema: z.ZodObject<{
693
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
694
+ none: "none";
695
+ pwa: "pwa";
696
+ tauri: "tauri";
697
+ electrobun: "electrobun";
698
+ starlight: "starlight";
699
+ biome: "biome";
700
+ husky: "husky";
701
+ mcp: "mcp";
702
+ turborepo: "turborepo";
703
+ fumadocs: "fumadocs";
704
+ ultracite: "ultracite";
705
+ opentui: "opentui";
706
+ wxt: "wxt";
707
+ skills: "skills";
708
+ }>>>;
709
+ addonOptions: z.ZodOptional<z.ZodObject<{
710
+ wxt: z.ZodOptional<z.ZodObject<{
711
+ template: z.ZodEnum<{
712
+ vanilla: "vanilla";
713
+ vue: "vue";
714
+ react: "react";
715
+ }>;
716
+ devPort: z.ZodOptional<z.ZodNumber>;
717
+ }, z.core.$strict>>;
718
+ fumadocs: z.ZodOptional<z.ZodObject<{
719
+ template: z.ZodEnum<{
720
+ "tanstack-start": "tanstack-start";
721
+ "next-mdx": "next-mdx";
722
+ "next-mdx-static": "next-mdx-static";
723
+ waku: "waku";
724
+ "tanstack-start-spa": "tanstack-start-spa";
725
+ }>;
726
+ devPort: z.ZodOptional<z.ZodNumber>;
727
+ }, z.core.$strict>>;
728
+ opentui: z.ZodOptional<z.ZodObject<{
729
+ template: z.ZodEnum<{
730
+ react: "react";
731
+ core: "core";
732
+ }>;
733
+ }, z.core.$strict>>;
734
+ mcp: z.ZodOptional<z.ZodObject<{
735
+ scope: z.ZodOptional<z.ZodEnum<{
736
+ project: "project";
737
+ global: "global";
738
+ }>>;
739
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
740
+ "better-auth": "better-auth";
741
+ clerk: "clerk";
742
+ polar: "polar";
743
+ "glitch-stack": "glitch-stack";
744
+ context7: "context7";
745
+ "cloudflare-docs": "cloudflare-docs";
746
+ shadcn: "shadcn";
747
+ "next-devtools": "next-devtools";
748
+ "astro-docs": "astro-docs";
749
+ planetscale: "planetscale";
750
+ neon: "neon";
751
+ supabase: "supabase";
752
+ expo: "expo";
753
+ }>>>;
754
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
755
+ antigravity: "antigravity";
756
+ cline: "cline";
757
+ "cline-cli": "cline-cli";
758
+ cursor: "cursor";
759
+ "claude-code": "claude-code";
760
+ codex: "codex";
761
+ opencode: "opencode";
762
+ "gemini-cli": "gemini-cli";
763
+ "github-copilot-cli": "github-copilot-cli";
764
+ mcporter: "mcporter";
765
+ vscode: "vscode";
766
+ zed: "zed";
767
+ "claude-desktop": "claude-desktop";
768
+ goose: "goose";
769
+ }>>>;
770
+ }, z.core.$strict>>;
771
+ skills: z.ZodOptional<z.ZodObject<{
772
+ scope: z.ZodOptional<z.ZodEnum<{
773
+ project: "project";
774
+ global: "global";
775
+ }>>;
776
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
777
+ antigravity: "antigravity";
778
+ cline: "cline";
779
+ cursor: "cursor";
780
+ "claude-code": "claude-code";
781
+ codex: "codex";
782
+ opencode: "opencode";
783
+ "gemini-cli": "gemini-cli";
784
+ goose: "goose";
785
+ "github-copilot": "github-copilot";
786
+ windsurf: "windsurf";
787
+ roo: "roo";
788
+ kilo: "kilo";
789
+ openhands: "openhands";
790
+ trae: "trae";
791
+ amp: "amp";
792
+ pi: "pi";
793
+ qoder: "qoder";
794
+ "qwen-code": "qwen-code";
795
+ "kiro-cli": "kiro-cli";
796
+ droid: "droid";
797
+ "command-code": "command-code";
798
+ clawdbot: "clawdbot";
799
+ zencoder: "zencoder";
800
+ neovate: "neovate";
801
+ mcpjam: "mcpjam";
802
+ }>>>;
803
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
804
+ source: z.ZodEnum<{
805
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
806
+ "vercel/ai": "vercel/ai";
807
+ "vercel/turborepo": "vercel/turborepo";
808
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
809
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
810
+ "heroui-inc/heroui": "heroui-inc/heroui";
811
+ "shadcn/ui": "shadcn/ui";
812
+ "better-auth/skills": "better-auth/skills";
813
+ "clerk/skills": "clerk/skills";
814
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
815
+ "supabase/agent-skills": "supabase/agent-skills";
816
+ "planetscale/database-skills": "planetscale/database-skills";
817
+ "expo/skills": "expo/skills";
818
+ "prisma/skills": "prisma/skills";
819
+ "msmps/opentui-skill": "msmps/opentui-skill";
820
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
821
+ }>;
822
+ skills: z.ZodArray<z.ZodString>;
823
+ }, z.core.$strict>>>;
824
+ }, z.core.$strict>>;
825
+ ultracite: z.ZodOptional<z.ZodObject<{
826
+ linter: z.ZodOptional<z.ZodEnum<{
827
+ biome: "biome";
828
+ eslint: "eslint";
829
+ }>>;
830
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
831
+ antigravity: "antigravity";
832
+ cursor: "cursor";
833
+ vscode: "vscode";
834
+ zed: "zed";
835
+ windsurf: "windsurf";
836
+ trae: "trae";
837
+ void: "void";
838
+ kiro: "kiro";
839
+ }>>>;
840
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
841
+ cline: "cline";
842
+ codex: "codex";
843
+ opencode: "opencode";
844
+ goose: "goose";
845
+ amp: "amp";
846
+ droid: "droid";
847
+ claude: "claude";
848
+ jules: "jules";
849
+ copilot: "copilot";
850
+ aider: "aider";
851
+ "firebase-studio": "firebase-studio";
852
+ "open-hands": "open-hands";
853
+ gemini: "gemini";
854
+ junie: "junie";
855
+ augmentcode: "augmentcode";
856
+ "kilo-code": "kilo-code";
857
+ "roo-code": "roo-code";
858
+ warp: "warp";
859
+ crush: "crush";
860
+ qwen: "qwen";
861
+ "amazon-q-cli": "amazon-q-cli";
862
+ firebender: "firebender";
863
+ "cursor-cli": "cursor-cli";
864
+ "mistral-vibe": "mistral-vibe";
865
+ vercel: "vercel";
866
+ }>>>;
867
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
868
+ cursor: "cursor";
869
+ windsurf: "windsurf";
870
+ claude: "claude";
871
+ }>>>;
872
+ }, z.core.$strict>>;
873
+ }, z.core.$strict>>;
874
+ webDeploy: z.ZodOptional<z.ZodEnum<{
875
+ none: "none";
876
+ cloudflare: "cloudflare";
877
+ }>>;
878
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
879
+ none: "none";
880
+ cloudflare: "cloudflare";
881
+ }>>;
882
+ projectDir: z.ZodOptional<z.ZodString>;
883
+ install: z.ZodOptional<z.ZodBoolean>;
884
+ packageManager: z.ZodOptional<z.ZodEnum<{
885
+ bun: "bun";
886
+ npm: "npm";
887
+ pnpm: "pnpm";
888
+ }>>;
889
+ dryRun: z.ZodOptional<z.ZodBoolean>;
890
+ }, z.core.$strict>;
891
+ declare const CLIInputSchema: z.ZodObject<{
892
+ projectName: z.ZodOptional<z.ZodString>;
893
+ template: z.ZodOptional<z.ZodEnum<{
894
+ none: "none";
895
+ t3: "t3";
896
+ uniwind: "uniwind";
897
+ }>>;
898
+ yes: z.ZodOptional<z.ZodBoolean>;
899
+ yolo: z.ZodOptional<z.ZodBoolean>;
900
+ dryRun: z.ZodOptional<z.ZodBoolean>;
901
+ verbose: z.ZodOptional<z.ZodBoolean>;
902
+ addonOptions: z.ZodOptional<z.ZodObject<{
903
+ wxt: z.ZodOptional<z.ZodObject<{
904
+ template: z.ZodEnum<{
905
+ vanilla: "vanilla";
906
+ vue: "vue";
907
+ react: "react";
908
+ }>;
909
+ devPort: z.ZodOptional<z.ZodNumber>;
910
+ }, z.core.$strict>>;
911
+ fumadocs: z.ZodOptional<z.ZodObject<{
912
+ template: z.ZodEnum<{
913
+ "tanstack-start": "tanstack-start";
914
+ "next-mdx": "next-mdx";
915
+ "next-mdx-static": "next-mdx-static";
916
+ waku: "waku";
917
+ "tanstack-start-spa": "tanstack-start-spa";
918
+ }>;
919
+ devPort: z.ZodOptional<z.ZodNumber>;
920
+ }, z.core.$strict>>;
921
+ opentui: z.ZodOptional<z.ZodObject<{
922
+ template: z.ZodEnum<{
923
+ react: "react";
924
+ core: "core";
925
+ }>;
926
+ }, z.core.$strict>>;
927
+ mcp: z.ZodOptional<z.ZodObject<{
928
+ scope: z.ZodOptional<z.ZodEnum<{
929
+ project: "project";
930
+ global: "global";
931
+ }>>;
932
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
933
+ "better-auth": "better-auth";
934
+ clerk: "clerk";
935
+ polar: "polar";
936
+ "glitch-stack": "glitch-stack";
937
+ context7: "context7";
938
+ "cloudflare-docs": "cloudflare-docs";
939
+ shadcn: "shadcn";
940
+ "next-devtools": "next-devtools";
941
+ "astro-docs": "astro-docs";
942
+ planetscale: "planetscale";
943
+ neon: "neon";
944
+ supabase: "supabase";
945
+ expo: "expo";
946
+ }>>>;
947
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
948
+ antigravity: "antigravity";
949
+ cline: "cline";
950
+ "cline-cli": "cline-cli";
951
+ cursor: "cursor";
952
+ "claude-code": "claude-code";
953
+ codex: "codex";
954
+ opencode: "opencode";
955
+ "gemini-cli": "gemini-cli";
956
+ "github-copilot-cli": "github-copilot-cli";
957
+ mcporter: "mcporter";
958
+ vscode: "vscode";
959
+ zed: "zed";
960
+ "claude-desktop": "claude-desktop";
961
+ goose: "goose";
962
+ }>>>;
963
+ }, z.core.$strict>>;
964
+ skills: z.ZodOptional<z.ZodObject<{
965
+ scope: z.ZodOptional<z.ZodEnum<{
966
+ project: "project";
967
+ global: "global";
968
+ }>>;
969
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
970
+ antigravity: "antigravity";
971
+ cline: "cline";
972
+ cursor: "cursor";
973
+ "claude-code": "claude-code";
974
+ codex: "codex";
975
+ opencode: "opencode";
976
+ "gemini-cli": "gemini-cli";
977
+ goose: "goose";
978
+ "github-copilot": "github-copilot";
979
+ windsurf: "windsurf";
980
+ roo: "roo";
981
+ kilo: "kilo";
982
+ openhands: "openhands";
983
+ trae: "trae";
984
+ amp: "amp";
985
+ pi: "pi";
986
+ qoder: "qoder";
987
+ "qwen-code": "qwen-code";
988
+ "kiro-cli": "kiro-cli";
989
+ droid: "droid";
990
+ "command-code": "command-code";
991
+ clawdbot: "clawdbot";
992
+ zencoder: "zencoder";
993
+ neovate: "neovate";
994
+ mcpjam: "mcpjam";
995
+ }>>>;
996
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
997
+ source: z.ZodEnum<{
998
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
999
+ "vercel/ai": "vercel/ai";
1000
+ "vercel/turborepo": "vercel/turborepo";
1001
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
1002
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
1003
+ "heroui-inc/heroui": "heroui-inc/heroui";
1004
+ "shadcn/ui": "shadcn/ui";
1005
+ "better-auth/skills": "better-auth/skills";
1006
+ "clerk/skills": "clerk/skills";
1007
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
1008
+ "supabase/agent-skills": "supabase/agent-skills";
1009
+ "planetscale/database-skills": "planetscale/database-skills";
1010
+ "expo/skills": "expo/skills";
1011
+ "prisma/skills": "prisma/skills";
1012
+ "msmps/opentui-skill": "msmps/opentui-skill";
1013
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
1014
+ }>;
1015
+ skills: z.ZodArray<z.ZodString>;
1016
+ }, z.core.$strict>>>;
1017
+ }, z.core.$strict>>;
1018
+ ultracite: z.ZodOptional<z.ZodObject<{
1019
+ linter: z.ZodOptional<z.ZodEnum<{
1020
+ biome: "biome";
1021
+ eslint: "eslint";
1022
+ }>>;
1023
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1024
+ antigravity: "antigravity";
1025
+ cursor: "cursor";
1026
+ vscode: "vscode";
1027
+ zed: "zed";
1028
+ windsurf: "windsurf";
1029
+ trae: "trae";
1030
+ void: "void";
1031
+ kiro: "kiro";
1032
+ }>>>;
1033
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1034
+ cline: "cline";
1035
+ codex: "codex";
1036
+ opencode: "opencode";
1037
+ goose: "goose";
1038
+ amp: "amp";
1039
+ droid: "droid";
1040
+ claude: "claude";
1041
+ jules: "jules";
1042
+ copilot: "copilot";
1043
+ aider: "aider";
1044
+ "firebase-studio": "firebase-studio";
1045
+ "open-hands": "open-hands";
1046
+ gemini: "gemini";
1047
+ junie: "junie";
1048
+ augmentcode: "augmentcode";
1049
+ "kilo-code": "kilo-code";
1050
+ "roo-code": "roo-code";
1051
+ warp: "warp";
1052
+ crush: "crush";
1053
+ qwen: "qwen";
1054
+ "amazon-q-cli": "amazon-q-cli";
1055
+ firebender: "firebender";
1056
+ "cursor-cli": "cursor-cli";
1057
+ "mistral-vibe": "mistral-vibe";
1058
+ vercel: "vercel";
1059
+ }>>>;
1060
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1061
+ cursor: "cursor";
1062
+ windsurf: "windsurf";
1063
+ claude: "claude";
1064
+ }>>>;
1065
+ }, z.core.$strict>>;
1066
+ }, z.core.$strict>>;
1067
+ database: z.ZodOptional<z.ZodEnum<{
1068
+ none: "none";
1069
+ sqlite: "sqlite";
1070
+ postgres: "postgres";
1071
+ mysql: "mysql";
1072
+ }>>;
1073
+ orm: z.ZodOptional<z.ZodEnum<{
1074
+ none: "none";
1075
+ drizzle: "drizzle";
1076
+ prisma: "prisma";
1077
+ }>>;
1078
+ auth: z.ZodOptional<z.ZodEnum<{
1079
+ none: "none";
1080
+ "better-auth": "better-auth";
1081
+ clerk: "clerk";
1082
+ }>>;
1083
+ payments: z.ZodOptional<z.ZodEnum<{
1084
+ none: "none";
1085
+ polar: "polar";
1086
+ }>>;
1087
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1088
+ none: "none";
1089
+ "tanstack-start": "tanstack-start";
1090
+ next: "next";
1091
+ angular: "angular";
1092
+ "native-uniwind": "native-uniwind";
1093
+ astro: "astro";
1094
+ }>>>;
1095
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1096
+ none: "none";
1097
+ pwa: "pwa";
1098
+ tauri: "tauri";
1099
+ electrobun: "electrobun";
1100
+ starlight: "starlight";
1101
+ biome: "biome";
1102
+ husky: "husky";
1103
+ mcp: "mcp";
1104
+ turborepo: "turborepo";
1105
+ fumadocs: "fumadocs";
1106
+ ultracite: "ultracite";
1107
+ opentui: "opentui";
1108
+ wxt: "wxt";
1109
+ skills: "skills";
1110
+ }>>>;
1111
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1112
+ none: "none";
1113
+ todo: "todo";
1114
+ ai: "ai";
1115
+ }>>>;
1116
+ git: z.ZodOptional<z.ZodBoolean>;
1117
+ packageManager: z.ZodOptional<z.ZodEnum<{
1118
+ bun: "bun";
1119
+ npm: "npm";
1120
+ pnpm: "pnpm";
1121
+ }>>;
1122
+ install: z.ZodOptional<z.ZodBoolean>;
1123
+ backend: z.ZodOptional<z.ZodEnum<{
1124
+ none: "none";
1125
+ hono: "hono";
1126
+ express: "express";
1127
+ fastify: "fastify";
1128
+ nest: "nest";
1129
+ self: "self";
1130
+ }>>;
1131
+ runtime: z.ZodOptional<z.ZodEnum<{
1132
+ none: "none";
1133
+ bun: "bun";
1134
+ node: "node";
1135
+ workers: "workers";
1136
+ }>>;
1137
+ api: z.ZodOptional<z.ZodEnum<{
1138
+ none: "none";
1139
+ trpc: "trpc";
1140
+ orpc: "orpc";
1141
+ }>>;
1142
+ webDeploy: z.ZodOptional<z.ZodEnum<{
1143
+ none: "none";
1144
+ cloudflare: "cloudflare";
1145
+ }>>;
1146
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
1147
+ none: "none";
1148
+ cloudflare: "cloudflare";
1149
+ }>>;
1150
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
1151
+ merge: "merge";
1152
+ overwrite: "overwrite";
1153
+ increment: "increment";
1154
+ error: "error";
1155
+ }>>;
1156
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
1157
+ projectDirectory: z.ZodOptional<z.ZodString>;
1158
+ }, z.core.$strict>;
1159
+ declare const ProjectConfigSchema: z.ZodObject<{
1160
+ projectName: z.ZodString;
1161
+ projectDir: z.ZodString;
1162
+ relativePath: z.ZodString;
1163
+ addonOptions: z.ZodOptional<z.ZodObject<{
1164
+ wxt: z.ZodOptional<z.ZodObject<{
1165
+ template: z.ZodEnum<{
1166
+ vanilla: "vanilla";
1167
+ vue: "vue";
1168
+ react: "react";
1169
+ }>;
1170
+ devPort: z.ZodOptional<z.ZodNumber>;
1171
+ }, z.core.$strict>>;
1172
+ fumadocs: z.ZodOptional<z.ZodObject<{
1173
+ template: z.ZodEnum<{
1174
+ "tanstack-start": "tanstack-start";
1175
+ "next-mdx": "next-mdx";
1176
+ "next-mdx-static": "next-mdx-static";
1177
+ waku: "waku";
1178
+ "tanstack-start-spa": "tanstack-start-spa";
1179
+ }>;
1180
+ devPort: z.ZodOptional<z.ZodNumber>;
1181
+ }, z.core.$strict>>;
1182
+ opentui: z.ZodOptional<z.ZodObject<{
1183
+ template: z.ZodEnum<{
1184
+ react: "react";
1185
+ core: "core";
1186
+ }>;
1187
+ }, z.core.$strict>>;
1188
+ mcp: z.ZodOptional<z.ZodObject<{
1189
+ scope: z.ZodOptional<z.ZodEnum<{
1190
+ project: "project";
1191
+ global: "global";
1192
+ }>>;
1193
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1194
+ "better-auth": "better-auth";
1195
+ clerk: "clerk";
1196
+ polar: "polar";
1197
+ "glitch-stack": "glitch-stack";
1198
+ context7: "context7";
1199
+ "cloudflare-docs": "cloudflare-docs";
1200
+ shadcn: "shadcn";
1201
+ "next-devtools": "next-devtools";
1202
+ "astro-docs": "astro-docs";
1203
+ planetscale: "planetscale";
1204
+ neon: "neon";
1205
+ supabase: "supabase";
1206
+ expo: "expo";
1207
+ }>>>;
1208
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1209
+ antigravity: "antigravity";
1210
+ cline: "cline";
1211
+ "cline-cli": "cline-cli";
1212
+ cursor: "cursor";
1213
+ "claude-code": "claude-code";
1214
+ codex: "codex";
1215
+ opencode: "opencode";
1216
+ "gemini-cli": "gemini-cli";
1217
+ "github-copilot-cli": "github-copilot-cli";
1218
+ mcporter: "mcporter";
1219
+ vscode: "vscode";
1220
+ zed: "zed";
1221
+ "claude-desktop": "claude-desktop";
1222
+ goose: "goose";
1223
+ }>>>;
1224
+ }, z.core.$strict>>;
1225
+ skills: z.ZodOptional<z.ZodObject<{
1226
+ scope: z.ZodOptional<z.ZodEnum<{
1227
+ project: "project";
1228
+ global: "global";
1229
+ }>>;
1230
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1231
+ antigravity: "antigravity";
1232
+ cline: "cline";
1233
+ cursor: "cursor";
1234
+ "claude-code": "claude-code";
1235
+ codex: "codex";
1236
+ opencode: "opencode";
1237
+ "gemini-cli": "gemini-cli";
1238
+ goose: "goose";
1239
+ "github-copilot": "github-copilot";
1240
+ windsurf: "windsurf";
1241
+ roo: "roo";
1242
+ kilo: "kilo";
1243
+ openhands: "openhands";
1244
+ trae: "trae";
1245
+ amp: "amp";
1246
+ pi: "pi";
1247
+ qoder: "qoder";
1248
+ "qwen-code": "qwen-code";
1249
+ "kiro-cli": "kiro-cli";
1250
+ droid: "droid";
1251
+ "command-code": "command-code";
1252
+ clawdbot: "clawdbot";
1253
+ zencoder: "zencoder";
1254
+ neovate: "neovate";
1255
+ mcpjam: "mcpjam";
1256
+ }>>>;
1257
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1258
+ source: z.ZodEnum<{
1259
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
1260
+ "vercel/ai": "vercel/ai";
1261
+ "vercel/turborepo": "vercel/turborepo";
1262
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
1263
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
1264
+ "heroui-inc/heroui": "heroui-inc/heroui";
1265
+ "shadcn/ui": "shadcn/ui";
1266
+ "better-auth/skills": "better-auth/skills";
1267
+ "clerk/skills": "clerk/skills";
1268
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
1269
+ "supabase/agent-skills": "supabase/agent-skills";
1270
+ "planetscale/database-skills": "planetscale/database-skills";
1271
+ "expo/skills": "expo/skills";
1272
+ "prisma/skills": "prisma/skills";
1273
+ "msmps/opentui-skill": "msmps/opentui-skill";
1274
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
1275
+ }>;
1276
+ skills: z.ZodArray<z.ZodString>;
1277
+ }, z.core.$strict>>>;
1278
+ }, z.core.$strict>>;
1279
+ ultracite: z.ZodOptional<z.ZodObject<{
1280
+ linter: z.ZodOptional<z.ZodEnum<{
1281
+ biome: "biome";
1282
+ eslint: "eslint";
1283
+ }>>;
1284
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1285
+ antigravity: "antigravity";
1286
+ cursor: "cursor";
1287
+ vscode: "vscode";
1288
+ zed: "zed";
1289
+ windsurf: "windsurf";
1290
+ trae: "trae";
1291
+ void: "void";
1292
+ kiro: "kiro";
1293
+ }>>>;
1294
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1295
+ cline: "cline";
1296
+ codex: "codex";
1297
+ opencode: "opencode";
1298
+ goose: "goose";
1299
+ amp: "amp";
1300
+ droid: "droid";
1301
+ claude: "claude";
1302
+ jules: "jules";
1303
+ copilot: "copilot";
1304
+ aider: "aider";
1305
+ "firebase-studio": "firebase-studio";
1306
+ "open-hands": "open-hands";
1307
+ gemini: "gemini";
1308
+ junie: "junie";
1309
+ augmentcode: "augmentcode";
1310
+ "kilo-code": "kilo-code";
1311
+ "roo-code": "roo-code";
1312
+ warp: "warp";
1313
+ crush: "crush";
1314
+ qwen: "qwen";
1315
+ "amazon-q-cli": "amazon-q-cli";
1316
+ firebender: "firebender";
1317
+ "cursor-cli": "cursor-cli";
1318
+ "mistral-vibe": "mistral-vibe";
1319
+ vercel: "vercel";
1320
+ }>>>;
1321
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1322
+ cursor: "cursor";
1323
+ windsurf: "windsurf";
1324
+ claude: "claude";
1325
+ }>>>;
1326
+ }, z.core.$strict>>;
1327
+ }, z.core.$strict>>;
1328
+ database: z.ZodEnum<{
1329
+ none: "none";
1330
+ sqlite: "sqlite";
1331
+ postgres: "postgres";
1332
+ mysql: "mysql";
1333
+ }>;
1334
+ orm: z.ZodEnum<{
1335
+ none: "none";
1336
+ drizzle: "drizzle";
1337
+ prisma: "prisma";
1338
+ }>;
1339
+ backend: z.ZodEnum<{
1340
+ none: "none";
1341
+ hono: "hono";
1342
+ express: "express";
1343
+ fastify: "fastify";
1344
+ nest: "nest";
1345
+ self: "self";
1346
+ }>;
1347
+ runtime: z.ZodEnum<{
1348
+ none: "none";
1349
+ bun: "bun";
1350
+ node: "node";
1351
+ workers: "workers";
1352
+ }>;
1353
+ frontend: z.ZodArray<z.ZodEnum<{
1354
+ none: "none";
1355
+ "tanstack-start": "tanstack-start";
1356
+ next: "next";
1357
+ angular: "angular";
1358
+ "native-uniwind": "native-uniwind";
1359
+ astro: "astro";
1360
+ }>>;
1361
+ addons: z.ZodArray<z.ZodEnum<{
1362
+ none: "none";
1363
+ pwa: "pwa";
1364
+ tauri: "tauri";
1365
+ electrobun: "electrobun";
1366
+ starlight: "starlight";
1367
+ biome: "biome";
1368
+ husky: "husky";
1369
+ mcp: "mcp";
1370
+ turborepo: "turborepo";
1371
+ fumadocs: "fumadocs";
1372
+ ultracite: "ultracite";
1373
+ opentui: "opentui";
1374
+ wxt: "wxt";
1375
+ skills: "skills";
1376
+ }>>;
1377
+ examples: z.ZodArray<z.ZodEnum<{
1378
+ none: "none";
1379
+ todo: "todo";
1380
+ ai: "ai";
1381
+ }>>;
1382
+ auth: z.ZodEnum<{
1383
+ none: "none";
1384
+ "better-auth": "better-auth";
1385
+ clerk: "clerk";
1386
+ }>;
1387
+ payments: z.ZodEnum<{
1388
+ none: "none";
1389
+ polar: "polar";
1390
+ }>;
1391
+ git: z.ZodBoolean;
1392
+ packageManager: z.ZodEnum<{
1393
+ bun: "bun";
1394
+ npm: "npm";
1395
+ pnpm: "pnpm";
1396
+ }>;
1397
+ install: z.ZodBoolean;
1398
+ api: z.ZodEnum<{
1399
+ none: "none";
1400
+ trpc: "trpc";
1401
+ orpc: "orpc";
1402
+ }>;
1403
+ webDeploy: z.ZodEnum<{
1404
+ none: "none";
1405
+ cloudflare: "cloudflare";
1406
+ }>;
1407
+ serverDeploy: z.ZodEnum<{
1408
+ none: "none";
1409
+ cloudflare: "cloudflare";
1410
+ }>;
1411
+ }, z.core.$strip>;
1412
+ declare const GlitchStackConfigSchema: z.ZodObject<{
1413
+ version: z.ZodString;
1414
+ createdAt: z.ZodString;
1415
+ reproducibleCommand: z.ZodOptional<z.ZodString>;
1416
+ addonOptions: z.ZodOptional<z.ZodObject<{
1417
+ wxt: z.ZodOptional<z.ZodObject<{
1418
+ template: z.ZodEnum<{
1419
+ vanilla: "vanilla";
1420
+ vue: "vue";
1421
+ react: "react";
1422
+ }>;
1423
+ devPort: z.ZodOptional<z.ZodNumber>;
1424
+ }, z.core.$strict>>;
1425
+ fumadocs: z.ZodOptional<z.ZodObject<{
1426
+ template: z.ZodEnum<{
1427
+ "tanstack-start": "tanstack-start";
1428
+ "next-mdx": "next-mdx";
1429
+ "next-mdx-static": "next-mdx-static";
1430
+ waku: "waku";
1431
+ "tanstack-start-spa": "tanstack-start-spa";
1432
+ }>;
1433
+ devPort: z.ZodOptional<z.ZodNumber>;
1434
+ }, z.core.$strict>>;
1435
+ opentui: z.ZodOptional<z.ZodObject<{
1436
+ template: z.ZodEnum<{
1437
+ react: "react";
1438
+ core: "core";
1439
+ }>;
1440
+ }, z.core.$strict>>;
1441
+ mcp: z.ZodOptional<z.ZodObject<{
1442
+ scope: z.ZodOptional<z.ZodEnum<{
1443
+ project: "project";
1444
+ global: "global";
1445
+ }>>;
1446
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1447
+ "better-auth": "better-auth";
1448
+ clerk: "clerk";
1449
+ polar: "polar";
1450
+ "glitch-stack": "glitch-stack";
1451
+ context7: "context7";
1452
+ "cloudflare-docs": "cloudflare-docs";
1453
+ shadcn: "shadcn";
1454
+ "next-devtools": "next-devtools";
1455
+ "astro-docs": "astro-docs";
1456
+ planetscale: "planetscale";
1457
+ neon: "neon";
1458
+ supabase: "supabase";
1459
+ expo: "expo";
1460
+ }>>>;
1461
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1462
+ antigravity: "antigravity";
1463
+ cline: "cline";
1464
+ "cline-cli": "cline-cli";
1465
+ cursor: "cursor";
1466
+ "claude-code": "claude-code";
1467
+ codex: "codex";
1468
+ opencode: "opencode";
1469
+ "gemini-cli": "gemini-cli";
1470
+ "github-copilot-cli": "github-copilot-cli";
1471
+ mcporter: "mcporter";
1472
+ vscode: "vscode";
1473
+ zed: "zed";
1474
+ "claude-desktop": "claude-desktop";
1475
+ goose: "goose";
1476
+ }>>>;
1477
+ }, z.core.$strict>>;
1478
+ skills: z.ZodOptional<z.ZodObject<{
1479
+ scope: z.ZodOptional<z.ZodEnum<{
1480
+ project: "project";
1481
+ global: "global";
1482
+ }>>;
1483
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1484
+ antigravity: "antigravity";
1485
+ cline: "cline";
1486
+ cursor: "cursor";
1487
+ "claude-code": "claude-code";
1488
+ codex: "codex";
1489
+ opencode: "opencode";
1490
+ "gemini-cli": "gemini-cli";
1491
+ goose: "goose";
1492
+ "github-copilot": "github-copilot";
1493
+ windsurf: "windsurf";
1494
+ roo: "roo";
1495
+ kilo: "kilo";
1496
+ openhands: "openhands";
1497
+ trae: "trae";
1498
+ amp: "amp";
1499
+ pi: "pi";
1500
+ qoder: "qoder";
1501
+ "qwen-code": "qwen-code";
1502
+ "kiro-cli": "kiro-cli";
1503
+ droid: "droid";
1504
+ "command-code": "command-code";
1505
+ clawdbot: "clawdbot";
1506
+ zencoder: "zencoder";
1507
+ neovate: "neovate";
1508
+ mcpjam: "mcpjam";
1509
+ }>>>;
1510
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1511
+ source: z.ZodEnum<{
1512
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
1513
+ "vercel/ai": "vercel/ai";
1514
+ "vercel/turborepo": "vercel/turborepo";
1515
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
1516
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
1517
+ "heroui-inc/heroui": "heroui-inc/heroui";
1518
+ "shadcn/ui": "shadcn/ui";
1519
+ "better-auth/skills": "better-auth/skills";
1520
+ "clerk/skills": "clerk/skills";
1521
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
1522
+ "supabase/agent-skills": "supabase/agent-skills";
1523
+ "planetscale/database-skills": "planetscale/database-skills";
1524
+ "expo/skills": "expo/skills";
1525
+ "prisma/skills": "prisma/skills";
1526
+ "msmps/opentui-skill": "msmps/opentui-skill";
1527
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
1528
+ }>;
1529
+ skills: z.ZodArray<z.ZodString>;
1530
+ }, z.core.$strict>>>;
1531
+ }, z.core.$strict>>;
1532
+ ultracite: z.ZodOptional<z.ZodObject<{
1533
+ linter: z.ZodOptional<z.ZodEnum<{
1534
+ biome: "biome";
1535
+ eslint: "eslint";
1536
+ }>>;
1537
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1538
+ antigravity: "antigravity";
1539
+ cursor: "cursor";
1540
+ vscode: "vscode";
1541
+ zed: "zed";
1542
+ windsurf: "windsurf";
1543
+ trae: "trae";
1544
+ void: "void";
1545
+ kiro: "kiro";
1546
+ }>>>;
1547
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1548
+ cline: "cline";
1549
+ codex: "codex";
1550
+ opencode: "opencode";
1551
+ goose: "goose";
1552
+ amp: "amp";
1553
+ droid: "droid";
1554
+ claude: "claude";
1555
+ jules: "jules";
1556
+ copilot: "copilot";
1557
+ aider: "aider";
1558
+ "firebase-studio": "firebase-studio";
1559
+ "open-hands": "open-hands";
1560
+ gemini: "gemini";
1561
+ junie: "junie";
1562
+ augmentcode: "augmentcode";
1563
+ "kilo-code": "kilo-code";
1564
+ "roo-code": "roo-code";
1565
+ warp: "warp";
1566
+ crush: "crush";
1567
+ qwen: "qwen";
1568
+ "amazon-q-cli": "amazon-q-cli";
1569
+ firebender: "firebender";
1570
+ "cursor-cli": "cursor-cli";
1571
+ "mistral-vibe": "mistral-vibe";
1572
+ vercel: "vercel";
1573
+ }>>>;
1574
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1575
+ cursor: "cursor";
1576
+ windsurf: "windsurf";
1577
+ claude: "claude";
1578
+ }>>>;
1579
+ }, z.core.$strict>>;
1580
+ }, z.core.$strict>>;
1581
+ database: z.ZodEnum<{
1582
+ none: "none";
1583
+ sqlite: "sqlite";
1584
+ postgres: "postgres";
1585
+ mysql: "mysql";
1586
+ }>;
1587
+ orm: z.ZodEnum<{
1588
+ none: "none";
1589
+ drizzle: "drizzle";
1590
+ prisma: "prisma";
1591
+ }>;
1592
+ backend: z.ZodEnum<{
1593
+ none: "none";
1594
+ hono: "hono";
1595
+ express: "express";
1596
+ fastify: "fastify";
1597
+ nest: "nest";
1598
+ self: "self";
1599
+ }>;
1600
+ runtime: z.ZodEnum<{
1601
+ none: "none";
1602
+ bun: "bun";
1603
+ node: "node";
1604
+ workers: "workers";
1605
+ }>;
1606
+ frontend: z.ZodArray<z.ZodEnum<{
1607
+ none: "none";
1608
+ "tanstack-start": "tanstack-start";
1609
+ next: "next";
1610
+ angular: "angular";
1611
+ "native-uniwind": "native-uniwind";
1612
+ astro: "astro";
1613
+ }>>;
1614
+ addons: z.ZodArray<z.ZodEnum<{
1615
+ none: "none";
1616
+ pwa: "pwa";
1617
+ tauri: "tauri";
1618
+ electrobun: "electrobun";
1619
+ starlight: "starlight";
1620
+ biome: "biome";
1621
+ husky: "husky";
1622
+ mcp: "mcp";
1623
+ turborepo: "turborepo";
1624
+ fumadocs: "fumadocs";
1625
+ ultracite: "ultracite";
1626
+ opentui: "opentui";
1627
+ wxt: "wxt";
1628
+ skills: "skills";
1629
+ }>>;
1630
+ examples: z.ZodArray<z.ZodEnum<{
1631
+ none: "none";
1632
+ todo: "todo";
1633
+ ai: "ai";
1634
+ }>>;
1635
+ auth: z.ZodEnum<{
1636
+ none: "none";
1637
+ "better-auth": "better-auth";
1638
+ clerk: "clerk";
1639
+ }>;
1640
+ payments: z.ZodEnum<{
1641
+ none: "none";
1642
+ polar: "polar";
1643
+ }>;
1644
+ packageManager: z.ZodEnum<{
1645
+ bun: "bun";
1646
+ npm: "npm";
1647
+ pnpm: "pnpm";
1648
+ }>;
1649
+ api: z.ZodEnum<{
1650
+ none: "none";
1651
+ trpc: "trpc";
1652
+ orpc: "orpc";
1653
+ }>;
1654
+ webDeploy: z.ZodEnum<{
1655
+ none: "none";
1656
+ cloudflare: "cloudflare";
1657
+ }>;
1658
+ serverDeploy: z.ZodEnum<{
1659
+ none: "none";
1660
+ cloudflare: "cloudflare";
1661
+ }>;
1662
+ }, z.core.$strip>;
1663
+ declare const GlitchStackConfigFileSchema: z.ZodObject<{
1664
+ $schema: z.ZodOptional<z.ZodString>;
1665
+ version: z.ZodString;
1666
+ createdAt: z.ZodString;
1667
+ reproducibleCommand: z.ZodOptional<z.ZodString>;
1668
+ addonOptions: z.ZodOptional<z.ZodObject<{
1669
+ wxt: z.ZodOptional<z.ZodObject<{
1670
+ template: z.ZodEnum<{
1671
+ vanilla: "vanilla";
1672
+ vue: "vue";
1673
+ react: "react";
1674
+ }>;
1675
+ devPort: z.ZodOptional<z.ZodNumber>;
1676
+ }, z.core.$strict>>;
1677
+ fumadocs: z.ZodOptional<z.ZodObject<{
1678
+ template: z.ZodEnum<{
1679
+ "tanstack-start": "tanstack-start";
1680
+ "next-mdx": "next-mdx";
1681
+ "next-mdx-static": "next-mdx-static";
1682
+ waku: "waku";
1683
+ "tanstack-start-spa": "tanstack-start-spa";
1684
+ }>;
1685
+ devPort: z.ZodOptional<z.ZodNumber>;
1686
+ }, z.core.$strict>>;
1687
+ opentui: z.ZodOptional<z.ZodObject<{
1688
+ template: z.ZodEnum<{
1689
+ react: "react";
1690
+ core: "core";
1691
+ }>;
1692
+ }, z.core.$strict>>;
1693
+ mcp: z.ZodOptional<z.ZodObject<{
1694
+ scope: z.ZodOptional<z.ZodEnum<{
1695
+ project: "project";
1696
+ global: "global";
1697
+ }>>;
1698
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1699
+ "better-auth": "better-auth";
1700
+ clerk: "clerk";
1701
+ polar: "polar";
1702
+ "glitch-stack": "glitch-stack";
1703
+ context7: "context7";
1704
+ "cloudflare-docs": "cloudflare-docs";
1705
+ shadcn: "shadcn";
1706
+ "next-devtools": "next-devtools";
1707
+ "astro-docs": "astro-docs";
1708
+ planetscale: "planetscale";
1709
+ neon: "neon";
1710
+ supabase: "supabase";
1711
+ expo: "expo";
1712
+ }>>>;
1713
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1714
+ antigravity: "antigravity";
1715
+ cline: "cline";
1716
+ "cline-cli": "cline-cli";
1717
+ cursor: "cursor";
1718
+ "claude-code": "claude-code";
1719
+ codex: "codex";
1720
+ opencode: "opencode";
1721
+ "gemini-cli": "gemini-cli";
1722
+ "github-copilot-cli": "github-copilot-cli";
1723
+ mcporter: "mcporter";
1724
+ vscode: "vscode";
1725
+ zed: "zed";
1726
+ "claude-desktop": "claude-desktop";
1727
+ goose: "goose";
1728
+ }>>>;
1729
+ }, z.core.$strict>>;
1730
+ skills: z.ZodOptional<z.ZodObject<{
1731
+ scope: z.ZodOptional<z.ZodEnum<{
1732
+ project: "project";
1733
+ global: "global";
1734
+ }>>;
1735
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1736
+ antigravity: "antigravity";
1737
+ cline: "cline";
1738
+ cursor: "cursor";
1739
+ "claude-code": "claude-code";
1740
+ codex: "codex";
1741
+ opencode: "opencode";
1742
+ "gemini-cli": "gemini-cli";
1743
+ goose: "goose";
1744
+ "github-copilot": "github-copilot";
1745
+ windsurf: "windsurf";
1746
+ roo: "roo";
1747
+ kilo: "kilo";
1748
+ openhands: "openhands";
1749
+ trae: "trae";
1750
+ amp: "amp";
1751
+ pi: "pi";
1752
+ qoder: "qoder";
1753
+ "qwen-code": "qwen-code";
1754
+ "kiro-cli": "kiro-cli";
1755
+ droid: "droid";
1756
+ "command-code": "command-code";
1757
+ clawdbot: "clawdbot";
1758
+ zencoder: "zencoder";
1759
+ neovate: "neovate";
1760
+ mcpjam: "mcpjam";
1761
+ }>>>;
1762
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
1763
+ source: z.ZodEnum<{
1764
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
1765
+ "vercel/ai": "vercel/ai";
1766
+ "vercel/turborepo": "vercel/turborepo";
1767
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
1768
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
1769
+ "heroui-inc/heroui": "heroui-inc/heroui";
1770
+ "shadcn/ui": "shadcn/ui";
1771
+ "better-auth/skills": "better-auth/skills";
1772
+ "clerk/skills": "clerk/skills";
1773
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
1774
+ "supabase/agent-skills": "supabase/agent-skills";
1775
+ "planetscale/database-skills": "planetscale/database-skills";
1776
+ "expo/skills": "expo/skills";
1777
+ "prisma/skills": "prisma/skills";
1778
+ "msmps/opentui-skill": "msmps/opentui-skill";
1779
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
1780
+ }>;
1781
+ skills: z.ZodArray<z.ZodString>;
1782
+ }, z.core.$strict>>>;
1783
+ }, z.core.$strict>>;
1784
+ ultracite: z.ZodOptional<z.ZodObject<{
1785
+ linter: z.ZodOptional<z.ZodEnum<{
1786
+ biome: "biome";
1787
+ eslint: "eslint";
1788
+ }>>;
1789
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1790
+ antigravity: "antigravity";
1791
+ cursor: "cursor";
1792
+ vscode: "vscode";
1793
+ zed: "zed";
1794
+ windsurf: "windsurf";
1795
+ trae: "trae";
1796
+ void: "void";
1797
+ kiro: "kiro";
1798
+ }>>>;
1799
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1800
+ cline: "cline";
1801
+ codex: "codex";
1802
+ opencode: "opencode";
1803
+ goose: "goose";
1804
+ amp: "amp";
1805
+ droid: "droid";
1806
+ claude: "claude";
1807
+ jules: "jules";
1808
+ copilot: "copilot";
1809
+ aider: "aider";
1810
+ "firebase-studio": "firebase-studio";
1811
+ "open-hands": "open-hands";
1812
+ gemini: "gemini";
1813
+ junie: "junie";
1814
+ augmentcode: "augmentcode";
1815
+ "kilo-code": "kilo-code";
1816
+ "roo-code": "roo-code";
1817
+ warp: "warp";
1818
+ crush: "crush";
1819
+ qwen: "qwen";
1820
+ "amazon-q-cli": "amazon-q-cli";
1821
+ firebender: "firebender";
1822
+ "cursor-cli": "cursor-cli";
1823
+ "mistral-vibe": "mistral-vibe";
1824
+ vercel: "vercel";
1825
+ }>>>;
1826
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1827
+ cursor: "cursor";
1828
+ windsurf: "windsurf";
1829
+ claude: "claude";
1830
+ }>>>;
1831
+ }, z.core.$strict>>;
1832
+ }, z.core.$strict>>;
1833
+ database: z.ZodEnum<{
1834
+ none: "none";
1835
+ sqlite: "sqlite";
1836
+ postgres: "postgres";
1837
+ mysql: "mysql";
1838
+ }>;
1839
+ orm: z.ZodEnum<{
1840
+ none: "none";
1841
+ drizzle: "drizzle";
1842
+ prisma: "prisma";
1843
+ }>;
1844
+ backend: z.ZodEnum<{
1845
+ none: "none";
1846
+ hono: "hono";
1847
+ express: "express";
1848
+ fastify: "fastify";
1849
+ nest: "nest";
1850
+ self: "self";
1851
+ }>;
1852
+ runtime: z.ZodEnum<{
1853
+ none: "none";
1854
+ bun: "bun";
1855
+ node: "node";
1856
+ workers: "workers";
1857
+ }>;
1858
+ frontend: z.ZodArray<z.ZodEnum<{
1859
+ none: "none";
1860
+ "tanstack-start": "tanstack-start";
1861
+ next: "next";
1862
+ angular: "angular";
1863
+ "native-uniwind": "native-uniwind";
1864
+ astro: "astro";
1865
+ }>>;
1866
+ addons: z.ZodArray<z.ZodEnum<{
1867
+ none: "none";
1868
+ pwa: "pwa";
1869
+ tauri: "tauri";
1870
+ electrobun: "electrobun";
1871
+ starlight: "starlight";
1872
+ biome: "biome";
1873
+ husky: "husky";
1874
+ mcp: "mcp";
1875
+ turborepo: "turborepo";
1876
+ fumadocs: "fumadocs";
1877
+ ultracite: "ultracite";
1878
+ opentui: "opentui";
1879
+ wxt: "wxt";
1880
+ skills: "skills";
1881
+ }>>;
1882
+ examples: z.ZodArray<z.ZodEnum<{
1883
+ none: "none";
1884
+ todo: "todo";
1885
+ ai: "ai";
1886
+ }>>;
1887
+ auth: z.ZodEnum<{
1888
+ none: "none";
1889
+ "better-auth": "better-auth";
1890
+ clerk: "clerk";
1891
+ }>;
1892
+ payments: z.ZodEnum<{
1893
+ none: "none";
1894
+ polar: "polar";
1895
+ }>;
1896
+ packageManager: z.ZodEnum<{
1897
+ bun: "bun";
1898
+ npm: "npm";
1899
+ pnpm: "pnpm";
1900
+ }>;
1901
+ api: z.ZodEnum<{
1902
+ none: "none";
1903
+ trpc: "trpc";
1904
+ orpc: "orpc";
1905
+ }>;
1906
+ webDeploy: z.ZodEnum<{
1907
+ none: "none";
1908
+ cloudflare: "cloudflare";
1909
+ }>;
1910
+ serverDeploy: z.ZodEnum<{
1911
+ none: "none";
1912
+ cloudflare: "cloudflare";
1913
+ }>;
1914
+ }, z.core.$strict>;
1915
+ declare const InitResultSchema: z.ZodObject<{
1916
+ success: z.ZodBoolean;
1917
+ projectConfig: z.ZodObject<{
1918
+ projectName: z.ZodString;
1919
+ projectDir: z.ZodString;
1920
+ relativePath: z.ZodString;
1921
+ addonOptions: z.ZodOptional<z.ZodObject<{
1922
+ wxt: z.ZodOptional<z.ZodObject<{
1923
+ template: z.ZodEnum<{
1924
+ vanilla: "vanilla";
1925
+ vue: "vue";
1926
+ react: "react";
1927
+ }>;
1928
+ devPort: z.ZodOptional<z.ZodNumber>;
1929
+ }, z.core.$strict>>;
1930
+ fumadocs: z.ZodOptional<z.ZodObject<{
1931
+ template: z.ZodEnum<{
1932
+ "tanstack-start": "tanstack-start";
1933
+ "next-mdx": "next-mdx";
1934
+ "next-mdx-static": "next-mdx-static";
1935
+ waku: "waku";
1936
+ "tanstack-start-spa": "tanstack-start-spa";
1937
+ }>;
1938
+ devPort: z.ZodOptional<z.ZodNumber>;
1939
+ }, z.core.$strict>>;
1940
+ opentui: z.ZodOptional<z.ZodObject<{
1941
+ template: z.ZodEnum<{
1942
+ react: "react";
1943
+ core: "core";
1944
+ }>;
1945
+ }, z.core.$strict>>;
1946
+ mcp: z.ZodOptional<z.ZodObject<{
1947
+ scope: z.ZodOptional<z.ZodEnum<{
1948
+ project: "project";
1949
+ global: "global";
1950
+ }>>;
1951
+ servers: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1952
+ "better-auth": "better-auth";
1953
+ clerk: "clerk";
1954
+ polar: "polar";
1955
+ "glitch-stack": "glitch-stack";
1956
+ context7: "context7";
1957
+ "cloudflare-docs": "cloudflare-docs";
1958
+ shadcn: "shadcn";
1959
+ "next-devtools": "next-devtools";
1960
+ "astro-docs": "astro-docs";
1961
+ planetscale: "planetscale";
1962
+ neon: "neon";
1963
+ supabase: "supabase";
1964
+ expo: "expo";
1965
+ }>>>;
1966
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1967
+ antigravity: "antigravity";
1968
+ cline: "cline";
1969
+ "cline-cli": "cline-cli";
1970
+ cursor: "cursor";
1971
+ "claude-code": "claude-code";
1972
+ codex: "codex";
1973
+ opencode: "opencode";
1974
+ "gemini-cli": "gemini-cli";
1975
+ "github-copilot-cli": "github-copilot-cli";
1976
+ mcporter: "mcporter";
1977
+ vscode: "vscode";
1978
+ zed: "zed";
1979
+ "claude-desktop": "claude-desktop";
1980
+ goose: "goose";
1981
+ }>>>;
1982
+ }, z.core.$strict>>;
1983
+ skills: z.ZodOptional<z.ZodObject<{
1984
+ scope: z.ZodOptional<z.ZodEnum<{
1985
+ project: "project";
1986
+ global: "global";
1987
+ }>>;
1988
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1989
+ antigravity: "antigravity";
1990
+ cline: "cline";
1991
+ cursor: "cursor";
1992
+ "claude-code": "claude-code";
1993
+ codex: "codex";
1994
+ opencode: "opencode";
1995
+ "gemini-cli": "gemini-cli";
1996
+ goose: "goose";
1997
+ "github-copilot": "github-copilot";
1998
+ windsurf: "windsurf";
1999
+ roo: "roo";
2000
+ kilo: "kilo";
2001
+ openhands: "openhands";
2002
+ trae: "trae";
2003
+ amp: "amp";
2004
+ pi: "pi";
2005
+ qoder: "qoder";
2006
+ "qwen-code": "qwen-code";
2007
+ "kiro-cli": "kiro-cli";
2008
+ droid: "droid";
2009
+ "command-code": "command-code";
2010
+ clawdbot: "clawdbot";
2011
+ zencoder: "zencoder";
2012
+ neovate: "neovate";
2013
+ mcpjam: "mcpjam";
2014
+ }>>>;
2015
+ selections: z.ZodOptional<z.ZodArray<z.ZodObject<{
2016
+ source: z.ZodEnum<{
2017
+ "vercel-labs/agent-skills": "vercel-labs/agent-skills";
2018
+ "vercel/ai": "vercel/ai";
2019
+ "vercel/turborepo": "vercel/turborepo";
2020
+ "yusukebe/hono-skill": "yusukebe/hono-skill";
2021
+ "vercel-labs/next-skills": "vercel-labs/next-skills";
2022
+ "heroui-inc/heroui": "heroui-inc/heroui";
2023
+ "shadcn/ui": "shadcn/ui";
2024
+ "better-auth/skills": "better-auth/skills";
2025
+ "clerk/skills": "clerk/skills";
2026
+ "neondatabase/agent-skills": "neondatabase/agent-skills";
2027
+ "supabase/agent-skills": "supabase/agent-skills";
2028
+ "planetscale/database-skills": "planetscale/database-skills";
2029
+ "expo/skills": "expo/skills";
2030
+ "prisma/skills": "prisma/skills";
2031
+ "msmps/opentui-skill": "msmps/opentui-skill";
2032
+ "haydenbleasel/ultracite": "haydenbleasel/ultracite";
2033
+ }>;
2034
+ skills: z.ZodArray<z.ZodString>;
2035
+ }, z.core.$strict>>>;
2036
+ }, z.core.$strict>>;
2037
+ ultracite: z.ZodOptional<z.ZodObject<{
2038
+ linter: z.ZodOptional<z.ZodEnum<{
2039
+ biome: "biome";
2040
+ eslint: "eslint";
2041
+ }>>;
2042
+ editors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2043
+ antigravity: "antigravity";
2044
+ cursor: "cursor";
2045
+ vscode: "vscode";
2046
+ zed: "zed";
2047
+ windsurf: "windsurf";
2048
+ trae: "trae";
2049
+ void: "void";
2050
+ kiro: "kiro";
2051
+ }>>>;
2052
+ agents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2053
+ cline: "cline";
2054
+ codex: "codex";
2055
+ opencode: "opencode";
2056
+ goose: "goose";
2057
+ amp: "amp";
2058
+ droid: "droid";
2059
+ claude: "claude";
2060
+ jules: "jules";
2061
+ copilot: "copilot";
2062
+ aider: "aider";
2063
+ "firebase-studio": "firebase-studio";
2064
+ "open-hands": "open-hands";
2065
+ gemini: "gemini";
2066
+ junie: "junie";
2067
+ augmentcode: "augmentcode";
2068
+ "kilo-code": "kilo-code";
2069
+ "roo-code": "roo-code";
2070
+ warp: "warp";
2071
+ crush: "crush";
2072
+ qwen: "qwen";
2073
+ "amazon-q-cli": "amazon-q-cli";
2074
+ firebender: "firebender";
2075
+ "cursor-cli": "cursor-cli";
2076
+ "mistral-vibe": "mistral-vibe";
2077
+ vercel: "vercel";
2078
+ }>>>;
2079
+ hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2080
+ cursor: "cursor";
2081
+ windsurf: "windsurf";
2082
+ claude: "claude";
2083
+ }>>>;
2084
+ }, z.core.$strict>>;
2085
+ }, z.core.$strict>>;
2086
+ database: z.ZodEnum<{
2087
+ none: "none";
2088
+ sqlite: "sqlite";
2089
+ postgres: "postgres";
2090
+ mysql: "mysql";
2091
+ }>;
2092
+ orm: z.ZodEnum<{
2093
+ none: "none";
2094
+ drizzle: "drizzle";
2095
+ prisma: "prisma";
2096
+ }>;
2097
+ backend: z.ZodEnum<{
2098
+ none: "none";
2099
+ hono: "hono";
2100
+ express: "express";
2101
+ fastify: "fastify";
2102
+ nest: "nest";
2103
+ self: "self";
2104
+ }>;
2105
+ runtime: z.ZodEnum<{
2106
+ none: "none";
2107
+ bun: "bun";
2108
+ node: "node";
2109
+ workers: "workers";
2110
+ }>;
2111
+ frontend: z.ZodArray<z.ZodEnum<{
2112
+ none: "none";
2113
+ "tanstack-start": "tanstack-start";
2114
+ next: "next";
2115
+ angular: "angular";
2116
+ "native-uniwind": "native-uniwind";
2117
+ astro: "astro";
2118
+ }>>;
2119
+ addons: z.ZodArray<z.ZodEnum<{
2120
+ none: "none";
2121
+ pwa: "pwa";
2122
+ tauri: "tauri";
2123
+ electrobun: "electrobun";
2124
+ starlight: "starlight";
2125
+ biome: "biome";
2126
+ husky: "husky";
2127
+ mcp: "mcp";
2128
+ turborepo: "turborepo";
2129
+ fumadocs: "fumadocs";
2130
+ ultracite: "ultracite";
2131
+ opentui: "opentui";
2132
+ wxt: "wxt";
2133
+ skills: "skills";
2134
+ }>>;
2135
+ examples: z.ZodArray<z.ZodEnum<{
2136
+ none: "none";
2137
+ todo: "todo";
2138
+ ai: "ai";
2139
+ }>>;
2140
+ auth: z.ZodEnum<{
2141
+ none: "none";
2142
+ "better-auth": "better-auth";
2143
+ clerk: "clerk";
2144
+ }>;
2145
+ payments: z.ZodEnum<{
2146
+ none: "none";
2147
+ polar: "polar";
2148
+ }>;
2149
+ git: z.ZodBoolean;
2150
+ packageManager: z.ZodEnum<{
2151
+ bun: "bun";
2152
+ npm: "npm";
2153
+ pnpm: "pnpm";
2154
+ }>;
2155
+ install: z.ZodBoolean;
2156
+ api: z.ZodEnum<{
2157
+ none: "none";
2158
+ trpc: "trpc";
2159
+ orpc: "orpc";
2160
+ }>;
2161
+ webDeploy: z.ZodEnum<{
2162
+ none: "none";
2163
+ cloudflare: "cloudflare";
2164
+ }>;
2165
+ serverDeploy: z.ZodEnum<{
2166
+ none: "none";
2167
+ cloudflare: "cloudflare";
2168
+ }>;
2169
+ }, z.core.$strip>;
2170
+ reproducibleCommand: z.ZodString;
2171
+ timeScaffolded: z.ZodString;
2172
+ elapsedTimeMs: z.ZodNumber;
2173
+ projectDirectory: z.ZodString;
2174
+ relativePath: z.ZodString;
2175
+ error: z.ZodOptional<z.ZodString>;
2176
+ }, z.core.$strip>;
2177
+ declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql")[];
2178
+ declare const ORM_VALUES: ("none" | "drizzle" | "prisma")[];
2179
+ declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "nest" | "self")[];
2180
+ declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
2181
+ declare const FRONTEND_VALUES: ("none" | "tanstack-start" | "next" | "angular" | "native-uniwind" | "astro")[];
2182
+ declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "electrobun" | "starlight" | "biome" | "husky" | "mcp" | "turborepo" | "fumadocs" | "ultracite" | "opentui" | "wxt" | "skills")[];
2183
+ declare const EXAMPLES_VALUES: ("none" | "todo" | "ai")[];
2184
+ declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
2185
+ declare const API_VALUES: ("none" | "trpc" | "orpc")[];
2186
+ declare const AUTH_VALUES: ("none" | "better-auth" | "clerk")[];
2187
+ declare const PAYMENTS_VALUES: ("none" | "polar")[];
2188
+ declare const WEB_DEPLOY_VALUES: ("none" | "cloudflare")[];
2189
+ declare const SERVER_DEPLOY_VALUES: ("none" | "cloudflare")[];
2190
+ declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
2191
+ declare const TEMPLATE_VALUES: ("none" | "t3" | "uniwind")[];
2192
+ //#endregion
2193
+ export { PACKAGE_MANAGER_VALUES as A, SkillSelectionSchema as B, GlitchStackConfigSchema as C, McpServerSchema as D, McpAgentSchema as E, ProjectNameSchema as F, TuiTemplateSchema as G, SkillsSourceSchema as H, RUNTIME_VALUES as I, UltraciteHookSchema as J, UltraciteAgentSchema as K, RuntimeSchema as L, PackageManagerSchema as M, PaymentsSchema as N, ORMSchema as O, ProjectConfigSchema as P, WxtTemplateSchema as Q, SERVER_DEPLOY_VALUES as R, GlitchStackConfigFileSchema as S, InstallScopeSchema as T, TEMPLATE_VALUES as U, SkillsAgentSchema as V, TemplateSchema as W, WEB_DEPLOY_VALUES as X, UltraciteLinterSchema as Y, WebDeploySchema as Z, EXAMPLES_VALUES as _, AddInputSchema as a, FrontendSchema as b, AuthSchema as c, CLIInputSchema as d, CreateInputSchema as f, DirectoryConflictSchema as g, DatabaseSchema as h, AUTH_VALUES as i, PAYMENTS_VALUES as j, ORM_VALUES as k, BACKEND_VALUES as l, DIRECTORY_CONFLICT_VALUES as m, APISchema as n, AddonOptionsSchema as o, DATABASE_VALUES as p, UltraciteEditorSchema as q, API_VALUES as r, AddonsSchema as s, ADDONS_VALUES as t, BackendSchema as u, ExamplesSchema as v, InitResultSchema as w, FumadocsTemplateSchema as x, FRONTEND_VALUES as y, ServerDeploySchema as z };
2194
+ //# sourceMappingURL=schemas-CmGKaL-o.d.mts.map