create-glitch-stack 0.1.7 → 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
@@ -32,7 +32,7 @@ Follow the prompts to configure your project or use the `--yes` flag for default
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) |
@@ -61,7 +61,7 @@ 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
67
  --backend <framework> Backend framework (hono, express, fastify, nest, self, none)
@@ -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
- var _0x2e71d0=_0x53b6;(function(_0x3f6a2a,_0x3db875){var _0x358f63=_0x53b6,_0x56318f=_0x3f6a2a();while(!![]){try{var _0x24e613=-parseInt(_0x358f63(0x181))/0x1+-parseInt(_0x358f63(0x173))/0x2+parseInt(_0x358f63(0x17c))/0x3+parseInt(_0x358f63(0x16f))/0x4*(parseInt(_0x358f63(0x180))/0x5)+-parseInt(_0x358f63(0x17e))/0x6+-parseInt(_0x358f63(0x174))/0x7*(-parseInt(_0x358f63(0x17a))/0x8)+parseInt(_0x358f63(0x171))/0x9*(parseInt(_0x358f63(0x16d))/0xa);if(_0x24e613===_0x3db875)break;else _0x56318f['push'](_0x56318f['shift']());}catch(_0x2e1bd2){_0x56318f['push'](_0x56318f['shift']());}}}(_0x5989,0xdc046));var e=Object['definePr'+_0x2e71d0(0x17b)],t=Object[_0x2e71d0(0x16c)+_0x2e71d0(0x16e)+_0x2e71d0(0x17f)],n=Object[_0x2e71d0(0x16c)+_0x2e71d0(0x177)+'mes'],r=Object['prototyp'+'e'][_0x2e71d0(0x17d)+_0x2e71d0(0x17b)],i=(_0x5bb61d,_0x683011)=>{var _0x1b0a0e=_0x2e71d0;let _0x51b79f={};for(var _0x2a38cc in _0x5bb61d)e(_0x51b79f,_0x2a38cc,{'get':_0x5bb61d[_0x2a38cc],'enumerable':!0x0});return _0x683011||e(_0x51b79f,Symbol[_0x1b0a0e(0x176)+_0x1b0a0e(0x170)],{'value':'Module'}),_0x51b79f;},a=(_0x2ecf71,_0x2e9159,_0x169b50,_0xbdbfc7)=>{var _0x16c1e7=_0x2e71d0;if(_0x2e9159&&typeof _0x2e9159==_0x16c1e7(0x178)||typeof _0x2e9159=='function'){for(var _0x525e99=n(_0x2e9159),_0x203a9b=0x0,_0x560490=_0x525e99[_0x16c1e7(0x175)],_0x2fdd0b;_0x203a9b<_0x560490;_0x203a9b++)_0x2fdd0b=_0x525e99[_0x203a9b],!r[_0x16c1e7(0x16b)](_0x2ecf71,_0x2fdd0b)&&_0x2fdd0b!==_0x169b50&&e(_0x2ecf71,_0x2fdd0b,{'get':(_0x7855d8=>_0x2e9159[_0x7855d8])['bind'](null,_0x2fdd0b),'enumerable':!(_0xbdbfc7=t(_0x2e9159,_0x2fdd0b))||_0xbdbfc7[_0x16c1e7(0x179)+'le']});}return _0x2ecf71;},o=(_0x1c3855,_0x5da005,_0x5e7537)=>(a(_0x1c3855,_0x5da005,_0x2e71d0(0x172)),_0x5e7537&&a(_0x5e7537,_0x5da005,_0x2e71d0(0x172)));function _0x5989(){var _0x2e43fd=['opertyDe','5556KzyXuG','Tag','16632tjuKrK','default','2717766UuCSzS','480977ikXqZN','length','toString','opertyNa','object','enumerab','24cVKLeC','operty','4387668CKpQIP','hasOwnPr','2662470BdQmRv','scriptor','3525jGFQgG','1673844pAFBdz','call','getOwnPr','9360IokLIh'];_0x5989=function(){return _0x2e43fd;};return _0x5989();}function _0x53b6(_0x3ebca6,_0x3758ea){_0x3ebca6=_0x3ebca6-0x16b;var _0x5989c0=_0x5989();var _0x53b63b=_0x5989c0[_0x3ebca6];return _0x53b63b;}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 _0x37aa59=_0x2516;(function(_0x32e2c4,_0x3af911){const _0x29483b=_0x2516,_0x2b6359=_0x32e2c4();while(!![]){try{const _0x346003=parseInt(_0x29483b(0x29f))/0x1+-parseInt(_0x29483b(0x21e))/0x2+parseInt(_0x29483b(0x2ca))/0x3+-parseInt(_0x29483b(0x147))/0x4*(-parseInt(_0x29483b(0x269))/0x5)+-parseInt(_0x29483b(0x187))/0x6*(parseInt(_0x29483b(0x2d8))/0x7)+-parseInt(_0x29483b(0x1d5))/0x8+-parseInt(_0x29483b(0x258))/0x9;if(_0x346003===_0x3af911)break;else _0x2b6359['push'](_0x2b6359['shift']());}catch(_0x3152d3){_0x2b6359['push'](_0x2b6359['shift']());}}}(_0x5dc8,0xddd53));import{S as _0x5ecf6b,c as _0x24be2b,f as _0x22aa01,i as _0x1779cb,l as _0x1b0bfd,m as _0x16cff0,s as _0x17ea89}from'./src-BCfsoTej.mjs';import _0xe59967 from'zod';import{McpServer as _0x275b90}from'@modelcontextprotocol/sdk/server/mcp.js';function _0x2516(_0x13a58d,_0x2df2e2){_0x13a58d=_0x13a58d-0x12c;const _0x5dc814=_0x5dc8();let _0x251669=_0x5dc814[_0x13a58d];return _0x251669;}import{StdioServerTransport as _0x2f56cc}from'@modelcontextprotocol/sdk/server/stdio.js';const u=_0xe59967[_0x37aa59(0x210)]({'ok':_0xe59967['boolean'](),'data':_0xe59967[_0x37aa59(0x253)]()[_0x37aa59(0x196)](),'error':_0xe59967[_0x37aa59(0x14d)]()[_0x37aa59(0x196)]()}),d=_0x5ecf6b[_0x37aa59(0x296)+_0x37aa59(0x29d)+'a'][_0x37aa59(0x28c)+'nd']({'projectName':_0xe59967['string']()['describe'](_0x37aa59(0x285)+_0x37aa59(0x18b)+_0x37aa59(0x262)+_0x37aa59(0x1ec)),'frontend':_0xe59967[_0x37aa59(0x291)](_0x5ecf6b['Frontend'+'Schema'])[_0x37aa59(0x2e2)](_0x37aa59(0x20b)+_0x37aa59(0x190)+_0x37aa59(0x184)+_0x37aa59(0x2c5)+_0x37aa59(0x133)+'se\x20nativ'+_0x37aa59(0x2c4)+_0x37aa59(0x2eb)+_0x37aa59(0x2ac)+_0x37aa59(0x179)),'backend':_0x5ecf6b[_0x37aa59(0x16c)+_0x37aa59(0x22d)][_0x37aa59(0x2e2)](_0x37aa59(0x20b)+_0x37aa59(0x182)+_0x37aa59(0x22c)+'rk'),'runtime':_0x5ecf6b['RuntimeS'+_0x37aa59(0x22d)][_0x37aa59(0x2e2)]('Explicit'+'\x20runtime'+'\x20environ'+_0x37aa59(0x2af)),'database':_0x5ecf6b[_0x37aa59(0x1cd)+_0x37aa59(0x279)][_0x37aa59(0x2e2)](_0x37aa59(0x20b)+_0x37aa59(0x17e)+_0x37aa59(0x14b)),'orm':_0x5ecf6b[_0x37aa59(0x239)+'a'][_0x37aa59(0x2e2)]('Explicit'+'\x20ORM\x20cho'+_0x37aa59(0x1f0)),'api':_0x5ecf6b['APISchem'+'a'][_0x37aa59(0x2e2)](_0x37aa59(0x20b)+'\x20API\x20lay'+'er'),'auth':_0x5ecf6b[_0x37aa59(0x264)+'ma'][_0x37aa59(0x2e2)]('Explicit'+_0x37aa59(0x161)+_0x37aa59(0x1d0)+'provider'),'payments':_0x5ecf6b[_0x37aa59(0x1b7)+_0x37aa59(0x279)][_0x37aa59(0x2e2)](_0x37aa59(0x20b)+_0x37aa59(0x235)+_0x37aa59(0x298)+'er'),'addons':_0xe59967[_0x37aa59(0x291)](_0x5ecf6b[_0x37aa59(0x15a)+_0x37aa59(0x164)])[_0x37aa59(0x2e2)](_0x37aa59(0x20b)+'\x20addon\x20l'+'ist.\x20Use'+_0x37aa59(0x287)+_0x37aa59(0x1ac)+'ns\x20are\x20n'+'eeded.'),'examples':_0xe59967[_0x37aa59(0x291)](_0x5ecf6b[_0x37aa59(0x26d)+_0x37aa59(0x279)])[_0x37aa59(0x2e2)](_0x37aa59(0x20b)+_0x37aa59(0x263)+_0x37aa59(0x2b1)+_0x37aa59(0x218)+_0x37aa59(0x159)+'amples\x20a'+_0x37aa59(0x251)+'d.'),'git':_0xe59967['boolean']()['describe'](_0x37aa59(0x2cb)+_0x37aa59(0x1f6)+_0x37aa59(0x28f)+_0x37aa59(0x12c)+'sitory'),'packageManager':_0x5ecf6b[_0x37aa59(0x1ce)+_0x37aa59(0x2bc)+_0x37aa59(0x164)][_0x37aa59(0x2e2)](_0x37aa59(0x20b)+_0x37aa59(0x19e)+'\x20manager'),'install':_0xe59967[_0x37aa59(0x1d9)]()['describe'](_0x37aa59(0x2cb)+'to\x20insta'+'ll\x20depen'+_0x37aa59(0x27e)),'webDeploy':_0x5ecf6b['WebDeplo'+_0x37aa59(0x20d)][_0x37aa59(0x2e2)](_0x37aa59(0x20b)+_0x37aa59(0x1a2)+_0x37aa59(0x220)+'choice'),'serverDeploy':_0x5ecf6b[_0x37aa59(0x13b)+_0x37aa59(0x27f)+'ma'][_0x37aa59(0x2e2)]('Explicit'+_0x37aa59(0x17b)+_0x37aa59(0x171)+_0x37aa59(0x2db)+'e'),'addonOptions':_0x5ecf6b['AddonOpt'+'ionsSche'+'ma'][_0x37aa59(0x196)](),'directoryConflict':_0x5ecf6b[_0x37aa59(0x2d0)+'yConflic'+_0x37aa59(0x272)]['optional']()})['describe'](_0x37aa59(0x20b)+_0x37aa59(0x1ba)+_0x37aa59(0x238)+_0x37aa59(0x261)+_0x37aa59(0x294)+'ion\x20for\x20'+'MCP\x20use.'+'\x20Provide'+_0x37aa59(0x246)+_0x37aa59(0x14f)+'config\x20i'+_0x37aa59(0x2d4)+'f\x20relyin'+_0x37aa59(0x2d1)+_0x37aa59(0x1a3)+_0x37aa59(0x168));function f(_0x20c12e){const _0x157512=_0x37aa59;return{'content':[{'type':'text','text':JSON[_0x157512(0x1a5)+'y'](_0x20c12e,null,0x2)}],'structuredContent':{'ok':!0x0,'data':_0x20c12e}};}function p(_0x42d2f0){const _0x4ba634=_0x37aa59;let _0x5d0aa9=_0x42d2f0 instanceof Error?_0x42d2f0[_0x4ba634(0x2f5)]:String(_0x42d2f0);return{'content':[{'type':_0x4ba634(0x230),'text':_0x5d0aa9}],'structuredContent':{'ok':!0x1,'error':_0x5d0aa9},'isError':!0x0};}function m(){return{'destructiveHint':!0x0,'idempotentHint':!0x1,'openWorldHint':!0x0};}function h(_0x3893bb){const _0x512086=_0x37aa59;return[_0x512086(0x19c)+_0x512086(0x1b8)+'tion\x20req'+'uires\x20`i'+'nstall:\x20'+_0x512086(0x1f1),_0x512086(0x277)+_0x512086(0x1b1)+_0x512086(0x2b7)+_0x512086(0x1ed)+_0x512086(0x213)+'n\x20MCP\x20cl'+'ient\x20req'+'uest\x20tim'+_0x512086(0x2f1)+'d\x20cause\x20'+'the\x20conn'+_0x512086(0x2da)+_0x512086(0x1d2)+_0x512086(0x1a8)+_0x512086(0x26b)+'returns.',_0x512086(0x12d)+_0x512086(0x245)+'ject\x20fir'+_0x512086(0x13d)+'\x20run\x20`'+_0x3893bb+(_0x512086(0x221)+_0x512086(0x2e5)+_0x512086(0x247)+_0x512086(0x2d2)+_0x512086(0x23d)+'tory\x20fro'+_0x512086(0x158)+_0x512086(0x24e))][_0x512086(0x177)]('\x20');}function g(){const _0x2e5cdd=_0x37aa59;return{'workflow':[_0x2e5cdd(0x290)+_0x2e5cdd(0x237)+_0x2e5cdd(0x13a)+'_get_sta'+_0x2e5cdd(0x295)+'nce\x20befo'+'re\x20const'+'ructing\x20'+_0x2e5cdd(0x2a7)+_0x2e5cdd(0x197)+_0x2e5cdd(0x278)+'is\x20ambig'+_0x2e5cdd(0x1dd),'For\x20proj'+_0x2e5cdd(0x1b8)+_0x2e5cdd(0x1fb)+_0x2e5cdd(0x21a)+_0x2e5cdd(0x1fe)+_0x2e5cdd(0x249)+'ig\x20befor'+'e\x20callin'+_0x2e5cdd(0x137)+_0x2e5cdd(0x2fa)+'t.',_0x2e5cdd(0x2cc)+_0x2e5cdd(0x2fb)+_0x2e5cdd(0x1c4)+'ect\x20befo'+_0x2e5cdd(0x2a1)+_0x2e5cdd(0x13f)+_0x2e5cdd(0x24a),'Only\x20cal'+'l\x20gs_cre'+'ate_proj'+_0x2e5cdd(0x256)+_0x2e5cdd(0x1c8)+_0x2e5cdd(0x2c6)+'eds\x20and\x20'+'matches\x20'+_0x2e5cdd(0x2ba)+'\x27s\x20inten'+'t.',_0x2e5cdd(0x28b)+_0x2e5cdd(0x21b)+'ns\x20befor'+_0x2e5cdd(0x28a)+_0x2e5cdd(0x207)+_0x2e5cdd(0x1c6)+_0x2e5cdd(0x1c7)+_0x2e5cdd(0x2dc)],'createContract':{'requiresExplicitFields':['projectN'+_0x2e5cdd(0x2bb),_0x2e5cdd(0x24c),_0x2e5cdd(0x2ec),_0x2e5cdd(0x282),_0x2e5cdd(0x223),_0x2e5cdd(0x1ae),_0x2e5cdd(0x15d),_0x2e5cdd(0x1c0),_0x2e5cdd(0x130),_0x2e5cdd(0x252),'examples','git',_0x2e5cdd(0x2e8)+'anager','install','webDeplo'+'y','serverDe'+_0x2e5cdd(0x183)],'optionalFields':[_0x2e5cdd(0x188)+_0x2e5cdd(0x16d),_0x2e5cdd(0x2b0)+_0x2e5cdd(0x192)+'t'],'rule':'Do\x20not\x20c'+_0x2e5cdd(0x2fb)+'lan_proj'+_0x2e5cdd(0x2ad)+_0x2e5cdd(0x1c1)+_0x2e5cdd(0x225)+_0x2e5cdd(0x203)+'partial\x20'+_0x2e5cdd(0x244)+_0x2e5cdd(0x284)+_0x2e5cdd(0x2dd)+_0x2e5cdd(0x153)+_0x2e5cdd(0x176)+_0x2e5cdd(0x194)+_0x2e5cdd(0x160)+'\x20stack\x20c'+_0x2e5cdd(0x181)},'fieldNotes':{'frontend':_0x2e5cdd(0x24c)+_0x2e5cdd(0x18e)+_0x2e5cdd(0x189)+_0x2e5cdd(0x2f6)+_0x2e5cdd(0x25f)+_0x2e5cdd(0x1de)+_0x2e5cdd(0x2a3)+_0x2e5cdd(0x242)+_0x2e5cdd(0x1e1)+_0x2e5cdd(0x2d5)+_0x2e5cdd(0x2b8)+_0x2e5cdd(0x15c)+_0x2e5cdd(0x25e)+_0x2e5cdd(0x150)+_0x2e5cdd(0x1d3)+'\x20or\x20andr'+_0x2e5cdd(0x276),'addons':_0x2e5cdd(0x28e)+_0x2e5cdd(0x297)+_0x2e5cdd(0x241)+_0x2e5cdd(0x228)+_0x2e5cdd(0x14a)+'\x20when\x20no'+_0x2e5cdd(0x1d1)+_0x2e5cdd(0x1fa)+_0x2e5cdd(0x29e),'examples':_0x2e5cdd(0x16a)+_0x2e5cdd(0x212)+_0x2e5cdd(0x255)+'icit\x20arr'+_0x2e5cdd(0x2f8)+_0x2e5cdd(0x1b3)+'no\x20examp'+_0x2e5cdd(0x142)+_0x2e5cdd(0x174)+'d.','webDeploy':_0x2e5cdd(0x2a2)+_0x2e5cdd(0x24b)+_0x2e5cdd(0x236)+'ired.\x20Us'+_0x2e5cdd(0x260)+_0x2e5cdd(0x198)+'\x20web\x20dep'+_0x2e5cdd(0x220)+_0x2e5cdd(0x195)+_0x2e5cdd(0x13e)+_0x2e5cdd(0x208),'serverDeploy':_0x2e5cdd(0x271)+_0x2e5cdd(0x280)+_0x2e5cdd(0x29a)+_0x2e5cdd(0x1cc)+_0x2e5cdd(0x16b)+_0x2e5cdd(0x180)+_0x2e5cdd(0x1a4)+'er\x20deplo'+'yment\x20ta'+_0x2e5cdd(0x29b)+_0x2e5cdd(0x174)+'d.','packageManager':_0x2e5cdd(0x2e8)+_0x2e5cdd(0x185)+_0x2e5cdd(0x1eb)+'\x20require'+_0x2e5cdd(0x1d8)+'e\x20instal'+_0x2e5cdd(0x23a)+_0x2e5cdd(0x13c)+_0x2e5cdd(0x1ee)+_0x2e5cdd(0x131)+_0x2e5cdd(0x2a9)+_0x2e5cdd(0x206),'install':_0x2e5cdd(0x2c7)+_0x2e5cdd(0x2f3)+'s\x20requir'+_0x2e5cdd(0x1c3)+'MCP\x20proj'+_0x2e5cdd(0x1b8)+'tion,\x20pr'+_0x2e5cdd(0x165)+'se\x20becau'+_0x2e5cdd(0x1af)+_0x2e5cdd(0x217)+_0x2e5cdd(0x149)+'request\x20'+_0x2e5cdd(0x16f)+_0x2e5cdd(0x1ea)+_0x2e5cdd(0x175)+_0x2e5cdd(0x22a)+_0x2e5cdd(0x292)+_0x2e5cdd(0x232)+'.','git':_0x2e5cdd(0x1f2)+'lways\x20re'+_0x2e5cdd(0x270)+_0x2e5cdd(0x1f9)+_0x2e5cdd(0x214)+'r\x20false\x20'+'explicit'+_0x2e5cdd(0x18a)+_0x2e5cdd(0x274)+_0x2e5cdd(0x2c1)+_0x2e5cdd(0x17c)+'s.'},'ambiguityRules':[_0x2e5cdd(0x12e)+_0x2e5cdd(0x1df)+_0x2e5cdd(0x173)+_0x2e5cdd(0x240)+'\x20stack\x20c'+_0x2e5cdd(0x1f7)+_0x2e5cdd(0x25c)+_0x2e5cdd(0x172)+_0x2e5cdd(0x202)+_0x2e5cdd(0x15f)+_0x2e5cdd(0x2c3)+_0x2e5cdd(0x1da)+_0x2e5cdd(0x1b6)+_0x2e5cdd(0x225)+'.',_0x2e5cdd(0x1c2)+'nfer\x20ext'+'ra\x20app\x20s'+_0x2e5cdd(0x1cb)+_0x2e5cdd(0x19a)+_0x2e5cdd(0x263)+_0x2e5cdd(0x233)+_0x2e5cdd(0x2c8)+'ng\x20choic'+_0x2e5cdd(0x29c)+_0x2e5cdd(0x162)+_0x2e5cdd(0x1a9)+_0x2e5cdd(0x1fc)+_0x2e5cdd(0x17f)+'rence.',_0x2e5cdd(0x12e)+_0x2e5cdd(0x215)+_0x2e5cdd(0x288)+_0x2e5cdd(0x27b)+_0x2e5cdd(0x1c9)+'ck,\x20stil'+_0x2e5cdd(0x1ad)+_0x2e5cdd(0x194)+_0x2e5cdd(0x170)+_0x2e5cdd(0x186)+'icit\x20\x27no'+_0x2e5cdd(0x24d)+_0x2e5cdd(0x26c)+_0x2e5cdd(0x27a)+_0x2e5cdd(0x22f)+_0x2e5cdd(0x2ef)+_0x2e5cdd(0x2b4)+'e.',_0x2e5cdd(0x26f)+_0x2e5cdd(0x21d)+_0x2e5cdd(0x2ae)+_0x2e5cdd(0x28d)+_0x2e5cdd(0x221)+_0x2e5cdd(0x289)+_0x2e5cdd(0x286)+_0x2e5cdd(0x25b)+_0x2e5cdd(0x12f)+_0x2e5cdd(0x1a6)+_0x2e5cdd(0x292)+'installa'+_0x2e5cdd(0x1f4)+_0x2e5cdd(0x193)+_0x2e5cdd(0x134)+_0x2e5cdd(0x2e9)+_0x2e5cdd(0x27d)]};}function _0x5dc8(){const _0x51bc0a=['error','is\x20alway','\x20the\x20CLI','message','aces\x20onl','view\x20add','ay.\x20Use\x20','ject\x20usi','n_projec','all\x20gs_p','biguous.','e\x20addon\x20','AddInput','son.\x20Cal','git\x20repo','Scaffold','If\x20the\x20u','or\x20agent','payments','commands','l\x20requir','Do\x20not\x20u','from\x20a\x20t','Failed\x20t','create_p','g\x20gs_pla','this\x20onl','-specifi','ma\x20or\x20gs','ServerDe','nd\x20repro','st,\x20then','s\x20reques','eate_pro','nt\x20flow\x20','Add\x20Glit','les\x20are\x20','dance','Tool','r\x20over\x20s','tions\x20ar','8crctPy','e\x20user\x27s','enforce\x20','.\x20Use\x20[]','e\x20choice','ack','string','as\x20so\x20ag','l\x20stack\x20','ve-uniwi','\x20importa','er\x20with\x20','ation\x20re','ect','gs_get_s','ack\x20Proj','ack\x20mcp','m\x20a\x20term','en\x20no\x20ex','AddonsSc','his\x20comm','art,\x20ast','api','ame\x20sile','olve\x20the','explicit','\x20authent','a\x20templa','\x20Addons','hema','efer\x20fal','hout\x20wri','\x20semanti','faults.','o\x20add\x20ad','examples','\x20Use\x20\x27no','BackendS','ions','re\x20gs_ad','timeouts','config\x20w','deployme','ed,\x20stop','est\x20leav','requeste','long-run','quires\x20t','join','success','ptions.','includes','\x20server\x20','\x20default','anager','\x20databas','ng\x20prefe','ne\x27\x20when','onfig.','\x20backend','ploy','d\x20app\x20su','anager\x20i','ith\x20expl','786snWsrN','addonOpt','app\x20surf','ly\x20inste','name\x20or\x20','dance\x20be','projectN','\x20is\x20for\x20','es\x20an\x20ex','\x20fronten','st\x20is\x20am','yConflic','arately\x20','he\x20full\x20','target\x20i','optional','\x20if\x20the\x20','\x20when\x20no','xplicit\x20','\x20addons,','ddon\x20ins','MCP\x20proj','res\x20an\x20e','\x20package','e\x20uncert','tallatio','Create\x20G','\x20web\x20dep','erred\x20de','\x20no\x20serv','stringif','\x20run\x20dep','ut\x20schem','before\x20t','te\x20name\x20','Defaults','succeeds','\x20no\x20addo','l\x20send\x20t','orm','se\x20many\x20','I.\x20Call\x20','cy\x20insta','Start\x20th','[]\x20when\x20','\x20when\x20th','ol\x20requi','\x20gs_plan','Payments','ect\x20crea','l\x20explic','\x20Glitch\x20','\x20flow\x20as','d\x20change','s\x20togeth','itch\x20Sta','--help','auth','s_create','Do\x20not\x20i','ed.\x20For\x20','lan_proj','d_addons','for\x20exis','ting\x20pro','r\x20the\x20pl','alid\x20sta','tches\x20th','urfaces,','equired.','Database','PackageM','run','ication\x20','\x20addons\x20','o\x20close\x20','nd,\x20ios,','project\x20','8098632EDQbtZ','re\x20plann','ck\x20confi','d\x20becaus','boolean','\x20calling','ck\x20mcp\x0a\x0a','\x27s\x20inten','uous.','e\x20explic','ser\x20requ','nspect.\x20','uch\x20as\x20n','unched\x20b','project','plicit\x20f','g\x20requir','ating\x20a\x20','ddons','k\x20Addons','\x20Schemas','\x20around\x20','s\x20always','\x20path','can\x20exce','ducible\x20','tch\x20Stac','ice','false`.','git\x20is\x20a','\x20rather\x20','tion\x20sep','\x20to\x20all.','to\x20initi','hoices\x20u','\x20This\x20to','Set\x20it\x20t','are\x20requ','tion,\x20bu','or\x20styli','as\x20add-j','ll\x20expli','aults.','hoosing\x20','\x20and\x20inp','\x20and\x20res','\x20with\x20a\x20','k\x20Projec','gs_add_a','on\x20it.','_addons\x20','ted.','\x20plan\x20cl','art\x20of\x20t','Explicit','y\x20an\x20MCP','ySchema','k\x20config','argv','object','Schema\x20n','\x20must\x20be','ed\x20commo','o\x20true\x20o','ser\x20want','gs_plan_','clients\x20','se\x20[]\x20wh','ent\x20prog','ild\x20a\x20fu','lan_addo','litch-st','executio','63120tOhvMe','es.\x20Alwa','loyment\x20','\x20install','Read\x20MCP','database','cs\x20and\x20a','_project','\x20this\x20be','reate-gl','it\x20array','ntended\x20','ning\x20dep','his\x20befo','\x20framewo','chema','o\x20plan\x20a','\x20values\x20','text','CP\x20serve','installs','s,\x20or\x20pr','ng\x20the\x20s','\x20payment','ays\x20requ','get_sche','Stack\x20pr','ORMSchem','lation\x20a','s.\x20Use\x20t','Plan\x20Gli','ct\x20direc','dons','ing\x20the\x20','es\x20major','n\x20explic','argets\x20s','ed\x20by\x20MC','payload.','\x20the\x20pro','\x20the\x20ful','\x20generat','e_projec','cit\x20conf','ject.','y\x20is\x20alw','frontend','ne\x27,\x20[]\x20','inal.','\x20and\x20the','connect','re\x20neede','addons','any','ch\x20Stack','\x20an\x20expl','ect\x20afte','Get\x20Glit','1631367zLIOwn','Inspect\x20','rces.\x20Al','he\x20user\x20','nspecifi','on\x20insta','ro,\x20nati','y.\x20Choos','e\x20\x27none\x27','oject\x20co','relative','\x20example','AuthSche','s\x20match\x20','\x20for\x20exa','r\x20gs_pla','ested\x20op','3082570TBYymv','ys\x20use\x20t','he\x20tool\x20',',\x20true,\x20','Examples','fore\x20cre','For\x20MCP\x20','quired.\x20','serverDe','tSchema','e\x20planne','ad\x20of\x20re','s\x20and\x20th','oid.','Dependen','request\x20','Schema','or\x20false','allest\x20v','ayload\x20w','session.','dencies','ploySche','ploy\x20is\x20','exit','runtime','nt\x20field','\x20MCP\x20pro','Project\x20','nd\x20let\x20t','\x20[]\x20when','s\x20the\x20sm','=false\x20a','e\x20gs_add','Use\x20gs_p','safeExte','old\x20with','addons\x20m','alize\x20a\x20','Call\x20gs_','array','endency\x20','l\x20this\x20o','nfigurat','ck_guida','CreateIn','ust\x20be\x20a','s\x20provid','nto\x20an\x20e','always\x20r','rget\x20is\x20','es\x20from\x20','putSchem','ested.','536602EDSZRm','ting\x20fil','re\x20gs_cr','webDeplo','it\x20app\x20t','ject\x20wit','value','litch\x20St','a\x20config','Validate','\x20depend\x20','Usage:\x20c','tdio.\x0a\x0aT','tyling\x20o','ect\x20or\x20g','n,\x20scaff','ment','director','\x20list.\x20U','valid\x20Gl','equests.','propriat','mbiguity','create-g','llation\x20','stack-st','\x20intent.','the\x20user','ame','anagerSc','mcp','Create\x20a','register','ith\x20infe','lying\x20on','\x20Stack\x20M','m\x20before','e\x20fronte','rfaces.\x20','an\x20succe','install\x20','ovisioni','This\x20too','5391474emvisH','Whether\x20','Always\x20c','ame\x20to\x20i','Glitch\x20S','ce\x20for\x20c','Director','g\x20on\x20inf','ed\x20proje','ack\x20proj','nstead\x20o','ext,\x20tan','\x20JSON\x20AP','artial\x20p','76573aNeCUg','ain.','ection\x20t','nt\x20choic','jects.','ject\x20cre','install','same\x20sil','ents\x20can','es\x20or\x20pr','describe','rammatic','lid\x20crea','`\x20in\x20the','xisting\x20','P\x20projec','packageM','erminal\x20','\x20client,','nds\x20as\x20s','backend','\x20MCP\x20Gui','y\x20after\x20','where\x20ap','tack\x20CLI','eouts\x20an'];_0x5dc8=function(){return _0x51bc0a;};return _0x5dc8();}function _(){const _0x1691ff=_0x37aa59;let _0x401454=new _0x275b90({'name':'create-g'+_0x1691ff(0x21c)+_0x1691ff(0x14c),'version':_0x16cff0()},{'capabilities':{'logging':{}}});return _0x401454['register'+_0x1691ff(0x144)](_0x1691ff(0x155)+'tack_gui'+_0x1691ff(0x143),{'title':_0x1691ff(0x257)+_0x1691ff(0x254)+_0x1691ff(0x2ed)+_0x1691ff(0x143),'description':_0x1691ff(0x222)+_0x1691ff(0x139)+'c\x20guidan'+_0x1691ff(0x2cf)+_0x1691ff(0x200)+_0x1691ff(0x2b2)+_0x1691ff(0x1be)+_0x1691ff(0x1d7)+'guration'+_0x1691ff(0x23b)+_0x1691ff(0x22b)+_0x1691ff(0x1d6)+'ing\x20when'+'\x20user\x20in'+'tent\x20is\x20'+'ambiguou'+'s.\x20This\x20'+'explains'+_0x1691ff(0x246)+_0x1691ff(0x1b9)+'it\x20confi'+_0x1691ff(0x1e5)+_0x1691ff(0x243)+_0x1691ff(0x2e7)+'t\x20creati'+'on,\x20plus'+_0x1691ff(0x151)+_0x1691ff(0x283)+_0x1691ff(0x167)+_0x1691ff(0x224)+_0x1691ff(0x2b5)+'\x20rules.','inputSchema':_0xe59967['object']({}),'outputSchema':u,'annotations':{'title':_0x1691ff(0x257)+_0x1691ff(0x254)+_0x1691ff(0x2ed)+_0x1691ff(0x143),'readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async()=>{try{return f(g());}catch(_0x39dd2c){return p(_0x39dd2c);}}),_0x401454[_0x1691ff(0x2bf)+_0x1691ff(0x144)](_0x1691ff(0x155)+'chema',{'title':_0x1691ff(0x257)+_0x1691ff(0x254)+_0x1691ff(0x1e9),'description':_0x1691ff(0x259)+'Glitch\x20S'+_0x1691ff(0x2f0)+_0x1691ff(0x201)+_0x1691ff(0x1a7)+_0x1691ff(0x14e)+_0x1691ff(0x2e0)+'\x20plan\x20va'+_0x1691ff(0x2e4)+'te/add\x20r'+_0x1691ff(0x2b3)+'\x20Use\x20thi'+_0x1691ff(0x1bd)+_0x1691ff(0x152)+_0x1691ff(0x155)+'tack_gui'+_0x1691ff(0x18c)+_0x1691ff(0x26e)+_0x1691ff(0x1e6)+'project\x20'+'if\x20any\x20p'+_0x1691ff(0x20a)+'he\x20reque'+_0x1691ff(0x191)+_0x1691ff(0x2fc),'inputSchema':_0xe59967[_0x1691ff(0x210)]({'name':_0x1779cb[_0x1691ff(0x196)]()[_0x1691ff(0x2e2)](_0x1691ff(0x211)+_0x1691ff(0x2cd)+_0x1691ff(0x1e0)+_0x1691ff(0x1aa)+_0x1691ff(0x1f5))}),'outputSchema':u,'annotations':{'title':_0x1691ff(0x257)+_0x1691ff(0x254)+'\x20Schemas','readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async({name:_0x5dd176})=>{try{return f(_0x22aa01(_0x5dd176??'all'));}catch(_0x1e5f30){return p(_0x1e5f30);}}),_0x401454['register'+_0x1691ff(0x144)](_0x1691ff(0x216)+_0x1691ff(0x1e3),{'title':_0x1691ff(0x23c)+'tch\x20Stac'+'k\x20Projec'+'t','description':_0x1691ff(0x2a8)+'\x20and\x20pre'+'view\x20a\x20G'+_0x1691ff(0x2a6)+_0x1691ff(0x2d3)+_0x1691ff(0x1b8)+'tion\x20wit'+_0x1691ff(0x166)+_0x1691ff(0x2a0)+_0x1691ff(0x2e1)+_0x1691ff(0x2c8)+'ng\x20resou'+_0x1691ff(0x25a)+'ways\x20use'+_0x1691ff(0x226)+'fore\x20gs_'+_0x1691ff(0x136)+'roject.\x20'+_0x1691ff(0x2c9)+_0x1691ff(0x132)+_0x1691ff(0x18f)+_0x1691ff(0x1e4)+'ull\x20stac'+_0x1691ff(0x20e)+_0x1691ff(0x1f3)+'than\x20a\x20p'+_0x1691ff(0x2d7)+_0x1691ff(0x27c)+_0x1691ff(0x2c0)+'rred\x20def'+_0x1691ff(0x1ff),'inputSchema':d,'outputSchema':u,'annotations':{'title':'Plan\x20Gli'+_0x1691ff(0x1ef)+_0x1691ff(0x204)+'t','readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async _0x332e74=>{const _0x3a185d=_0x1691ff;try{let _0x595694=await _0x24be2b(_0x332e74[_0x3a185d(0x18d)+_0x3a185d(0x2bb)],{..._0x332e74,'dryRun':!0x0});return _0x595694['isErr']()?p(_0x595694[_0x3a185d(0x2f2)]):f(_0x332e74[_0x3a185d(0x2de)]?{..._0x595694[_0x3a185d(0x2a5)],'warnings':[h(_0x332e74[_0x3a185d(0x2e8)+_0x3a185d(0x17d)])],'recommendedMcpExecution':{..._0x332e74,'install':!0x1}}:_0x595694['value']);}catch(_0x5989dc){return p(_0x5989dc);}}),_0x401454[_0x1691ff(0x2bf)+_0x1691ff(0x144)]('gs_creat'+_0x1691ff(0x248)+'t',{'title':_0x1691ff(0x1a1)+'litch\x20St'+_0x1691ff(0x156)+_0x1691ff(0x154),'description':_0x1691ff(0x2be)+'\x20Glitch\x20'+_0x1691ff(0x238)+'oject\x20on'+'\x20disk\x20us'+_0x1691ff(0x23f)+_0x1691ff(0x2df)+_0x1691ff(0x219)+_0x1691ff(0x2e3)+_0x1691ff(0x1bb)+_0x1691ff(0x2f4)+_0x1691ff(0x2d6)+_0x1691ff(0x1b0)+_0x1691ff(0x138)+_0x1691ff(0x2ee)+'gs_plan_'+_0x1691ff(0x1d4)+_0x1691ff(0x1ab)+_0x1691ff(0x24f)+_0x1691ff(0x209)+'early\x20ma'+_0x1691ff(0x1ca)+_0x1691ff(0x148)+_0x1691ff(0x2b9)+_0x1691ff(0x1f8)+_0x1691ff(0x1b5)+_0x1691ff(0x19d)+_0x1691ff(0x199)+'full\x20sta'+_0x1691ff(0x1d7)+'g.','inputSchema':d,'outputSchema':u,'annotations':{'title':_0x1691ff(0x1a1)+_0x1691ff(0x2a6)+'ack\x20Proj'+_0x1691ff(0x154),...m()}},async _0x450565=>{const _0x543def=_0x1691ff;try{if(_0x450565[_0x543def(0x2de)])return p(h(_0x450565['packageM'+_0x543def(0x17d)]));let _0x4ead81=await _0x24be2b(_0x450565[_0x543def(0x18d)+'ame'],{..._0x450565});return _0x4ead81['isErr']()?p(_0x4ead81[_0x543def(0x2f2)]):f(_0x4ead81[_0x543def(0x2a5)]);}catch(_0x230207){return p(_0x230207);}}),_0x401454[_0x1691ff(0x2bf)+'Tool'](_0x1691ff(0x216)+'addons',{'title':_0x1691ff(0x23c)+_0x1691ff(0x1ef)+_0x1691ff(0x1e8),'description':_0x1691ff(0x2a8)+'\x20and\x20pre'+_0x1691ff(0x2f7)+_0x1691ff(0x25d)+_0x1691ff(0x2b7)+'for\x20an\x20e'+'xisting\x20'+_0x1691ff(0x2ce)+'tack\x20pro'+_0x1691ff(0x2a4)+_0x1691ff(0x166)+_0x1691ff(0x2a0)+_0x1691ff(0x21f)+_0x1691ff(0x26a)+_0x1691ff(0x22b)+_0x1691ff(0x16e)+_0x1691ff(0x1c5)+_0x1691ff(0x1b4)+_0x1691ff(0x2fd)+'set\x20or\x20n'+_0x1691ff(0x268)+_0x1691ff(0x146)+_0x1691ff(0x19f)+_0x1691ff(0x2d9),'inputSchema':_0x5ecf6b[_0x1691ff(0x2fe)+_0x1691ff(0x279)],'outputSchema':u,'annotations':{'title':_0x1691ff(0x23c)+_0x1691ff(0x1ef)+_0x1691ff(0x1e8),'readOnlyHint':!0x0,'destructiveHint':!0x1,'idempotentHint':!0x0,'openWorldHint':!0x1}},async _0x497930=>{const _0x13d6e8=_0x1691ff;try{let _0x3186bd=await _0x17ea89({..._0x497930,'dryRun':!0x0});return _0x3186bd?.[_0x13d6e8(0x178)]?f(_0x3186bd):p(_0x3186bd?.[_0x13d6e8(0x2f2)]??_0x13d6e8(0x135)+_0x13d6e8(0x22e)+_0x13d6e8(0x19b)+_0x13d6e8(0x1a0)+'n');}catch(_0x24b1f7){return p(_0x24b1f7);}}),_0x401454['register'+_0x1691ff(0x144)](_0x1691ff(0x205)+_0x1691ff(0x1e7),{'title':_0x1691ff(0x141)+'ch\x20Stack'+_0x1691ff(0x163),'description':'Install\x20'+'addons\x20i'+_0x1691ff(0x299)+_0x1691ff(0x2e6)+_0x1691ff(0x2ce)+'tack\x20pro'+_0x1691ff(0x2f9)+_0x1691ff(0x234)+_0x1691ff(0x15e)+_0x1691ff(0x140)+_0x1691ff(0x1fd)+_0x1691ff(0x2ff)+_0x1691ff(0x293)+'nly\x20afte'+_0x1691ff(0x267)+'n_addons'+'\x20succeed'+_0x1691ff(0x275)+_0x1691ff(0x273)+_0x1691ff(0x1bc)+_0x1691ff(0x265)+_0x1691ff(0x2ba)+_0x1691ff(0x1dc)+'t.','inputSchema':_0x5ecf6b['AddInput'+_0x1691ff(0x279)],'outputSchema':u,'annotations':{'title':_0x1691ff(0x141)+_0x1691ff(0x254)+_0x1691ff(0x163),'destructiveHint':!0x0,'idempotentHint':!0x1,'openWorldHint':!0x0}},async _0x307de6=>{const _0x2e87f5=_0x1691ff;try{let _0x48e06e=await _0x17ea89(_0x307de6);return _0x48e06e?.['success']?f(_0x48e06e):p(_0x48e06e?.['error']??'Failed\x20t'+_0x2e87f5(0x169)+_0x2e87f5(0x23e));}catch(_0x422cb1){return p(_0x422cb1);}}),_0x401454;}async function v(){const _0x516910=_0x37aa59;let _0x2e4835=_(),_0x33b60b=new _0x2f56cc();await _0x2e4835[_0x516910(0x250)](_0x33b60b);}const [,,y,...b]=process[_0x37aa59(0x20f)];y===_0x37aa59(0x2bd)?((b[_0x37aa59(0x17a)](_0x37aa59(0x1bf))||b['includes']('-h'))&&(console['log'](_0x37aa59(0x2aa)+_0x37aa59(0x227)+'itch-sta'+_0x37aa59(0x1db)+_0x37aa59(0x1b2)+'e\x20Glitch'+_0x37aa59(0x2c2)+_0x37aa59(0x231)+_0x37aa59(0x145)+_0x37aa59(0x2ab)+_0x37aa59(0x15b)+'and\x20is\x20i'+_0x37aa59(0x229)+'to\x20be\x20la'+_0x37aa59(0x1e2)+_0x37aa59(0x20c)+_0x37aa59(0x2ea)+_0x37aa59(0x266)+'mple:\x0a\x20\x20'+_0x37aa59(0x2b6)+'litch-st'+_0x37aa59(0x157)),process[_0x37aa59(0x281)](0x0)),await v()):await _0x1b0bfd()[_0x37aa59(0x1cf)]();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(_0x48d1fd,_0x233681){var _0x2ca63d=_0x4b32,_0x1338b2=_0x48d1fd();while(!![]){try{var _0x576967=parseInt(_0x2ca63d(0x113))/0x1+-parseInt(_0x2ca63d(0x119))/0x2+-parseInt(_0x2ca63d(0x114))/0x3+parseInt(_0x2ca63d(0x118))/0x4*(-parseInt(_0x2ca63d(0x115))/0x5)+parseInt(_0x2ca63d(0x117))/0x6+-parseInt(_0x2ca63d(0x111))/0x7+parseInt(_0x2ca63d(0x112))/0x8*(parseInt(_0x2ca63d(0x116))/0x9);if(_0x576967===_0x233681)break;else _0x1338b2['push'](_0x1338b2['shift']());}catch(_0x127379){_0x1338b2['push'](_0x1338b2['shift']());}}}(_0xdf90,0x29e3b));function _0xdf90(){var _0x270bc8=['224821QRBCgn','176469NNXypV','296830kPtnTn','1285803woqiNa','802134sSEWpc','20oGBQSp','399504eMluXG','1420958kUPczQ','32GjBvLf'];_0xdf90=function(){return _0x270bc8;};return _0xdf90();}function _0x4b32(_0x2d3d16,_0xd0206b){_0x2d3d16=_0x2d3d16-0x111;var _0xdf9006=_0xdf90();var _0x4b32f4=_0xdf9006[_0x2d3d16];return _0x4b32f4;}import{_ as _0x263eaa,a as _0x3d3b8b,b as _0x566037,c as _0x2fa193,d as _0x99d3ba,f as _0x3e7f35,g as _0x20321b,h as _0x55ddc6,i as _0x130225,l,n as _0x1cc77f,o as _0x100bce,p as _0x1eb762,r as _0xa29172,s as _0x4180e1,t as _0x3ddffa,u as _0xce2137,v as _0x5bb2b3,x as _0x300a60,y}from'./src-BCfsoTej.mjs';export{_0x55ddc6 as CLIError,_0x20321b as CompatibilityError,_0x263eaa as DatabaseSetupError,_0x5bb2b3 as DirectoryConflictError,_0x3ddffa as EMBEDDED_TEMPLATES,_0x1cc77f as GeneratorError,y as ProjectCreationError,_0xa29172 as Result,_0x130225 as SchemaNameSchema,_0x3d3b8b as TEMPLATE_COUNT,_0x566037 as UserCancelledError,_0x300a60 as ValidationError,_0x100bce as VirtualFileSystem,_0x4180e1 as add,_0x2fa193 as create,l as createGsCli,_0xce2137 as createVirtual,_0x99d3ba as generate,_0x3e7f35 as getSchemaResult,_0x1eb762 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};