create-glitch-stack 0.1.6 → 0.1.8

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.
package/README.md CHANGED
@@ -26,13 +26,13 @@ Follow the prompts to configure your project or use the `--yes` flag for default
26
26
  | Category | Options |
27
27
  | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
28
28
  | **TypeScript** | End-to-end type safety across all parts of your application |
29
- | **Frontend** | • React with TanStack Start (SSR)<br>• Next.js<br>• Astro<br>• React Native with NativeWind (via Expo)<br>• None |
30
- | **Backend** | • Hono<br>• Express<br>• Fastify<br>• Self (fullstack inside the web app)<br>• None |
29
+ | **Frontend** | • React with TanStack Start (SSR)<br>• Next.js<br>• Angular<br>• Astro<br>• React Native with NativeWind (via Expo)<br>• iOS<br>• Android<br>• None |
30
+ | **Backend** | • Hono<br>• Express<br>• Fastify<br>• NestJS<br>• Self (fullstack inside the web app)<br>• None |
31
31
  | **API Layer** | • tRPC (type-safe APIs)<br>• oRPC (OpenAPI-compatible type-safe APIs)<br>• None |
32
32
  | **Runtime** | • Bun<br>• Node.js<br>• Cloudflare Workers<br>• None |
33
33
  | **Database** | • SQLite<br>• PostgreSQL<br>• MySQL<br>• None |
34
34
  | **ORM** | • Drizzle (TypeScript-first)<br>• Prisma (feature-rich)<br>• None |
35
- | **Database Setup** | • Turso (SQLite)<br>• Cloudflare D1 (SQLite)<br>• Neon (PostgreSQL)<br>• Supabase (PostgreSQL)<br>• Prisma Postgres<br>• None (manual setup) |
35
+ | **Database Setup** | • Manual setup only (`--db-setup none`) |
36
36
  | **Authentication** | • Better Auth<br>• Clerk |
37
37
  | **Styling** | Tailwind CSS with a shared shadcn/ui package for React web apps |
38
38
  | **Addons** | • PWA support<br>• Tauri (desktop applications)<br>• Electrobun (lightweight desktop shell)<br>• Starlight and Fumadocs (documentation sites)<br>• Biome and Ultracite (linting and formatting)<br>• Husky (Git hooks)<br>• MCP, Skills (agent tooling)<br>• OpenTUI, WXT (platform extensions)<br>• Turborepo (monorepo orchestration) |
@@ -53,7 +53,7 @@ Options:
53
53
  --dry-run Validate configuration without writing files
54
54
  --auth <provider> Authentication (better-auth, clerk, none)
55
55
  --payments <provider> Payments provider (polar, none)
56
- --frontend <types...> Frontend types (tanstack-start, next, astro, native-uniwind, none)
56
+ --frontend <types...> Frontend types (tanstack-start, next, angular, astro, native-uniwind, ios, android, none)
57
57
  --addons <types...> Additional addons (pwa, tauri, electrobun, starlight, biome, husky, mcp, turborepo, fumadocs, ultracite, opentui, wxt, skills, none)
58
58
  --examples <types...> Examples to include (todo, ai, none)
59
59
  --git Initialize git repository
@@ -61,10 +61,10 @@ Options:
61
61
  --package-manager <pm> Package manager (npm, pnpm, bun)
62
62
  --install Install dependencies
63
63
  --no-install Skip installing dependencies
64
- --db-setup <setup> Database setup (turso, d1, neon, supabase, prisma-postgres, planetscale, docker, none)
64
+ --db-setup <setup> Database setup (none)
65
65
  --web-deploy <setup> Web deployment (cloudflare, none)
66
66
  --server-deploy <setup> Server deployment (cloudflare, none)
67
- --backend <framework> Backend framework (hono, express, fastify, fastify, self, self, none)
67
+ --backend <framework> Backend framework (hono, express, fastify, nest, self, none)
68
68
  --runtime <runtime> Runtime (bun, node, workers, none)
69
69
  --api <type> API type (trpc, orpc, none)
70
70
  --directory-conflict <strategy> Directory strategy (merge, overwrite, increment, error)
@@ -101,29 +101,6 @@ When you scaffold with the `mcp` addon, Glitch Stack itself can also be installe
101
101
 
102
102
  For MCP project creation, prefer `install: false`. Long dependency installs can exceed common MCP client request timeouts, so the safest flow is to scaffold first and run your package manager install command afterward in the project directory.
103
103
 
104
- ## Telemetry
105
-
106
- This CLI collects anonymous usage data to help improve the tool. The data collected includes:
107
-
108
- - Configuration options selected
109
- - CLI version
110
- - Node.js version
111
- - Platform (OS)
112
-
113
- **Telemetry is enabled by default in published versions** to help us understand usage patterns and improve the tool.
114
-
115
- ### Disabling Telemetry
116
-
117
- You can disable telemetry by setting the `BTS_TELEMETRY_DISABLED` environment variable:
118
-
119
- ```bash
120
- # Disable telemetry for a single run
121
- BTS_TELEMETRY_DISABLED=1 npx create-glitch-stack
122
-
123
- # Disable telemetry globally in your shell profile (.bashrc, .zshrc, etc.)
124
- export BTS_TELEMETRY_DISABLED=1
125
- ```
126
-
127
104
  ## Examples
128
105
 
129
106
  Create a project with default configuration:
@@ -162,16 +139,16 @@ Create a project with examples:
162
139
  npx create-glitch-stack --examples todo ai
163
140
  ```
164
141
 
165
- Create a project with Turso database setup:
142
+ Create a project with manual SQLite setup:
166
143
 
167
144
  ```bash
168
- npx create-glitch-stack --database sqlite --orm drizzle --db-setup turso
145
+ npx create-glitch-stack --database sqlite --orm drizzle --db-setup none
169
146
  ```
170
147
 
171
- Create a project with Supabase PostgreSQL setup:
148
+ Create a project with PostgreSQL and Better Auth:
172
149
 
173
150
  ```bash
174
- npx create-glitch-stack --database postgres --orm drizzle --db-setup supabase --auth better-auth
151
+ npx create-glitch-stack --database postgres --orm drizzle --db-setup none --auth better-auth
175
152
  ```
176
153
 
177
154
  Create a project with self-hosted fullstack backend:
@@ -207,13 +184,37 @@ npx create-glitch-stack --backend none --frontend next --addons none --examples
207
184
  Create a Cloudflare Workers project:
208
185
 
209
186
  ```bash
210
- npx create-glitch-stack --backend hono --runtime workers --database sqlite --orm drizzle --db-setup d1
187
+ npx create-glitch-stack --backend hono --runtime workers --database sqlite --orm drizzle --db-setup none
188
+ ```
189
+
190
+ Create a self-hosted fullstack project on Cloudflare:
191
+
192
+ ```bash
193
+ npx create-glitch-stack --backend self --frontend next --api trpc --database sqlite --orm drizzle --db-setup none --web-deploy cloudflare
194
+ ```
195
+
196
+ Create an Angular web app with a Hono backend:
197
+
198
+ ```bash
199
+ npx create-glitch-stack --frontend angular --backend hono --runtime bun --database postgres --orm drizzle
200
+ ```
201
+
202
+ Create a native iOS app with a backend:
203
+
204
+ ```bash
205
+ npx create-glitch-stack --frontend ios --backend hono --runtime bun --database postgres --orm drizzle
206
+ ```
207
+
208
+ Create a native Android app with a backend:
209
+
210
+ ```bash
211
+ npx create-glitch-stack --frontend android --backend hono --runtime bun --database postgres --orm drizzle
211
212
  ```
212
213
 
213
- Create a self-hosted fullstack project on Cloudflare with D1:
214
+ Create a NestJS backend project:
214
215
 
215
216
  ```bash
216
- npx create-glitch-stack --backend self --frontend next --api trpc --database sqlite --orm drizzle --db-setup d1 --web-deploy cloudflare
217
+ npx create-glitch-stack --frontend next --backend nest --runtime node --database postgres --orm drizzle
217
218
  ```
218
219
 
219
220
  Create a minimal API-only project:
@@ -231,13 +232,16 @@ npx create-glitch-stack --frontend none --backend hono --api trpc --database non
231
232
  - **ORM 'none'**: Can be used when you want to handle database operations manually or use a different ORM.
232
233
  - **Runtime 'none'**: Only available with backend `none` or backend `self`.
233
234
  - **Cloudflare Workers runtime**: Only compatible with Hono backend.
234
- - **Cloudflare D1 setup**: Requires `sqlite` and either `--runtime workers --server-deploy cloudflare` or `--backend self --web-deploy cloudflare`. For `backend self`, D1 is supported on `next`, `tanstack-start`, and `astro`.
235
+ - **Database setup**: Provision databases manually and use `--db-setup none`.
235
236
  - **Addons 'none'**: Skips all addons.
236
237
  - **Examples 'none'**: Skips all example implementations (todo, AI chat).
237
- - **Astro** frontend is only compatible with oRPC API layer
238
- - **PWA support** requires Next.js
239
- - **Tauri desktop app** requires TanStack Start, Next.js, or Astro
240
- - **Electrobun desktop app** requires TanStack Start, Next.js, or Astro. Desktop packaging uses static web assets, so SSR-first frontends need a static/export build before desktop builds will work.
238
+ - **Astro** frontend is only compatible with oRPC API layer.
239
+ - **Backend 'self'** only supports `next`, `tanstack-start`, and `astro`.
240
+ - **Clerk** is not compatible with `astro`, `angular`, `ios`, `android`, or the `nest` backend.
241
+ - **Cloudflare web deployment** is not compatible with `angular` yet.
242
+ - **PWA support** requires Next.js.
243
+ - **Tauri desktop app** requires a supported web frontend: TanStack Start, Next.js, Angular, or Astro.
244
+ - **Electrobun desktop app** requires a supported web frontend: TanStack Start, Next.js, Angular, or Astro. Desktop packaging uses static web assets, so SSR-first frontends need a static/export build before desktop builds will work.
241
245
  - **AI example** is not compatible with Astro.
242
246
 
243
247
  ## Project Structure
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- function _0x3e6e(_0x4c9f93,_0x553c6d){_0x4c9f93=_0x4c9f93-0x1da;var _0x28bd4d=_0x28bd();var _0x3e6ec8=_0x28bd4d[_0x4c9f93];return _0x3e6ec8;}function _0x28bd(){var _0x25613f=['5566800LjWojl','461136cvxYMB','opertyDe','scriptor','1386904hPVChp','enumerab','10hUjjKk','6514OoHtrr','default','operty','definePr','length','8535006fTKYBf','bind','function','32MJZgLS','Tag','1166292nOVDqS','7DEBrDk','hasOwnPr','3059945rAzQui','toString','getOwnPr','mes','object','prototyp'];_0x28bd=function(){return _0x25613f;};return _0x28bd();}var _0x440bef=_0x3e6e;(function(_0x258203,_0x4690a9){var _0x43eeac=_0x3e6e,_0x4bac67=_0x258203();while(!![]){try{var _0x32320a=parseInt(_0x43eeac(0x1ee))/0x1*(parseInt(_0x43eeac(0x1e6))/0x2)+-parseInt(_0x43eeac(0x1e0))/0x3+-parseInt(_0x43eeac(0x1f0))/0x4+parseInt(_0x43eeac(0x1f3))/0x5+-parseInt(_0x43eeac(0x1df))/0x6*(parseInt(_0x43eeac(0x1f1))/0x7)+parseInt(_0x43eeac(0x1e3))/0x8+parseInt(_0x43eeac(0x1eb))/0x9*(parseInt(_0x43eeac(0x1e5))/0xa);if(_0x32320a===_0x4690a9)break;else _0x4bac67['push'](_0x4bac67['shift']());}catch(_0x374aa){_0x4bac67['push'](_0x4bac67['shift']());}}}(_0x28bd,0x717b9));var e=Object[_0x440bef(0x1e9)+_0x440bef(0x1e8)],t=Object[_0x440bef(0x1db)+_0x440bef(0x1e1)+_0x440bef(0x1e2)],n=Object[_0x440bef(0x1db)+'opertyNa'+_0x440bef(0x1dc)],r=Object[_0x440bef(0x1de)+'e'][_0x440bef(0x1f2)+_0x440bef(0x1e8)],i=(_0x5ba1bd,_0x49674f)=>{var _0x11a479=_0x440bef;let _0x3207df={};for(var _0x49d0b8 in _0x5ba1bd)e(_0x3207df,_0x49d0b8,{'get':_0x5ba1bd[_0x49d0b8],'enumerable':!0x0});return _0x49674f||e(_0x3207df,Symbol[_0x11a479(0x1da)+_0x11a479(0x1ef)],{'value':'Module'}),_0x3207df;},a=(_0x973054,_0x3b7f0f,_0x4318af,_0x33d637)=>{var _0x1b0d48=_0x440bef;if(_0x3b7f0f&&typeof _0x3b7f0f==_0x1b0d48(0x1dd)||typeof _0x3b7f0f==_0x1b0d48(0x1ed)){for(var _0x14b2bc=n(_0x3b7f0f),_0x23f051=0x0,_0x5c3425=_0x14b2bc[_0x1b0d48(0x1ea)],_0xc4268a;_0x23f051<_0x5c3425;_0x23f051++)_0xc4268a=_0x14b2bc[_0x23f051],!r['call'](_0x973054,_0xc4268a)&&_0xc4268a!==_0x4318af&&e(_0x973054,_0xc4268a,{'get':(_0x2719c8=>_0x3b7f0f[_0x2719c8])[_0x1b0d48(0x1ec)](null,_0xc4268a),'enumerable':!(_0x33d637=t(_0x3b7f0f,_0xc4268a))||_0x33d637[_0x1b0d48(0x1e4)+'le']});}return _0x973054;},o=(_0x290635,_0x33cbe6,_0x2cf683)=>(a(_0x290635,_0x33cbe6,_0x440bef(0x1e7)),_0x2cf683&&a(_0x2cf683,_0x33cbe6,_0x440bef(0x1e7)));export{o as n,i as t};
2
+ var _0x42b3bc=_0x4aae;(function(_0x37ed31,_0x56e3af){var _0x2d5645=_0x4aae,_0xc4eeb3=_0x37ed31();while(!![]){try{var _0x53aea7=parseInt(_0x2d5645(0x1d4))/0x1*(-parseInt(_0x2d5645(0x1c3))/0x2)+-parseInt(_0x2d5645(0x1d6))/0x3*(parseInt(_0x2d5645(0x1c6))/0x4)+-parseInt(_0x2d5645(0x1c4))/0x5*(-parseInt(_0x2d5645(0x1c7))/0x6)+-parseInt(_0x2d5645(0x1ba))/0x7*(parseInt(_0x2d5645(0x1ca))/0x8)+parseInt(_0x2d5645(0x1ce))/0x9+-parseInt(_0x2d5645(0x1d2))/0xa*(-parseInt(_0x2d5645(0x1c8))/0xb)+parseInt(_0x2d5645(0x1d5))/0xc*(-parseInt(_0x2d5645(0x1cb))/0xd);if(_0x53aea7===_0x56e3af)break;else _0xc4eeb3['push'](_0xc4eeb3['shift']());}catch(_0x597dce){_0xc4eeb3['push'](_0xc4eeb3['shift']());}}}(_0x4735,0x782c5));var e=Object[_0x42b3bc(0x1c1)+_0x42b3bc(0x1d3)],t=Object[_0x42b3bc(0x1c5)+_0x42b3bc(0x1cc)+_0x42b3bc(0x1c9)],n=Object[_0x42b3bc(0x1c5)+'opertyNa'+_0x42b3bc(0x1cf)],r=Object[_0x42b3bc(0x1bb)+'e'][_0x42b3bc(0x1d1)+_0x42b3bc(0x1d3)],i=(_0x36f555,_0x50e1a6)=>{var _0x300420=_0x42b3bc;let _0x5092ab={};for(var _0x496afa in _0x36f555)e(_0x5092ab,_0x496afa,{'get':_0x36f555[_0x496afa],'enumerable':!0x0});return _0x50e1a6||e(_0x5092ab,Symbol[_0x300420(0x1c2)+_0x300420(0x1be)],{'value':_0x300420(0x1bf)}),_0x5092ab;},a=(_0x4acb6a,_0x2cb066,_0xadcfdd,_0x5326d0)=>{var _0x225489=_0x42b3bc;if(_0x2cb066&&typeof _0x2cb066==_0x225489(0x1d0)||typeof _0x2cb066==_0x225489(0x1c0)){for(var _0x9cf337=n(_0x2cb066),_0x2333b2=0x0,_0x169825=_0x9cf337['length'],_0x2de871;_0x2333b2<_0x169825;_0x2333b2++)_0x2de871=_0x9cf337[_0x2333b2],!r[_0x225489(0x1cd)](_0x4acb6a,_0x2de871)&&_0x2de871!==_0xadcfdd&&e(_0x4acb6a,_0x2de871,{'get':(_0x179fa5=>_0x2cb066[_0x179fa5])['bind'](null,_0x2de871),'enumerable':!(_0x5326d0=t(_0x2cb066,_0x2de871))||_0x5326d0[_0x225489(0x1bc)+'le']});}return _0x4acb6a;},o=(_0x45d75e,_0x1545df,_0x31e643)=>(a(_0x45d75e,_0x1545df,_0x42b3bc(0x1bd)),_0x31e643&&a(_0x31e643,_0x1545df,'default'));function _0x4aae(_0x3aa449,_0xb3640e){_0x3aa449=_0x3aa449-0x1ba;var _0x47357f=_0x4735();var _0x4aae6e=_0x47357f[_0x3aa449];return _0x4aae6e;}export{o as n,i as t};function _0x4735(){var _0xf106ac=['default','Tag','Module','function','definePr','toString','1226612VJqWvc','562865HwQmRJ','getOwnPr','1844fnDkGg','48jxtNus','6526333ZSBsah','scriptor','56yGKvZl','385151jZfxsU','opertyDe','call','6589503wJMSRQ','mes','object','hasOwnPr','10NWtHeS','operty','1LJGeSd','156yZlcCp','849rZkMDE','604905AWefBr','prototyp','enumerab'];_0x4735=function(){return _0xf106ac;};return _0x4735();}
package/dist/cli.mjs CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- const _0x53cc54=_0x1e61;(function(_0x37d888,_0x2232ef){const _0x3b1b5=_0x1e61,_0x5d788b=_0x37d888();while(!![]){try{const _0x56aabb=-parseInt(_0x3b1b5(0x1cf))/0x1*(parseInt(_0x3b1b5(0x217))/0x2)+parseInt(_0x3b1b5(0xcf))/0x3*(-parseInt(_0x3b1b5(0x133))/0x4)+parseInt(_0x3b1b5(0x10c))/0x5*(parseInt(_0x3b1b5(0x127))/0x6)+parseInt(_0x3b1b5(0xbd))/0x7*(parseInt(_0x3b1b5(0x224))/0x8)+-parseInt(_0x3b1b5(0x186))/0x9+parseInt(_0x3b1b5(0x124))/0xa*(parseInt(_0x3b1b5(0xb2))/0xb)+-parseInt(_0x3b1b5(0x176))/0xc*(-parseInt(_0x3b1b5(0x20d))/0xd);if(_0x56aabb===_0x2232ef)break;else _0x5d788b['push'](_0x5d788b['shift']());}catch(_0x15eeb8){_0x5d788b['push'](_0x5d788b['shift']());}}}(_0x9fc3,0x9024c));import{S as _0x14a0c9,c as _0x203ae6,f as _0x486365,i as _0x1c0466,l as _0x1fbefd,m as _0x1bb12d,s as _0xfa1cc7}from'./src-BCfsoTej.mjs';import _0x27f278 from'zod';import{McpServer as _0x2112f8}from'@modelcontextprotocol/sdk/server/mcp.js';import{StdioServerTransport as _0x33d181}from'@modelcontextprotocol/sdk/server/stdio.js';const u=_0x27f278[_0x53cc54(0x1f7)]({'ok':_0x27f278[_0x53cc54(0x20e)](),'data':_0x27f278['any']()[_0x53cc54(0x11a)](),'error':_0x27f278['string']()['optional']()}),d=_0x14a0c9[_0x53cc54(0x187)+_0x53cc54(0xf6)+'a'][_0x53cc54(0xe3)+'nd']({'projectName':_0x27f278[_0x53cc54(0x1d0)]()[_0x53cc54(0xed)]('Project\x20'+_0x53cc54(0x21f)+_0x53cc54(0x222)+'\x20path'),'frontend':_0x27f278['array'](_0x14a0c9[_0x53cc54(0xc1)+_0x53cc54(0xa6)])['describe'](_0x53cc54(0xb8)+_0x53cc54(0x1c4)+_0x53cc54(0x13e)+_0x53cc54(0x178)+'Do\x20not\x20u'+'se\x20nativ'+_0x53cc54(0xb5)+_0x53cc54(0x1e3)+_0x53cc54(0x121)+_0x53cc54(0x23b)),'backend':_0x14a0c9[_0x53cc54(0x15f)+_0x53cc54(0xa4)]['describe'](_0x53cc54(0xb8)+_0x53cc54(0x223)+_0x53cc54(0x238)+'rk'),'runtime':_0x14a0c9['RuntimeS'+'chema'][_0x53cc54(0xed)](_0x53cc54(0xb8)+_0x53cc54(0x15a)+_0x53cc54(0x8d)+'ment'),'database':_0x14a0c9[_0x53cc54(0x171)+_0x53cc54(0xa6)][_0x53cc54(0xed)](_0x53cc54(0xb8)+_0x53cc54(0x1f5)+'e\x20choice'),'orm':_0x14a0c9[_0x53cc54(0x9f)+'a'][_0x53cc54(0xed)]('Explicit'+'\x20ORM\x20cho'+_0x53cc54(0x163)),'api':_0x14a0c9[_0x53cc54(0x11b)+'a'][_0x53cc54(0xed)](_0x53cc54(0xb8)+_0x53cc54(0x17e)+'er'),'auth':_0x14a0c9[_0x53cc54(0x1aa)+'ma'][_0x53cc54(0xed)](_0x53cc54(0xb8)+_0x53cc54(0x99)+_0x53cc54(0x22c)+_0x53cc54(0x10e)),'payments':_0x14a0c9[_0x53cc54(0x125)+_0x53cc54(0xa6)][_0x53cc54(0xed)](_0x53cc54(0xb8)+'\x20payment'+_0x53cc54(0x15b)+'er'),'addons':_0x27f278[_0x53cc54(0x86)](_0x14a0c9['AddonsSc'+'hema'])['describe'](_0x53cc54(0xb8)+_0x53cc54(0xa5)+'ist.\x20Use'+_0x53cc54(0x199)+_0x53cc54(0x1d5)+'ns\x20are\x20n'+'eeded.'),'examples':_0x27f278['array'](_0x14a0c9['Examples'+_0x53cc54(0xa6)])[_0x53cc54(0xed)](_0x53cc54(0xb8)+_0x53cc54(0xe0)+_0x53cc54(0x1df)+'se\x20[]\x20wh'+_0x53cc54(0x1b5)+'amples\x20a'+_0x53cc54(0xf5)+'d.'),'git':_0x27f278['boolean']()[_0x53cc54(0xed)](_0x53cc54(0x1e4)+_0x53cc54(0x10b)+'alize\x20a\x20'+_0x53cc54(0x9e)+_0x53cc54(0x130)),'packageManager':_0x14a0c9['PackageM'+_0x53cc54(0xb0)+_0x53cc54(0x132)][_0x53cc54(0xed)](_0x53cc54(0xb8)+_0x53cc54(0x109)+'\x20manager'),'install':_0x27f278[_0x53cc54(0x20e)]()[_0x53cc54(0xed)](_0x53cc54(0x1e4)+'to\x20insta'+_0x53cc54(0x1c9)+'dencies'),'webDeploy':_0x14a0c9['WebDeplo'+_0x53cc54(0x154)][_0x53cc54(0xed)](_0x53cc54(0xb8)+_0x53cc54(0x226)+_0x53cc54(0x18c)+_0x53cc54(0x165)),'serverDeploy':_0x14a0c9[_0x53cc54(0xc5)+_0x53cc54(0x1c6)+'ma'][_0x53cc54(0xed)]('Explicit'+_0x53cc54(0x175)+_0x53cc54(0x90)+_0x53cc54(0x15e)+'e'),'addonOptions':_0x14a0c9['AddonOpt'+_0x53cc54(0x113)+'ma'][_0x53cc54(0x11a)](),'directoryConflict':_0x14a0c9[_0x53cc54(0x1b2)+'yConflic'+'tSchema'][_0x53cc54(0x11a)]()})[_0x53cc54(0xed)]('Explicit'+_0x53cc54(0xfb)+'Stack\x20pr'+_0x53cc54(0xa8)+_0x53cc54(0x143)+_0x53cc54(0xa0)+_0x53cc54(0x21a)+'\x20Provide'+_0x53cc54(0x92)+'l\x20stack\x20'+_0x53cc54(0x239)+'nstead\x20o'+'f\x20relyin'+_0x53cc54(0x168)+_0x53cc54(0x180)+_0x53cc54(0x1ac));function f(_0x17b8c3){const _0x5d4949=_0x53cc54;return{'content':[{'type':_0x5d4949(0x103),'text':JSON[_0x5d4949(0x15c)+'y'](_0x17b8c3,null,0x2)}],'structuredContent':{'ok':!0x0,'data':_0x17b8c3}};}function p(_0x279ad5){const _0x35cbf6=_0x53cc54;let _0x256afb=_0x279ad5 instanceof Error?_0x279ad5[_0x35cbf6(0x104)]:String(_0x279ad5);return{'content':[{'type':_0x35cbf6(0x103),'text':_0x256afb}],'structuredContent':{'ok':!0x1,'error':_0x256afb},'isError':!0x0};}function m(){return{'destructiveHint':!0x0,'idempotentHint':!0x1,'openWorldHint':!0x0};}function h(_0x4d89d2){const _0xd7f290=_0x53cc54;return[_0xd7f290(0x193)+_0xd7f290(0x105)+_0xd7f290(0x1e8)+_0xd7f290(0x22a)+_0xd7f290(0x1fb)+'false`.','Dependen'+_0xd7f290(0x128)+'llation\x20'+_0xd7f290(0x1f1)+_0xd7f290(0x1a7)+_0xd7f290(0xe1)+_0xd7f290(0x179)+_0xd7f290(0x18b)+'eouts\x20an'+'d\x20cause\x20'+_0xd7f290(0x157)+_0xd7f290(0x13d)+_0xd7f290(0x1f0)+'before\x20t'+_0xd7f290(0x19b)+_0xd7f290(0x182),_0xd7f290(0x1ee)+_0xd7f290(0x14b)+_0xd7f290(0x24a)+_0xd7f290(0x1f3)+_0xd7f290(0x20a)+_0x4d89d2+('\x20install'+'`\x20in\x20the'+_0xd7f290(0x87)+'ed\x20proje'+_0xd7f290(0x20f)+_0xd7f290(0xcb)+_0xd7f290(0x18d)+_0xd7f290(0x101))]['join']('\x20');}function _0x9fc3(){const _0xb4e2f0=['Plan\x20Gli','text','message','ect\x20crea','view\x20a\x20G','icit\x20\x27no','or\x20agent','\x20package','propriat','to\x20initi','2202065oedcga','yment\x20ta','provider','Read\x20MCP','AddInput','rence.','n,\x20scaff','ionsSche','ck,\x20stil','app\x20surf','ning\x20dep','dance','eate_pro','gs_plan_','optional','APISchem','ame\x20sile','always\x20r','\x20user\x20in','d\x20change','\x20run\x20dep','tyling\x20o','yConflic','lying\x20on','2199870ZETpRN','Payments','ck\x20confi','12ZScgPl','cy\x20insta','for\x20exis','fore\x20gs_','\x20intent.','\x20require','\x20depend\x20','projectN','tches\x20th','sitory','exit','hema','124BRZHnD','ploy','guration','s.\x20Use\x20t','nspecifi','ild\x20a\x20fu','fore\x20cre','ck\x20mcp\x0a\x0a','s.\x20This\x20','o\x20add\x20ad','ection\x20t','d\x20app\x20su','nd,\x20ios,','\x20if\x20the\x20','s,\x20or\x20pr','ed,\x20stop','nfigurat','te/add\x20r','\x20when\x20th','nd\x20let\x20t','s\x20match\x20','n\x20explic','n_projec','es\x20major','\x20the\x20pro','ll\x20expli','quires\x20t','orm','l\x20requir','ith\x20expl','e\x20gs_add','early\x20ma','art\x20of\x20t','ySchema','packageM','ting\x20pro','the\x20conn','If\x20the\x20u','ng\x20prefe','\x20runtime','s\x20provid','stringif','Create\x20a','nt\x20choic','BackendS','eds\x20and\x20','litch-st','no\x20examp','ice','Set\x20it\x20t','choice','tack\x20CLI','\x20when\x20no','g\x20on\x20inf','tent\x20is\x20','it\x20array','r\x20over\x20s','Glitch\x20S','ma\x20or\x20gs','nly\x20afte','tdio.\x0a\x0aT','partial\x20','Database','\x20an\x20expl','lan_proj','son.\x20Cal','\x20server\x20','7392VMefWA','ject\x20cre','rfaces.\x20','ient\x20req','ra\x20app\x20s','ntended\x20','llation\x20','create-g','\x20API\x20lay','lid\x20crea','erred\x20de','director','returns.','y\x20is\x20alw','log','\x20addons\x20','3431214lvqFyR','CreateIn','tch\x20Stac','ddons','ent\x20prog','uest\x20tim','loyment\x20','m\x20a\x20term','For\x20proj','error','\x20and\x20res','ting\x20fil','itch\x20Sta','MCP\x20proj','target\x20i','ain.','ve-uniwi','ions','ted.','\x20[]\x20when','se\x20many\x20','he\x20tool\x20','Inspect\x20','he\x20reque','Only\x20cal','\x20disk\x20us','ch\x20Stack','install\x20','succeeds','ovisioni','ull\x20stac','\x20to\x20all.','git\x20is\x20a','ed\x20commo','y.\x20Choos','s\x20always','AuthSche','or\x20styli','faults.','\x20and\x20inp','ect\x20or\x20g','run','ol\x20requi','\x20stack\x20c','Director','payments','nspect.\x20','en\x20no\x20ex','ack\x20Proj','l\x20gs_cre','efer\x20fal','tack_gui','s_create','r\x20the\x20pl','are\x20requ','oid.','Tool','st\x20is\x20am','er\x20with\x20','litch\x20St','his\x20comm','[]\x20when\x20','\x20fronten','mcp','ploySche','ack\x20mcp','l\x20send\x20t','ll\x20depen','backend','ested\x20op','as\x20add-j','aces\x20onl','For\x20MCP\x20','2tJDfmR','string','Create\x20G','cit\x20conf','lation\x20a','Do\x20not\x20c','\x20no\x20addo','\x20client,','timeouts','create_p','rred\x20def','nd\x20repro','and\x20is\x20i','I.\x20Call\x20','\x20succeed','e\x20callin','\x20list.\x20U','explains','the\x20user','plicit\x20f','nds\x20as\x20s','Whether\x20','ested.','nce\x20befo','\x20is\x20for\x20','tion\x20req','includes','e\x20uncert','to\x20be\x20la','his\x20befo','ser\x20want','Scaffold','e\x20Glitch','o\x20close\x20','can\x20exce','est\x20leav','st,\x20then','Do\x20not\x20i','\x20databas','c\x20guidan','object','lways\x20re','\x20Stack\x20M','cs\x20and\x20a','nstall:\x20','serverDe','a\x20config','y\x20after\x20','gs_creat','matches\x20','clients\x20','success','for\x20an\x20e','allest\x20v','hout\x20wri','oject\x20on','Call\x20gs_','ed.\x20For\x20','\x20Schemas','\x20run\x20`','than\x20a\x20p','ing\x20the\x20','13377KVTdSv','boolean','ct\x20direc','roject.\x20','onfig.','he\x20full\x20','request\x20','Failed\x20t','installs','\x20plan\x20cl','454132xQetaU','Add\x20Glit','view\x20add','MCP\x20use.','\x20and\x20pre','r\x20gs_pla','ack','res\x20an\x20e','name\x20or\x20','database','if\x20any\x20p','relative','\x20backend','3368OmOAql','ith\x20infe','\x20web\x20dep','nfer\x20ext','gs_get_s','webDeplo','uires\x20`i','ructing\x20','ication\x20','installa','register','full\x20sta','=false\x20a','er\x20deplo','from\x20a\x20t','frontend','\x20This\x20to','o\x20plan\x20a','ro,\x20nati','aults.','\x20framewo','config\x20i','ame\x20to\x20i','ptions.','rget\x20is\x20','\x20flow\x20as','s\x20the\x20sm','re\x20const','ents\x20can','itch-sta','Usage:\x20c','long-run','k\x20config','les\x20are\x20','where\x20ap','\x20with\x20a\x20','g\x20gs_pla','xplicit\x20','ject\x20fir','Start\x20th','k\x20Addons','this\x20onl','\x20Addons','ambiguou','hoosing\x20','\x20gs_plan','ayload\x20w','array','\x20generat',',\x20true,\x20','valid\x20Gl','Install\x20','\x20Use\x20thi','ne\x27,\x20[]\x20','\x20environ','es\x20an\x20ex','Validate','deployme','hoices\x20u','\x20the\x20ful','ust\x20be\x20a','l\x20explic','it\x20app\x20t','addons\x20i','\x27s\x20inten','isErr','\x20authent','s\x20requir','ser\x20requ','rammatic','re\x20plann','git\x20repo','ORMSchem','ion\x20for\x20','jects.','arately\x20','ed\x20by\x20MC','chema','\x20addon\x20l','Schema','argv','oject\x20co','n_addons','tion\x20sep','g\x20requir','quired.\x20','ame','ect\x20afte','\x20values\x20','anagerSc','ect','22KkroGe','install','xisting\x20','e\x20fronte','se\x20becau','\x20plan\x20va','Explicit','\x20JSON\x20AP','connect','\x20rules.','ject\x20wit','8554tYSRXP','tack\x20pro','tion,\x20bu','project','Frontend','set\x20or\x20n','ject.','l\x20this\x20o','ServerDe','argets\x20s','a\x20templa','explicit','ays\x20requ','api','tory\x20fro','s\x20reques','es\x20from\x20','s\x20and\x20th','100968AhqKmB','as\x20so\x20ag','ns\x20befor','re\x20gs_ad','ne\x27\x20when','addons','all\x20gs_p','executio','uch\x20as\x20n','all','urfaces,','requeste','\x20default','ng\x20the\x20s','\x20or\x20andr','unched\x20b','art,\x20ast','\x20example','n\x20MCP\x20cl','commands','safeExte','auth','te\x20name\x20','\x20around\x20','CP\x20serve','ating\x20a\x20','Get\x20Glit','\x20MCP\x20pro','ng\x20resou','lan_addo','describe','_project','\x20and\x20the','-specifi','session.','icit\x20arr','ddon\x20ins','ce\x20for\x20c','re\x20neede','putSchem','tion\x20wit','ing\x20when','endency\x20','e\x20explic','\x20Glitch\x20','nt\x20flow\x20','t\x20creati','project\x20','value','\x20the\x20CLI','inal.'];_0x9fc3=function(){return _0xb4e2f0;};return _0x9fc3();}function g(){const _0x537f86=_0x53cc54;return{'workflow':[_0x537f86(0x207)+'get_sche'+_0x537f86(0x16d)+'_get_sta'+'ck_guida'+_0x537f86(0x1e6)+_0x537f86(0x23f)+_0x537f86(0x22b)+_0x537f86(0x1fd)+_0x537f86(0x140)+_0x537f86(0x213)+'is\x20ambig'+'uous.',_0x537f86(0x18e)+_0x537f86(0x105)+_0x537f86(0xbf)+_0x537f86(0x138)+_0x537f86(0x14c)+_0x537f86(0x1d2)+'ig\x20befor'+_0x537f86(0x1de)+_0x537f86(0x248)+_0x537f86(0x149)+'t.','Always\x20c'+'all\x20gs_p'+_0x537f86(0x173)+'ect\x20befo'+'re\x20gs_cr'+_0x537f86(0x118)+_0x537f86(0xc3),_0x537f86(0x19e)+_0x537f86(0x1b7)+'ate_proj'+_0x537f86(0xae)+_0x537f86(0x1bb)+'an\x20succe'+_0x537f86(0x160)+_0x537f86(0x200)+_0x537f86(0x1e1)+_0x537f86(0x97)+'t.','Use\x20gs_p'+_0x537f86(0xec)+_0x537f86(0xd1)+_0x537f86(0x151)+'_addons\x20'+_0x537f86(0x129)+_0x537f86(0x156)+_0x537f86(0xa1)],'createContract':{'requiresExplicitFields':[_0x537f86(0x12e)+'ame',_0x537f86(0x233),_0x537f86(0x1ca),'runtime',_0x537f86(0x220),_0x537f86(0x14e),_0x537f86(0xca),_0x537f86(0xe4),_0x537f86(0x1b3),_0x537f86(0xd4),'examples','git',_0x537f86(0x155)+'anager',_0x537f86(0xb3),'webDeplo'+'y',_0x537f86(0x1fc)+_0x537f86(0x134)],'optionalFields':['addonOpt'+_0x537f86(0x197),_0x537f86(0x181)+_0x537f86(0x122)+'t'],'rule':_0x537f86(0x1d4)+_0x537f86(0xd5)+'lan_proj'+_0x537f86(0x1ae)+_0x537f86(0x1ba)+_0x537f86(0xee)+_0x537f86(0x247)+_0x537f86(0x170)+'payload.'+_0x537f86(0xea)+_0x537f86(0x177)+'ation\x20re'+_0x537f86(0x14d)+_0x537f86(0x212)+_0x537f86(0xc8)+_0x537f86(0x1b1)+_0x537f86(0x211)},'fieldNotes':{'frontend':'frontend'+_0x537f86(0x1e7)+_0x537f86(0x115)+_0x537f86(0x1cd)+_0x537f86(0x1a8)+_0x537f86(0xfa)+_0x537f86(0x95)+_0x537f86(0xc6)+_0x537f86(0xd7)+'ext,\x20tan'+'stack-st'+_0x537f86(0xdf)+_0x537f86(0x236)+_0x537f86(0x196)+_0x537f86(0x13f)+_0x537f86(0xdd)+_0x537f86(0x1bd),'addons':'addons\x20m'+_0x537f86(0x93)+_0x537f86(0x148)+_0x537f86(0x16a)+'.\x20Use\x20[]'+'\x20when\x20no'+_0x537f86(0x185)+_0x537f86(0x1bc)+_0x537f86(0x1e5),'examples':'examples'+'\x20must\x20be'+_0x537f86(0x172)+_0x537f86(0xf2)+'ay.\x20Use\x20'+_0x537f86(0x1c3)+_0x537f86(0x162)+_0x537f86(0x245)+_0x537f86(0xda)+'d.','webDeploy':_0x537f86(0x229)+_0x537f86(0x183)+_0x537f86(0xc9)+'ired.\x20Us'+'e\x20\x27none\x27'+_0x537f86(0x167)+_0x537f86(0x226)+_0x537f86(0x18c)+_0x537f86(0x194)+_0x537f86(0xcc)+_0x537f86(0x198),'serverDeploy':'serverDe'+'ploy\x20is\x20'+_0x537f86(0x11d)+'equired.'+'\x20Use\x20\x27no'+_0x537f86(0xd3)+'\x20no\x20serv'+_0x537f86(0x231)+_0x537f86(0x10d)+_0x537f86(0x23c)+'requeste'+'d.','packageManager':_0x537f86(0x155)+'anager\x20i'+_0x537f86(0x1a9)+_0x537f86(0x12c)+'d\x20becaus'+'e\x20instal'+_0x537f86(0x1d3)+_0x537f86(0x1da)+'ducible\x20'+_0x537f86(0xe2)+_0x537f86(0x12d)+'on\x20it.','install':_0x537f86(0x1a1)+'is\x20alway'+_0x537f86(0x9a)+_0x537f86(0x208)+_0x537f86(0x193)+_0x537f86(0x105)+'tion,\x20pr'+_0x537f86(0x1b8)+_0x537f86(0xb6)+_0x537f86(0x19a)+_0x537f86(0x201)+'enforce\x20'+'request\x20'+_0x537f86(0x1d7)+_0x537f86(0xe6)+_0x537f86(0x243)+_0x537f86(0x116)+_0x537f86(0xf9)+_0x537f86(0x215)+'.','git':_0x537f86(0x1a6)+_0x537f86(0x1f8)+_0x537f86(0xac)+_0x537f86(0x164)+'o\x20true\x20o'+'r\x20false\x20'+_0x537f86(0xc8)+'ly\x20inste'+'ad\x20of\x20re'+_0x537f86(0x123)+_0x537f86(0xdb)+'s.'},'ambiguityRules':[_0x537f86(0x158)+_0x537f86(0x9b)+_0x537f86(0x1f2)+_0x537f86(0x14a)+_0x537f86(0x1b1)+_0x537f86(0x91)+_0x537f86(0x137)+_0x537f86(0x142)+_0x537f86(0x190)+'olve\x20the'+'m\x20before'+'\x20calling'+_0x537f86(0x84)+'_project'+'.',_0x537f86(0x1f4)+_0x537f86(0x227)+_0x537f86(0x17a)+_0x537f86(0xd9)+'\x20addons,'+_0x537f86(0xe0)+_0x537f86(0x141)+_0x537f86(0x1a3)+'ng\x20choic'+_0x537f86(0xcd)+_0x537f86(0xc7)+_0x537f86(0xe5)+_0x537f86(0x1ab)+_0x537f86(0x159)+_0x537f86(0x111),_0x537f86(0x158)+_0x537f86(0x1ed)+_0x537f86(0x23e)+_0x537f86(0x204)+'alid\x20sta'+_0x537f86(0x114)+_0x537f86(0x1c8)+'he\x20full\x20'+'config\x20w'+_0x537f86(0x150)+_0x537f86(0x107)+_0x537f86(0x8c)+_0x537f86(0x88)+'or\x20false'+_0x537f86(0xaf)+_0x537f86(0x246)+_0x537f86(0x10a)+'e.',_0x537f86(0x1ce)+_0x537f86(0xd6)+_0x537f86(0x112)+'old\x20with'+'\x20install'+_0x537f86(0x230)+_0x537f86(0x146)+'he\x20user\x20'+_0x537f86(0x108)+_0x537f86(0x120)+_0x537f86(0xf9)+_0x537f86(0x22d)+_0x537f86(0xaa)+_0x537f86(0xa2)+_0x537f86(0x232)+'erminal\x20'+_0x537f86(0xf1)]};}function _(){const _0x5b7c72=_0x53cc54;let _0x57c119=new _0x2112f8({'name':_0x5b7c72(0x17d)+'litch-st'+_0x5b7c72(0x21d),'version':_0x1bb12d()},{'capabilities':{'logging':{}}});return _0x57c119[_0x5b7c72(0x22e)+_0x5b7c72(0x1be)](_0x5b7c72(0x228)+_0x5b7c72(0x1b9)+_0x5b7c72(0x117),{'title':'Get\x20Glit'+_0x5b7c72(0x1a0)+'\x20MCP\x20Gui'+'dance','description':_0x5b7c72(0x10f)+_0x5b7c72(0xf0)+_0x5b7c72(0x1f6)+_0x5b7c72(0xf4)+_0x5b7c72(0x83)+_0x5b7c72(0x89)+_0x5b7c72(0x192)+_0x5b7c72(0x126)+_0x5b7c72(0x135)+_0x5b7c72(0x136)+'his\x20befo'+_0x5b7c72(0x9d)+_0x5b7c72(0xf8)+_0x5b7c72(0x11e)+_0x5b7c72(0x169)+_0x5b7c72(0x82)+_0x5b7c72(0x13b)+_0x5b7c72(0x1e0)+_0x5b7c72(0x92)+_0x5b7c72(0x94)+'it\x20confi'+_0x5b7c72(0xab)+_0x5b7c72(0xa3)+'P\x20projec'+_0x5b7c72(0xfd)+'on,\x20plus'+'\x20importa'+'nt\x20field'+'\x20semanti'+_0x5b7c72(0x1fa)+'mbiguity'+_0x5b7c72(0xbb),'inputSchema':_0x27f278[_0x5b7c72(0x1f7)]({}),'outputSchema':u,'annotations':{'title':'Get\x20Glit'+_0x5b7c72(0x1a0)+'\x20MCP\x20Gui'+_0x5b7c72(0x117),'readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async()=>{try{return f(g());}catch(_0x21e823){return p(_0x21e823);}}),_0x57c119[_0x5b7c72(0x22e)+_0x5b7c72(0x1be)](_0x5b7c72(0x228)+_0x5b7c72(0xa4),{'title':_0x5b7c72(0xe9)+_0x5b7c72(0x1a0)+'\x20Schemas','description':_0x5b7c72(0x19c)+_0x5b7c72(0x16c)+_0x5b7c72(0x166)+_0x5b7c72(0x1ad)+'ut\x20schem'+_0x5b7c72(0xd0)+_0x5b7c72(0x240)+_0x5b7c72(0xb7)+_0x5b7c72(0x17f)+_0x5b7c72(0x144)+'equests.'+_0x5b7c72(0x8b)+'s\x20togeth'+_0x5b7c72(0x1c0)+_0x5b7c72(0x228)+_0x5b7c72(0x1b9)+'dance\x20be'+_0x5b7c72(0x139)+_0x5b7c72(0xe8)+_0x5b7c72(0xfe)+_0x5b7c72(0x221)+_0x5b7c72(0x153)+_0x5b7c72(0x19d)+_0x5b7c72(0x1bf)+'biguous.','inputSchema':_0x27f278['object']({'name':_0x1c0466[_0x5b7c72(0x11a)]()[_0x5b7c72(0xed)]('Schema\x20n'+_0x5b7c72(0x23a)+_0x5b7c72(0x1b4)+'Defaults'+_0x5b7c72(0x1a5))}),'outputSchema':u,'annotations':{'title':_0x5b7c72(0xe9)+'ch\x20Stack'+_0x5b7c72(0x209),'readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async({name:_0x42010c})=>{const _0x41a7e7=_0x5b7c72;try{return f(_0x486365(_0x42010c??_0x41a7e7(0xd8)));}catch(_0x1dde64){return p(_0x1dde64);}}),_0x57c119['register'+'Tool'](_0x5b7c72(0x119)+_0x5b7c72(0xc0),{'title':_0x5b7c72(0x102)+_0x5b7c72(0x188)+'k\x20Projec'+'t','description':_0x5b7c72(0x8f)+_0x5b7c72(0x21b)+_0x5b7c72(0x106)+_0x5b7c72(0x1c1)+'ack\x20proj'+_0x5b7c72(0x105)+_0x5b7c72(0xf7)+_0x5b7c72(0x205)+_0x5b7c72(0x191)+'es\x20or\x20pr'+_0x5b7c72(0x1a3)+_0x5b7c72(0xeb)+'rces.\x20Al'+'ways\x20use'+'\x20this\x20be'+_0x5b7c72(0x12a)+_0x5b7c72(0x1d8)+_0x5b7c72(0x210)+'This\x20too'+_0x5b7c72(0x14f)+_0x5b7c72(0x8e)+_0x5b7c72(0x1e2)+_0x5b7c72(0x1a4)+_0x5b7c72(0x244)+'\x20rather\x20'+_0x5b7c72(0x20b)+'artial\x20p'+_0x5b7c72(0x85)+_0x5b7c72(0x225)+_0x5b7c72(0x1d9)+_0x5b7c72(0x237),'inputSchema':d,'outputSchema':u,'annotations':{'title':_0x5b7c72(0x102)+'tch\x20Stac'+'k\x20Projec'+'t','readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async _0x53dd02=>{const _0x4f9e53=_0x5b7c72;try{let _0x1feae6=await _0x203ae6(_0x53dd02[_0x4f9e53(0x12e)+_0x4f9e53(0xad)],{..._0x53dd02,'dryRun':!0x0});return _0x1feae6[_0x4f9e53(0x98)]()?p(_0x1feae6[_0x4f9e53(0x18f)]):f(_0x53dd02[_0x4f9e53(0xb3)]?{..._0x1feae6['value'],'warnings':[h(_0x53dd02[_0x4f9e53(0x155)+'anager'])],'recommendedMcpExecution':{..._0x53dd02,'install':!0x1}}:_0x1feae6[_0x4f9e53(0xff)]);}catch(_0x3c32e4){return p(_0x3c32e4);}}),_0x57c119[_0x5b7c72(0x22e)+_0x5b7c72(0x1be)](_0x5b7c72(0x1ff)+'e_projec'+'t',{'title':_0x5b7c72(0x1d1)+_0x5b7c72(0x1c1)+_0x5b7c72(0x1b6)+_0x5b7c72(0xb1),'description':_0x5b7c72(0x15d)+_0x5b7c72(0xfb)+'Stack\x20pr'+_0x5b7c72(0x206)+_0x5b7c72(0x19f)+_0x5b7c72(0x20c)+'same\x20sil'+_0x5b7c72(0x18a)+_0x5b7c72(0x9c)+_0x5b7c72(0x23d)+_0x5b7c72(0x100)+_0x5b7c72(0xb9)+_0x5b7c72(0x1dc)+_0x5b7c72(0x80)+_0x5b7c72(0x1fe)+_0x5b7c72(0x119)+'project\x20'+_0x5b7c72(0x1a2)+_0x5b7c72(0xef)+_0x5b7c72(0x216)+_0x5b7c72(0x152)+_0x5b7c72(0x12f)+'e\x20user\x27s'+_0x5b7c72(0x12b)+_0x5b7c72(0x234)+_0x5b7c72(0x1b0)+_0x5b7c72(0x21e)+_0x5b7c72(0x249)+_0x5b7c72(0x22f)+_0x5b7c72(0x126)+'g.','inputSchema':d,'outputSchema':u,'annotations':{'title':_0x5b7c72(0x1d1)+_0x5b7c72(0x1c1)+_0x5b7c72(0x1b6)+'ect',...m()}},async _0x4671d9=>{const _0x349203=_0x5b7c72;try{if(_0x4671d9['install'])return p(h(_0x4671d9['packageM'+'anager']));let _0x4c6507=await _0x203ae6(_0x4671d9[_0x349203(0x12e)+_0x349203(0xad)],{..._0x4671d9});return _0x4c6507['isErr']()?p(_0x4c6507[_0x349203(0x18f)]):f(_0x4c6507[_0x349203(0xff)]);}catch(_0x2eed22){return p(_0x2eed22);}}),_0x57c119[_0x5b7c72(0x22e)+'Tool'](_0x5b7c72(0x119)+_0x5b7c72(0xd4),{'title':'Plan\x20Gli'+_0x5b7c72(0x188)+_0x5b7c72(0x24c),'description':_0x5b7c72(0x8f)+_0x5b7c72(0x21b)+_0x5b7c72(0x219)+'on\x20insta'+_0x5b7c72(0x17c)+_0x5b7c72(0x203)+_0x5b7c72(0xb4)+_0x5b7c72(0x16c)+_0x5b7c72(0xbe)+_0x5b7c72(0xbc)+_0x5b7c72(0x205)+'ting\x20fil'+'es.\x20Alwa'+'ys\x20use\x20t'+_0x5b7c72(0x1ec)+_0x5b7c72(0xd2)+'d_addons'+_0x5b7c72(0x145)+'e\x20addon\x20'+_0x5b7c72(0xc2)+_0x5b7c72(0x1cb)+'tions\x20ar'+_0x5b7c72(0x1ea)+_0x5b7c72(0x195),'inputSchema':_0x14a0c9[_0x5b7c72(0x110)+_0x5b7c72(0xa6)],'outputSchema':u,'annotations':{'title':_0x5b7c72(0x102)+_0x5b7c72(0x188)+_0x5b7c72(0x24c),'readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async _0x34e025=>{const _0x1e4c35=_0x5b7c72;try{let _0x3451b2=await _0xfa1cc7({..._0x34e025,'dryRun':!0x0});return _0x3451b2?.[_0x1e4c35(0x202)]?f(_0x3451b2):p(_0x3451b2?.['error']??_0x1e4c35(0x214)+_0x1e4c35(0x235)+_0x1e4c35(0xf3)+'tallatio'+'n');}catch(_0x40df7e){return p(_0x40df7e);}}),_0x57c119['register'+_0x5b7c72(0x1be)]('gs_add_a'+_0x5b7c72(0x189),{'title':_0x5b7c72(0x218)+_0x5b7c72(0x1a0)+'\x20Addons','description':_0x5b7c72(0x8a)+_0x5b7c72(0x96)+'nto\x20an\x20e'+'xisting\x20'+_0x5b7c72(0x16c)+_0x5b7c72(0xbe)+'ject\x20usi'+_0x5b7c72(0xdc)+_0x5b7c72(0x11c)+_0x5b7c72(0xfc)+_0x5b7c72(0x1cc)+_0x5b7c72(0x174)+_0x5b7c72(0xc4)+_0x5b7c72(0x16e)+_0x5b7c72(0x21c)+_0x5b7c72(0xa9)+_0x5b7c72(0x1dd)+_0x5b7c72(0xce)+'e\x20planne'+_0x5b7c72(0x11f)+_0x5b7c72(0x147)+_0x5b7c72(0x1e1)+_0x5b7c72(0x97)+'t.','inputSchema':_0x14a0c9['AddInput'+_0x5b7c72(0xa6)],'outputSchema':u,'annotations':{'title':_0x5b7c72(0x218)+_0x5b7c72(0x1a0)+_0x5b7c72(0x81),'destructiveHint':!0x0,'idempotentHint':!0x1,'openWorldHint':!0x0}},async _0x289b11=>{const _0x3b6a57=_0x5b7c72;try{let _0x3fd7cb=await _0xfa1cc7(_0x289b11);return _0x3fd7cb?.[_0x3b6a57(0x202)]?f(_0x3fd7cb):p(_0x3fd7cb?.[_0x3b6a57(0x18f)]??_0x3b6a57(0x214)+_0x3b6a57(0x13c)+'dons');}catch(_0x3e39d7){return p(_0x3e39d7);}}),_0x57c119;}async function v(){const _0x107b8c=_0x53cc54;let _0x1276b1=_(),_0x4f0978=new _0x33d181();await _0x1276b1[_0x107b8c(0xba)](_0x4f0978);}const [,,y,...b]=process[_0x53cc54(0xa7)];y===_0x53cc54(0x1c5)?((b['includes']('--help')||b[_0x53cc54(0x1e9)]('-h'))&&(console[_0x53cc54(0x184)](_0x53cc54(0x242)+'reate-gl'+_0x53cc54(0x241)+_0x53cc54(0x13a)+_0x53cc54(0x24b)+_0x53cc54(0x1ef)+_0x53cc54(0x1f9)+_0x53cc54(0xe7)+_0x53cc54(0x16b)+_0x53cc54(0x16f)+_0x53cc54(0x1c2)+_0x53cc54(0x1db)+_0x53cc54(0x17b)+_0x53cc54(0x1eb)+_0x53cc54(0xde)+'y\x20an\x20MCP'+_0x53cc54(0x1d6)+'\x20for\x20exa'+'mple:\x0a\x20\x20'+_0x53cc54(0x17d)+_0x53cc54(0x161)+_0x53cc54(0x1c7)),process[_0x53cc54(0x131)](0x0)),await v()):await _0x1fbefd()[_0x53cc54(0x1af)]();function _0x1e61(_0x6b6711,_0x3b9adb){_0x6b6711=_0x6b6711-0x80;const _0x9fc3a3=_0x9fc3();let _0x1e61e1=_0x9fc3a3[_0x6b6711];return _0x1e61e1;}export{};
2
+ const _0x572c04=_0x1253;function _0x277a(){const _0x2caf61=['runtime','se\x20[]\x20wh','Explicit','AuthSche','\x20values\x20','art\x20of\x20t','ed.\x20For\x20','This\x20too','mcp','ng\x20resou','l\x20stack\x20','s\x20always','requeste','nce\x20befo','\x20intent.','projectN','Set\x20it\x20t','Database','ject\x20usi','fore\x20gs_','nd\x20repro','ication\x20','g\x20on\x20inf','success','\x20and\x20pre','llation\x20','e_projec','serverDe','hout\x20wri','ed\x20proje','\x20the\x20ful','explains','\x27s\x20inten','r\x20over\x20s','r\x20the\x20pl','408380HuwljX','c\x20guidan','xisting\x20','ns\x20befor','ck_guida','dencies','ith\x20expl','Add\x20Glit','ection\x20t','packageM','ack\x20Proj','on\x20insta','relative','nt\x20flow\x20','artial\x20p','no\x20examp','uch\x20as\x20n','director','deployme','api','o\x20true\x20o','ORMSchem','\x20with\x20a\x20','\x20Use\x20\x27no','quires\x20t','Failed\x20t','includes','e\x20gs_add','\x20Use\x20thi','git','\x20flow\x20as','nstead\x20o','Create\x20G','clients\x20','rred\x20def','where\x20ap','Stack\x20pr','ck\x20confi','\x20to\x20all.','ig\x20befor','gs_add_a','n_projec','ject\x20wit','any','\x20ORM\x20cho','the\x20conn','git\x20repo','\x20run\x20`','_project','ient\x20req','ambiguou','mbiguity','ame\x20sile','206227tkHDdC','anager','ptions.','urfaces,','ation\x20re','g\x20gs_pla','ut\x20schem','he\x20reque','chema','tent\x20is\x20','dance','addonOpt','-specifi','[]\x20when\x20','1175910uPxrwq','ect\x20crea','\x20authent','\x20This\x20to','d\x20cause\x20','nspect.\x20','\x20environ','1118390tRAlSn','matches\x20','ng\x20the\x20s','stringif','st,\x20then','ad\x20of\x20re','Director','ays\x20requ','e\x20explic','gs_get_s','s\x20togeth','log','t\x20creati','config\x20i','optional','\x20importa','\x20addon\x20l','tion\x20sep','222vMoqJk','Create\x20a','nd\x20let\x20t','\x20calling','sitory','ting\x20pro','1508304OYuZpo','git\x20is\x20a','ve-uniwi','gs_creat','value','Frontend','s\x20provid','nly\x20afte','he\x20user\x20','tch\x20Stac','onfig.','the\x20user','s.\x20This\x20','\x20addons\x20','\x20and\x20inp','ust\x20be\x20a','ovisioni','rammatic','y\x20an\x20MCP','register','old\x20with','\x20rather\x20','tion,\x20bu','succeeds','ext,\x20tan','request\x20','Validate','yConflic','WebDeplo','false`.','ly\x20inste','oject\x20on','For\x20proj','\x20and\x20res','same\x20sil','Use\x20gs_p','AddonOpt','ng\x20prefe','ate_proj','AddInput','view\x20a\x20G','o\x20add\x20ad','e\x20Glitch','ed\x20by\x20MC','MCP\x20use.','ro,\x20nati','2811650duLbbT','ol\x20requi','a\x20config','oid.','Start\x20th','ted.','installs','describe','it\x20array','object','ne\x27,\x20[]\x20','re\x20gs_cr','tack\x20pro','ning\x20dep','\x20Schemas','as\x20add-j','timeouts','get_sche','\x20fronten','tion\x20wit','nt\x20choic','738912GIknSd','ng\x20choic','nfer\x20ext','can\x20exce','run','k\x20Addons','set\x20or\x20n','\x20framewo','name\x20or\x20','ested.','RuntimeS','rget\x20is\x20','m\x20before','on,\x20plus','\x20MCP\x20pro','guration','\x20for\x20exa','tack_gui','before\x20t','ways\x20use','te/add\x20r','Get\x20Glit','aults.','y\x20after\x20','Do\x20not\x20i','efer\x20fal','lan_addo','Payments','ed,\x20stop','eeded.','tSchema','ating\x20a\x20','For\x20MCP\x20','litch-st','k\x20Projec','P\x20projec','Tool','\x20the\x20CLI','ch\x20Stack','faults.','choice','\x20no\x20addo','equired.','jects.','returns.','executio','nt\x20field','e\x20user\x27s','ntended\x20','e\x20choice','n\x20explic','config\x20w','gs_plan_','dance\x20be','Only\x20cal','ys\x20use\x20t','PackageM','\x20Provide','app\x20surf','es\x20from\x20','\x20example','exit','d\x20app\x20su','to\x20insta','are\x20requ','session.','d\x20becaus','rence.','dons','or\x20false','long-run','\x20addons,','te\x20name\x20','icit\x20\x27no','ting\x20fil','ducible\x20','lid\x20crea','ddon\x20ins','BackendS','\x20user\x20in','s_create','Dependen','to\x20be\x20la','ck,\x20stil','his\x20befo','on\x20it.','litch\x20St','g\x20requir','aces\x20onl','ll\x20expli','ject\x20cre','\x20Glitch\x20','ser\x20requ','tion\x20req','view\x20add','uest\x20tim','propriat','ect\x20befo','Call\x20gs_','ce\x20for\x20c','examples','es.\x20Alwa','rces.\x20Al','y.\x20Choos','reate-gl','array','CreateIn','er\x20deplo','string','ploy','\x20when\x20no','AddonsSc','inal.','.\x20Use\x20[]','ra\x20app\x20s','\x20web\x20dep','auth','If\x20the\x20u','ect','enforce\x20','ns\x20are\x20n','e\x20callin','\x20Addons','text','ploySche','ild\x20a\x20fu','\x20generat','uires\x20`i','re\x20gs_ad','ith\x20infe','\x20the\x20pro','installa','safeExte','if\x20any\x20p','\x20plan\x20cl','ents\x20can','es\x20or\x20pr','error','all\x20gs_p','l\x20gs_cre','l\x20send\x20t','o\x20close\x20','putSchem','an\x20succe','Schema\x20n','MCP\x20proj','it\x20app\x20t','yment\x20ta','\x20an\x20expl','ionsSche','to\x20initi','8hJpACM','Whether\x20','ack\x20mcp','\x20Stack\x20M','from\x20a\x20t','itch-sta','\x20client,','es\x20an\x20ex','\x20depend\x20','eate_pro','argets\x20s','ySchema','APISchem','loyment\x20','\x20or\x20andr','frontend','ll\x20depen','hoosing\x20','ing\x20the\x20','biguous.','nfigurat','Inspect\x20','tion,\x20pr','addons','unched\x20b','\x20MCP\x20Gui','re\x20plann','provider','d_addons','ame\x20to\x20i','early\x20ma','l\x20explic','\x20semanti','=false\x20a','l\x20this\x20o','nspecifi','stack-st','nto\x20an\x20e','est\x20leav','is\x20alway','\x20require','for\x20an\x20e','\x20path','oject\x20co','project\x20','anagerSc','tory\x20fro','s\x20reques','\x20JSON\x20AP','ed\x20commo','he\x20tool\x20','rfaces.\x20','addons\x20i','ct\x20direc','Plan\x20Gli','addons\x20m','lation\x20a','\x20runtime','\x20plan\x20va','\x20must\x20be','Install\x20','\x20this\x20be','\x20API\x20lay','tions\x20ar','ne\x27\x20when','l\x20requir','\x20list.\x20U','is\x20ambig','m\x20a\x20term','ested\x20op','s,\x20or\x20pr','nstall:\x20','lan_proj','\x20and\x20the','boolean','ame','Examples','cit\x20conf','Glitch\x20S','Schema','er\x20with\x20','alid\x20sta','ent\x20prog','equests.','olve\x20the','les\x20are\x20','he\x20full\x20','argv','create-g','\x20gs_plan','ploy\x20is\x20','roject.\x20','join','en\x20no\x20ex','se\x20becau','res\x20an\x20e','for\x20exis','install','endency\x20','s\x20requir','ck\x20mcp\x0a\x0a','explicit','eds\x20and\x20','tches\x20th','72TUnObl','tallatio','ull\x20stac','it\x20confi'];_0x277a=function(){return _0x2caf61;};return _0x277a();}(function(_0x5c9368,_0x4d0a6b){const _0x3e7e6c=_0x1253,_0x53c204=_0x5c9368();while(!![]){try{const _0x1f4fe0=parseInt(_0x3e7e6c(0x1cb))/0x1+-parseInt(_0x3e7e6c(0x20e))/0x2+parseInt(_0x3e7e6c(0x22d))/0x3*(-parseInt(_0x3e7e6c(0x307))/0x4)+-parseInt(_0x3e7e6c(0x215))/0x5+parseInt(_0x3e7e6c(0x227))/0x6*(parseInt(_0x3e7e6c(0x200))/0x7)+parseInt(_0x3e7e6c(0x270))/0x8*(parseInt(_0x3e7e6c(0x36f))/0x9)+parseInt(_0x3e7e6c(0x25b))/0xa;if(_0x1f4fe0===_0x4d0a6b)break;else _0x53c204['push'](_0x53c204['shift']());}catch(_0x44951a){_0x53c204['push'](_0x53c204['shift']());}}}(_0x277a,0xab3a1));import{S as _0x5a89b4,c as _0x494bd0,f as _0x9e6b53,i as _0xc2313b,l as _0x37234c,m as _0x5821e5,s as _0x36f085}from'./src-B7nmg1ad.mjs';import _0x15a7a1 from'zod';import{McpServer as _0x5a40bf}from'@modelcontextprotocol/sdk/server/mcp.js';import{StdioServerTransport as _0xd2a756}from'@modelcontextprotocol/sdk/server/stdio.js';function _0x1253(_0x1f0db8,_0x1e0fb8){_0x1f0db8=_0x1f0db8-0x1c2;const _0x277ac1=_0x277a();let _0x125367=_0x277ac1[_0x1f0db8];return _0x125367;}const u=_0x15a7a1[_0x572c04(0x264)]({'ok':_0x15a7a1[_0x572c04(0x351)](),'data':_0x15a7a1[_0x572c04(0x1f6)]()[_0x572c04(0x223)](),'error':_0x15a7a1['string']()['optional']()}),d=_0x5a89b4[_0x572c04(0x2da)+_0x572c04(0x2fe)+'a'][_0x572c04(0x2f4)+'nd']({'projectName':_0x15a7a1[_0x572c04(0x2dc)]()[_0x572c04(0x262)]('Project\x20'+_0x572c04(0x278)+_0x572c04(0x1d7)+_0x572c04(0x331)),'frontend':_0x15a7a1[_0x572c04(0x2d9)](_0x5a89b4[_0x572c04(0x232)+'Schema'])[_0x572c04(0x262)]('Explicit'+_0x572c04(0x26d)+_0x572c04(0x2ae)+_0x572c04(0x33a)+'Do\x20not\x20u'+'se\x20nativ'+'e\x20fronte'+'nds\x20as\x20s'+'tyling\x20o'+_0x572c04(0x202)),'backend':_0x5a89b4[_0x572c04(0x2be)+_0x572c04(0x208)]['describe'](_0x572c04(0x375)+'\x20backend'+_0x572c04(0x277)+'rk'),'runtime':_0x5a89b4[_0x572c04(0x27a)+_0x572c04(0x208)][_0x572c04(0x262)](_0x572c04(0x375)+_0x572c04(0x340)+_0x572c04(0x214)+'ment'),'database':_0x5a89b4[_0x572c04(0x384)+_0x572c04(0x356)][_0x572c04(0x262)](_0x572c04(0x375)+'\x20databas'+_0x572c04(0x2a1)),'orm':_0x5a89b4[_0x572c04(0x1e0)+'a'][_0x572c04(0x262)]('Explicit'+_0x572c04(0x1f7)+'ice'),'api':_0x5a89b4[_0x572c04(0x313)+'a'][_0x572c04(0x262)]('Explicit'+_0x572c04(0x345)+'er'),'auth':_0x5a89b4[_0x572c04(0x376)+'ma'][_0x572c04(0x262)](_0x572c04(0x375)+_0x572c04(0x210)+_0x572c04(0x388)+_0x572c04(0x322)),'payments':_0x5a89b4[_0x572c04(0x28b)+_0x572c04(0x356)][_0x572c04(0x262)]('Explicit'+'\x20payment'+_0x572c04(0x233)+'er'),'addons':_0x15a7a1['array'](_0x5a89b4[_0x572c04(0x2df)+'hema'])[_0x572c04(0x262)]('Explicit'+_0x572c04(0x225)+'ist.\x20Use'+'\x20[]\x20when'+_0x572c04(0x299)+_0x572c04(0x2e8)+_0x572c04(0x28d)),'examples':_0x15a7a1[_0x572c04(0x2d9)](_0x5a89b4[_0x572c04(0x353)+_0x572c04(0x356)])[_0x572c04(0x262)](_0x572c04(0x375)+_0x572c04(0x2ac)+_0x572c04(0x349)+_0x572c04(0x374)+_0x572c04(0x364)+'amples\x20a'+'re\x20neede'+'d.'),'git':_0x15a7a1['boolean']()[_0x572c04(0x262)](_0x572c04(0x308)+_0x572c04(0x306)+'alize\x20a\x20'+_0x572c04(0x1f9)+_0x572c04(0x22b)),'packageManager':_0x5a89b4[_0x572c04(0x2a8)+_0x572c04(0x334)+'hema'][_0x572c04(0x262)]('Explicit'+'\x20package'+'\x20manager'),'install':_0x15a7a1[_0x572c04(0x351)]()[_0x572c04(0x262)]('Whether\x20'+_0x572c04(0x2af)+_0x572c04(0x317)+_0x572c04(0x1d0)),'webDeploy':_0x5a89b4[_0x572c04(0x249)+_0x572c04(0x312)][_0x572c04(0x262)](_0x572c04(0x375)+_0x572c04(0x2e3)+_0x572c04(0x314)+_0x572c04(0x298)),'serverDeploy':_0x5a89b4['ServerDe'+_0x572c04(0x2ec)+'ma'][_0x572c04(0x262)](_0x572c04(0x375)+'\x20server\x20'+_0x572c04(0x1dd)+_0x572c04(0x26f)+'e'),'addonOptions':_0x5a89b4[_0x572c04(0x251)+_0x572c04(0x305)+'ma']['optional'](),'directoryConflict':_0x5a89b4[_0x572c04(0x21b)+_0x572c04(0x248)+_0x572c04(0x28e)][_0x572c04(0x223)]()})[_0x572c04(0x262)](_0x572c04(0x375)+_0x572c04(0x2cb)+_0x572c04(0x1ef)+_0x572c04(0x332)+_0x572c04(0x31b)+'ion\x20for\x20'+_0x572c04(0x259)+_0x572c04(0x2a9)+_0x572c04(0x1c6)+_0x572c04(0x37d)+_0x572c04(0x222)+_0x572c04(0x1ea)+'f\x20relyin'+_0x572c04(0x389)+'erred\x20de'+_0x572c04(0x297));function f(_0x12349a){const _0x4b9208=_0x572c04;return{'content':[{'type':_0x4b9208(0x2eb),'text':JSON[_0x4b9208(0x218)+'y'](_0x12349a,null,0x2)}],'structuredContent':{'ok':!0x0,'data':_0x12349a}};}function p(_0x1c580c){const _0x42ea19=_0x572c04;let _0x890670=_0x1c580c instanceof Error?_0x1c580c['message']:String(_0x1c580c);return{'content':[{'type':_0x42ea19(0x2eb),'text':_0x890670}],'structuredContent':{'ok':!0x1,'error':_0x890670},'isError':!0x0};}function m(){return{'destructiveHint':!0x0,'idempotentHint':!0x1,'openWorldHint':!0x0};}function h(_0x417af8){const _0x4752cb=_0x572c04;return[_0x4752cb(0x301)+_0x4752cb(0x20f)+_0x4752cb(0x2cd)+_0x4752cb(0x2ef)+_0x4752cb(0x34e)+_0x4752cb(0x24a),_0x4752cb(0x2c1)+'cy\x20insta'+'llation\x20'+_0x4752cb(0x273)+_0x4752cb(0x338)+'n\x20MCP\x20cl'+_0x4752cb(0x1fc)+_0x4752cb(0x2cf)+'eouts\x20an'+_0x4752cb(0x212)+_0x4752cb(0x1f8)+_0x4752cb(0x1d3)+_0x4752cb(0x2fd)+_0x4752cb(0x282)+_0x4752cb(0x339)+_0x4752cb(0x29c),'Scaffold'+_0x4752cb(0x2f2)+'ject\x20fir'+_0x4752cb(0x219)+_0x4752cb(0x1fa)+_0x417af8+('\x20install'+'`\x20in\x20the'+_0x4752cb(0x2ee)+_0x4752cb(0x1c5)+_0x4752cb(0x33c)+_0x4752cb(0x335)+_0x4752cb(0x34b)+_0x4752cb(0x2e0))][_0x4752cb(0x363)]('\x20');}function g(){const _0x198e34=_0x572c04;return{'workflow':[_0x198e34(0x2d2)+_0x198e34(0x26c)+'ma\x20or\x20gs'+'_get_sta'+_0x198e34(0x1cf)+_0x198e34(0x380)+'re\x20const'+'ructing\x20'+_0x198e34(0x25d)+'\x20if\x20the\x20'+'request\x20'+_0x198e34(0x34a)+'uous.',_0x198e34(0x24d)+_0x198e34(0x20f)+_0x198e34(0x243)+_0x198e34(0x2ed)+_0x198e34(0x2c9)+_0x198e34(0x354)+_0x198e34(0x1f2)+_0x198e34(0x2e9)+_0x198e34(0x205)+_0x198e34(0x1f4)+'t.','Always\x20c'+_0x198e34(0x2fa)+'lan_proj'+_0x198e34(0x2d1)+_0x198e34(0x266)+_0x198e34(0x310)+'ject.',_0x198e34(0x2a6)+_0x198e34(0x2fb)+_0x198e34(0x253)+'ect\x20afte'+_0x198e34(0x1ca)+_0x198e34(0x2ff)+_0x198e34(0x36d)+_0x198e34(0x216)+_0x198e34(0x238)+_0x198e34(0x1c8)+'t.',_0x198e34(0x250)+_0x198e34(0x28a)+_0x198e34(0x1ce)+_0x198e34(0x1e6)+'_addons\x20'+_0x198e34(0x367)+_0x198e34(0x22c)+_0x198e34(0x29b)],'createContract':{'requiresExplicitFields':[_0x198e34(0x382)+'ame',_0x198e34(0x316),'backend',_0x198e34(0x373),'database','orm',_0x198e34(0x1de),_0x198e34(0x2e4),'payments',_0x198e34(0x31e),_0x198e34(0x2d4),_0x198e34(0x1e8),_0x198e34(0x1d4)+_0x198e34(0x201),_0x198e34(0x368),'webDeplo'+'y',_0x198e34(0x1c3)+_0x198e34(0x2dd)],'optionalFields':[_0x198e34(0x20b)+'ions',_0x198e34(0x1dc)+_0x198e34(0x248)+'t'],'rule':'Do\x20not\x20c'+_0x198e34(0x2fa)+_0x198e34(0x34f)+'ect\x20or\x20g'+_0x198e34(0x2c0)+_0x198e34(0x1fb)+_0x198e34(0x1e1)+'partial\x20'+'payload.'+_0x198e34(0x27e)+_0x198e34(0x2ca)+_0x198e34(0x204)+_0x198e34(0x1e3)+_0x198e34(0x35d)+'explicit'+'\x20stack\x20c'+_0x198e34(0x237)},'fieldNotes':{'frontend':_0x198e34(0x316)+'\x20is\x20for\x20'+_0x198e34(0x2aa)+_0x198e34(0x2c8)+_0x198e34(0x2d7)+_0x198e34(0x21d)+_0x198e34(0x302)+_0x198e34(0x311)+_0x198e34(0x1db)+_0x198e34(0x245)+_0x198e34(0x32b)+'art,\x20ast'+_0x198e34(0x25a)+_0x198e34(0x22f)+'nd,\x20ios,'+_0x198e34(0x315)+_0x198e34(0x25e),'addons':_0x198e34(0x33e)+_0x198e34(0x23c)+_0x198e34(0x2a2)+_0x198e34(0x263)+_0x198e34(0x2e1)+_0x198e34(0x2de)+_0x198e34(0x23a)+_0x198e34(0x2b0)+_0x198e34(0x279),'examples':_0x198e34(0x2d4)+_0x198e34(0x342)+_0x198e34(0x304)+'icit\x20arr'+'ay.\x20Use\x20'+_0x198e34(0x20d)+_0x198e34(0x1da)+_0x198e34(0x35c)+_0x198e34(0x37f)+'d.','webDeploy':'webDeplo'+'y\x20is\x20alw'+_0x198e34(0x21c)+'ired.\x20Us'+'e\x20\x27none\x27'+_0x198e34(0x2de)+'\x20web\x20dep'+_0x198e34(0x314)+'target\x20i'+_0x198e34(0x336)+_0x198e34(0x260),'serverDeploy':_0x198e34(0x1c3)+_0x198e34(0x361)+'always\x20r'+_0x198e34(0x29a)+_0x198e34(0x1e2)+_0x198e34(0x347)+'\x20no\x20serv'+_0x198e34(0x2db)+_0x198e34(0x303)+_0x198e34(0x27b)+'requeste'+'d.','packageManager':_0x198e34(0x1d4)+'anager\x20i'+_0x198e34(0x37e)+_0x198e34(0x32f)+_0x198e34(0x2b2)+'e\x20instal'+_0x198e34(0x33f)+_0x198e34(0x387)+_0x198e34(0x2bb)+'commands'+_0x198e34(0x30f)+_0x198e34(0x2c5),'install':'install\x20'+_0x198e34(0x32e)+_0x198e34(0x36a)+_0x198e34(0x379)+_0x198e34(0x301)+_0x198e34(0x20f)+_0x198e34(0x31d)+_0x198e34(0x289)+_0x198e34(0x365)+'se\x20many\x20'+_0x198e34(0x1ec)+_0x198e34(0x2e7)+_0x198e34(0x246)+_0x198e34(0x26b)+'\x20around\x20'+_0x198e34(0x2b6)+_0x198e34(0x268)+_0x198e34(0x369)+_0x198e34(0x261)+'.','git':_0x198e34(0x22e)+'lways\x20re'+'quired.\x20'+_0x198e34(0x383)+_0x198e34(0x1df)+'r\x20false\x20'+_0x198e34(0x36c)+_0x198e34(0x24b)+_0x198e34(0x21a)+'lying\x20on'+'\x20default'+'s.'},'ambiguityRules':[_0x198e34(0x2e5)+_0x198e34(0x2cc)+_0x198e34(0x32d)+'es\x20major'+'\x20stack\x20c'+'hoices\x20u'+_0x198e34(0x32a)+_0x198e34(0x28c)+_0x198e34(0x24e)+_0x198e34(0x35b)+_0x198e34(0x27c)+_0x198e34(0x22a)+_0x198e34(0x360)+_0x198e34(0x1fb)+'.',_0x198e34(0x288)+_0x198e34(0x272)+_0x198e34(0x2e2)+_0x198e34(0x203)+_0x198e34(0x2b7)+_0x198e34(0x2ac)+_0x198e34(0x34d)+_0x198e34(0x23d)+_0x198e34(0x271)+_0x198e34(0x2ab)+'a\x20templa'+_0x198e34(0x2b8)+'or\x20styli'+_0x198e34(0x252)+_0x198e34(0x2b3),'If\x20the\x20u'+'ser\x20want'+'s\x20the\x20sm'+'allest\x20v'+_0x198e34(0x358)+_0x198e34(0x2c3)+_0x198e34(0x2fc)+_0x198e34(0x35d)+_0x198e34(0x2a3)+_0x198e34(0x1d1)+_0x198e34(0x2b9)+_0x198e34(0x265)+',\x20true,\x20'+_0x198e34(0x2b5)+_0x198e34(0x377)+_0x198e34(0x1ee)+_0x198e34(0x2d0)+'e.',_0x198e34(0x290)+_0x198e34(0x29d)+'n,\x20scaff'+_0x198e34(0x241)+'\x20install'+_0x198e34(0x328)+_0x198e34(0x229)+_0x198e34(0x235)+'or\x20agent'+'\x20run\x20dep'+_0x198e34(0x369)+_0x198e34(0x2f3)+_0x198e34(0x226)+'arately\x20'+_0x198e34(0x30b)+'erminal\x20'+_0x198e34(0x2b1)]};}function _(){const _0x131e29=_0x572c04;let _0x5f162e=new _0x5a40bf({'name':_0x131e29(0x35f)+_0x131e29(0x291)+'ack','version':_0x5821e5()},{'capabilities':{'logging':{}}});return _0x5f162e[_0x131e29(0x240)+_0x131e29(0x294)](_0x131e29(0x21e)+_0x131e29(0x281)+_0x131e29(0x20a),{'title':_0x131e29(0x285)+_0x131e29(0x296)+_0x131e29(0x320)+_0x131e29(0x20a),'description':'Read\x20MCP'+_0x131e29(0x20c)+_0x131e29(0x1cc)+_0x131e29(0x2d3)+_0x131e29(0x318)+'valid\x20Gl'+'itch\x20Sta'+_0x131e29(0x1f0)+_0x131e29(0x27f)+'s.\x20Use\x20t'+_0x131e29(0x2c4)+_0x131e29(0x321)+'ing\x20when'+_0x131e29(0x2bf)+_0x131e29(0x209)+_0x131e29(0x1fd)+_0x131e29(0x239)+_0x131e29(0x1c7)+_0x131e29(0x1c6)+_0x131e29(0x326)+_0x131e29(0x372)+_0x131e29(0x2c7)+_0x131e29(0x258)+_0x131e29(0x293)+_0x131e29(0x221)+_0x131e29(0x27d)+_0x131e29(0x224)+_0x131e29(0x29e)+_0x131e29(0x327)+'cs\x20and\x20a'+_0x131e29(0x1fe)+'\x20rules.','inputSchema':_0x15a7a1[_0x131e29(0x264)]({}),'outputSchema':u,'annotations':{'title':_0x131e29(0x285)+_0x131e29(0x296)+_0x131e29(0x320)+'dance','readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async()=>{try{return f(g());}catch(_0x27edd8){return p(_0x27edd8);}}),_0x5f162e[_0x131e29(0x240)+_0x131e29(0x294)]('gs_get_s'+_0x131e29(0x208),{'title':_0x131e29(0x285)+_0x131e29(0x296)+_0x131e29(0x269),'description':_0x131e29(0x31c)+_0x131e29(0x355)+'tack\x20CLI'+_0x131e29(0x23b)+_0x131e29(0x206)+'as\x20so\x20ag'+_0x131e29(0x2f7)+_0x131e29(0x341)+_0x131e29(0x2bc)+_0x131e29(0x284)+_0x131e29(0x35a)+_0x131e29(0x1e7)+_0x131e29(0x21f)+_0x131e29(0x357)+_0x131e29(0x21e)+_0x131e29(0x281)+_0x131e29(0x2a5)+'fore\x20cre'+_0x131e29(0x28f)+_0x131e29(0x333)+_0x131e29(0x2f5)+_0x131e29(0x378)+_0x131e29(0x207)+'st\x20is\x20am'+_0x131e29(0x31a),'inputSchema':_0x15a7a1[_0x131e29(0x264)]({'name':_0xc2313b[_0x131e29(0x223)]()['describe'](_0x131e29(0x300)+_0x131e29(0x324)+_0x131e29(0x213)+'Defaults'+_0x131e29(0x1f1))}),'outputSchema':u,'annotations':{'title':_0x131e29(0x285)+_0x131e29(0x296)+_0x131e29(0x269),'readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async({name:_0x1a44fa})=>{try{return f(_0x9e6b53(_0x1a44fa??'all'));}catch(_0x1f33e0){return p(_0x1f33e0);}}),_0x5f162e[_0x131e29(0x240)+_0x131e29(0x294)](_0x131e29(0x2a4)+'project',{'title':_0x131e29(0x33d)+'tch\x20Stac'+'k\x20Projec'+'t','description':_0x131e29(0x247)+_0x131e29(0x38b)+_0x131e29(0x255)+_0x131e29(0x2c6)+'ack\x20proj'+_0x131e29(0x20f)+_0x131e29(0x26e)+_0x131e29(0x1c4)+_0x131e29(0x2ba)+_0x131e29(0x2f8)+_0x131e29(0x23d)+_0x131e29(0x37c)+_0x131e29(0x2d6)+_0x131e29(0x283)+_0x131e29(0x344)+_0x131e29(0x386)+'create_p'+_0x131e29(0x362)+_0x131e29(0x37a)+_0x131e29(0x348)+_0x131e29(0x30e)+'plicit\x20f'+_0x131e29(0x371)+'k\x20config'+_0x131e29(0x242)+'than\x20a\x20p'+_0x131e29(0x1d9)+'ayload\x20w'+_0x131e29(0x2f1)+_0x131e29(0x1ed)+_0x131e29(0x286),'inputSchema':d,'outputSchema':u,'annotations':{'title':'Plan\x20Gli'+_0x131e29(0x236)+_0x131e29(0x292)+'t','readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async _0x2fd8ae=>{const _0x24de3=_0x131e29;try{let _0x5aca78=await _0x494bd0(_0x2fd8ae[_0x24de3(0x382)+_0x24de3(0x352)],{..._0x2fd8ae,'dryRun':!0x0});return _0x5aca78['isErr']()?p(_0x5aca78[_0x24de3(0x2f9)]):f(_0x2fd8ae[_0x24de3(0x368)]?{..._0x5aca78[_0x24de3(0x231)],'warnings':[h(_0x2fd8ae[_0x24de3(0x1d4)+'anager'])],'recommendedMcpExecution':{..._0x2fd8ae,'install':!0x1}}:_0x5aca78[_0x24de3(0x231)]);}catch(_0x2dd8f8){return p(_0x2dd8f8);}}),_0x5f162e[_0x131e29(0x240)+_0x131e29(0x294)](_0x131e29(0x230)+_0x131e29(0x1c2)+'t',{'title':'Create\x20G'+_0x131e29(0x2c6)+_0x131e29(0x1d5)+_0x131e29(0x2e6),'description':_0x131e29(0x228)+_0x131e29(0x2cb)+_0x131e29(0x1ef)+_0x131e29(0x24c)+'\x20disk\x20us'+_0x131e29(0x319)+_0x131e29(0x24f)+_0x131e29(0x359)+_0x131e29(0x23e)+_0x131e29(0x1e9)+_0x131e29(0x295)+_0x131e29(0x337)+'I.\x20Call\x20'+'this\x20onl'+_0x131e29(0x287)+_0x131e29(0x2a4)+_0x131e29(0x333)+_0x131e29(0x244)+_0x131e29(0x350)+_0x131e29(0x2f6)+_0x131e29(0x325)+_0x131e29(0x36e)+_0x131e29(0x29f)+_0x131e29(0x381)+_0x131e29(0x211)+_0x131e29(0x25c)+_0x131e29(0x366)+'xplicit\x20'+'full\x20sta'+'ck\x20confi'+'g.','inputSchema':d,'outputSchema':u,'annotations':{'title':_0x131e29(0x1eb)+_0x131e29(0x2c6)+_0x131e29(0x1d5)+_0x131e29(0x2e6),...m()}},async _0x3e4b33=>{const _0xcc557e=_0x131e29;try{if(_0x3e4b33[_0xcc557e(0x368)])return p(h(_0x3e4b33[_0xcc557e(0x1d4)+_0xcc557e(0x201)]));let _0x386566=await _0x494bd0(_0x3e4b33[_0xcc557e(0x382)+_0xcc557e(0x352)],{..._0x3e4b33});return _0x386566['isErr']()?p(_0x386566[_0xcc557e(0x2f9)]):f(_0x386566['value']);}catch(_0x314b76){return p(_0x314b76);}}),_0x5f162e[_0x131e29(0x240)+_0x131e29(0x294)](_0x131e29(0x2a4)+'addons',{'title':_0x131e29(0x33d)+'tch\x20Stac'+_0x131e29(0x275),'description':_0x131e29(0x247)+_0x131e29(0x38b)+_0x131e29(0x2ce)+_0x131e29(0x1d6)+_0x131e29(0x38c)+_0x131e29(0x330)+_0x131e29(0x1cd)+_0x131e29(0x355)+'tack\x20pro'+_0x131e29(0x1f5)+_0x131e29(0x1c4)+_0x131e29(0x2ba)+_0x131e29(0x2d5)+_0x131e29(0x2a7)+'his\x20befo'+_0x131e29(0x2f0)+_0x131e29(0x323)+'\x20when\x20th'+'e\x20addon\x20'+_0x131e29(0x276)+_0x131e29(0x34c)+_0x131e29(0x346)+'e\x20uncert'+'ain.','inputSchema':_0x5a89b4[_0x131e29(0x254)+_0x131e29(0x356)],'outputSchema':u,'annotations':{'title':_0x131e29(0x33d)+_0x131e29(0x236)+_0x131e29(0x275),'readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async _0x1c56fb=>{const _0xd6a19c=_0x131e29;try{let _0x526e16=await _0x36f085({..._0x1c56fb,'dryRun':!0x0});return _0x526e16?.[_0xd6a19c(0x38a)]?f(_0x526e16):p(_0x526e16?.[_0xd6a19c(0x2f9)]??'Failed\x20t'+'o\x20plan\x20a'+_0xd6a19c(0x2bd)+_0xd6a19c(0x370)+'n');}catch(_0x5bdac5){return p(_0x5bdac5);}}),_0x5f162e[_0x131e29(0x240)+_0x131e29(0x294)](_0x131e29(0x1f3)+'ddons',{'title':_0x131e29(0x1d2)+_0x131e29(0x296)+_0x131e29(0x2ea),'description':_0x131e29(0x343)+_0x131e29(0x33b)+_0x131e29(0x32c)+_0x131e29(0x1cd)+_0x131e29(0x355)+_0x131e29(0x267)+_0x131e29(0x385)+_0x131e29(0x217)+_0x131e29(0x1ff)+_0x131e29(0x1d8)+_0x131e29(0x26a)+'son.\x20Cal'+_0x131e29(0x329)+_0x131e29(0x234)+'r\x20gs_pla'+'n_addons'+'\x20succeed'+'s\x20and\x20th'+'e\x20planne'+'d\x20change'+'s\x20match\x20'+'the\x20user'+_0x131e29(0x1c8)+'t.','inputSchema':_0x5a89b4[_0x131e29(0x254)+'Schema'],'outputSchema':u,'annotations':{'title':_0x131e29(0x1d2)+_0x131e29(0x296)+_0x131e29(0x2ea),'destructiveHint':!0x0,'idempotentHint':!0x1,'openWorldHint':!0x0}},async _0x5b7a5b=>{const _0x55d417=_0x131e29;try{let _0x433923=await _0x36f085(_0x5b7a5b);return _0x433923?.[_0x55d417(0x38a)]?f(_0x433923):p(_0x433923?.[_0x55d417(0x2f9)]??_0x55d417(0x1e4)+_0x55d417(0x256)+_0x55d417(0x2b4));}catch(_0x5da6a3){return p(_0x5da6a3);}}),_0x5f162e;}async function v(){let _0x4befdb=_(),_0x15ad77=new _0xd2a756();await _0x4befdb['connect'](_0x15ad77);}const [,,y,...b]=process[_0x572c04(0x35e)];y===_0x572c04(0x37b)?((b[_0x572c04(0x1e5)]('--help')||b['includes']('-h'))&&(console[_0x572c04(0x220)]('Usage:\x20c'+_0x572c04(0x2d8)+_0x572c04(0x30c)+_0x572c04(0x36b)+_0x572c04(0x25f)+_0x572c04(0x257)+_0x572c04(0x30a)+'CP\x20serve'+_0x572c04(0x1c9)+'tdio.\x0a\x0aT'+'his\x20comm'+'and\x20is\x20i'+_0x572c04(0x2a0)+_0x572c04(0x2c2)+_0x572c04(0x31f)+_0x572c04(0x23f)+_0x572c04(0x30d)+_0x572c04(0x280)+'mple:\x0a\x20\x20'+_0x572c04(0x35f)+'litch-st'+_0x572c04(0x309)),process[_0x572c04(0x2ad)](0x0)),await v()):await _0x37234c()[_0x572c04(0x274)]();export{};
package/dist/index.d.mts CHANGED
@@ -210,7 +210,7 @@ declare const router: _trpc_server0.TRPCBuiltRouter<{
210
210
  } | undefined;
211
211
  mcp?: {
212
212
  scope?: "project" | "global" | undefined;
213
- servers?: ("better-auth" | "clerk" | "polar" | "glitch-stack" | "context7" | "cloudflare-docs" | "shadcn" | "next-devtools" | "astro-docs" | "planetscale" | "neon" | "supabase" | "expo")[] | undefined;
213
+ servers?: ("better-auth" | "clerk" | "polar" | "glitch-stack" | "context7" | "cloudflare-docs" | "shadcn" | "next-devtools" | "astro-docs" | "planetscale" | "expo")[] | undefined;
214
214
  agents?: ("antigravity" | "cline" | "cline-cli" | "cursor" | "claude-code" | "codex" | "opencode" | "gemini-cli" | "github-copilot-cli" | "mcporter" | "vscode" | "zed" | "claude-desktop" | "goose")[] | undefined;
215
215
  } | undefined;
216
216
  skills?: {
@@ -283,7 +283,7 @@ declare const router: _trpc_server0.TRPCBuiltRouter<{
283
283
  } | undefined;
284
284
  mcp?: {
285
285
  scope?: "project" | "global" | undefined;
286
- servers?: ("better-auth" | "clerk" | "polar" | "glitch-stack" | "context7" | "cloudflare-docs" | "shadcn" | "next-devtools" | "astro-docs" | "planetscale" | "neon" | "supabase" | "expo")[] | undefined;
286
+ servers?: ("better-auth" | "clerk" | "polar" | "glitch-stack" | "context7" | "cloudflare-docs" | "shadcn" | "next-devtools" | "astro-docs" | "planetscale" | "expo")[] | undefined;
287
287
  agents?: ("antigravity" | "cline" | "cline-cli" | "cursor" | "claude-code" | "codex" | "opencode" | "gemini-cli" | "github-copilot-cli" | "mcporter" | "vscode" | "zed" | "claude-desktop" | "goose")[] | undefined;
288
288
  } | undefined;
289
289
  skills?: {
package/dist/index.mjs CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- function _0x3342(){var _0x21dd95=['90024ubeSzt','194TbNZkc','6629520NtxyPd','516537lksDPT','35395YgwaHU','2307249CiNzWf','432ZjuwJi','5982GjqNqR','498zLLyWm','2318740hQFyhf'];_0x3342=function(){return _0x21dd95;};return _0x3342();}(function(_0x4538f5,_0x3c90e9){var _0x50a348=_0x27b3,_0x532495=_0x4538f5();while(!![]){try{var _0x1359a5=parseInt(_0x50a348(0x7d))/0x1*(-parseInt(_0x50a348(0x83))/0x2)+parseInt(_0x50a348(0x81))/0x3+-parseInt(_0x50a348(0x7b))/0x4+-parseInt(_0x50a348(0x80))/0x5*(-parseInt(_0x50a348(0x84))/0x6)+parseInt(_0x50a348(0x7f))/0x7+parseInt(_0x50a348(0x7c))/0x8*(-parseInt(_0x50a348(0x82))/0x9)+parseInt(_0x50a348(0x7e))/0xa;if(_0x1359a5===_0x3c90e9)break;else _0x532495['push'](_0x532495['shift']());}catch(_0x2f9155){_0x532495['push'](_0x532495['shift']());}}}(_0x3342,0x60054));function _0x27b3(_0x307ba0,_0x3a691d){_0x307ba0=_0x307ba0-0x7b;var _0x334250=_0x3342();var _0x27b315=_0x334250[_0x307ba0];return _0x27b315;}import{_ as _0x10534f,a as _0x559c85,b as _0x151c98,c as _0x4e48ec,d as _0x3352b7,f as _0x134f81,g as _0x281d82,h as _0x6d65f9,i as _0x588aac,l,n as _0x4ee893,o as _0x3c0887,p as _0x478c47,r as _0xcdb124,s as _0x3006a5,t as _0xab4a66,u as _0x321c99,v as _0x86f814,x as _0x2d800f,y}from'./src-BCfsoTej.mjs';export{_0x6d65f9 as CLIError,_0x281d82 as CompatibilityError,_0x10534f as DatabaseSetupError,_0x86f814 as DirectoryConflictError,_0xab4a66 as EMBEDDED_TEMPLATES,_0x4ee893 as GeneratorError,y as ProjectCreationError,_0xcdb124 as Result,_0x588aac as SchemaNameSchema,_0x559c85 as TEMPLATE_COUNT,_0x151c98 as UserCancelledError,_0x2d800f as ValidationError,_0x3c0887 as VirtualFileSystem,_0x3006a5 as add,_0x4e48ec as create,l as createGsCli,_0x321c99 as createVirtual,_0x3352b7 as generate,_0x134f81 as getSchemaResult,_0x478c47 as router};
2
+ (function(_0x1f4e21,_0x57e830){var _0x3acf60=_0x4db0,_0x130749=_0x1f4e21();while(!![]){try{var _0x44630e=parseInt(_0x3acf60(0x1f2))/0x1*(parseInt(_0x3acf60(0x1ec))/0x2)+-parseInt(_0x3acf60(0x1ed))/0x3*(-parseInt(_0x3acf60(0x1f3))/0x4)+parseInt(_0x3acf60(0x1e9))/0x5*(-parseInt(_0x3acf60(0x1eb))/0x6)+parseInt(_0x3acf60(0x1e8))/0x7+parseInt(_0x3acf60(0x1ef))/0x8*(parseInt(_0x3acf60(0x1f1))/0x9)+-parseInt(_0x3acf60(0x1e7))/0xa*(parseInt(_0x3acf60(0x1f0))/0xb)+-parseInt(_0x3acf60(0x1ee))/0xc*(parseInt(_0x3acf60(0x1ea))/0xd);if(_0x44630e===_0x57e830)break;else _0x130749['push'](_0x130749['shift']());}catch(_0x1fc1ea){_0x130749['push'](_0x130749['shift']());}}}(_0x6cd3,0xe1aac));import{_ as _0x2a1502,a as _0x24d043,b as _0x194e19,c as _0x95c33,d as _0x245f93,f as _0xbb6842,g as _0xbd1d5,h as _0x2a49bd,i as _0x2f4df1,l,n as _0x55da7d,o as _0x52ab6e,p as _0xe13dd9,r as _0x34083b,s as _0x194abc,t as _0x46a490,u as _0xe9d3ed,v as _0x71620d,x as _0x473aaa,y}from'./src-B7nmg1ad.mjs';function _0x6cd3(){var _0x197551=['3ntxIsD','287208MPcIzH','72pJoteg','27093wvTqOR','918747MbozWO','4705pHLtks','3322116StGFde','3930DacICc','7672364SDDWaQ','5irWNqa','1391PQaMYA','571854AdnqWy','724LemmQL'];_0x6cd3=function(){return _0x197551;};return _0x6cd3();}function _0x4db0(_0x20f3c1,_0x2f1b22){_0x20f3c1=_0x20f3c1-0x1e7;var _0x6cd312=_0x6cd3();var _0x4db007=_0x6cd312[_0x20f3c1];return _0x4db007;}export{_0x2a49bd as CLIError,_0xbd1d5 as CompatibilityError,_0x2a1502 as DatabaseSetupError,_0x71620d as DirectoryConflictError,_0x46a490 as EMBEDDED_TEMPLATES,_0x55da7d as GeneratorError,y as ProjectCreationError,_0x34083b as Result,_0x2f4df1 as SchemaNameSchema,_0x24d043 as TEMPLATE_COUNT,_0x194e19 as UserCancelledError,_0x473aaa as ValidationError,_0x52ab6e as VirtualFileSystem,_0x194abc as add,_0x95c33 as create,l as createGsCli,_0xe9d3ed as createVirtual,_0x245f93 as generate,_0xbb6842 as getSchemaResult,_0xe13dd9 as router};