create-skybridge 0.0.0-dev.e0ed208 → 0.0.0-dev.e38035c

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.js +124 -18
  3. package/package.json +12 -13
  4. package/template/README.md +13 -2
  5. package/template/node_modules/.bin/mcp-inspector +21 -0
  6. package/template/node_modules/.bin/nodemon +21 -0
  7. package/template/node_modules/.bin/shx +21 -0
  8. package/template/node_modules/.bin/tsc +21 -0
  9. package/template/node_modules/.bin/tsserver +21 -0
  10. package/template/node_modules/.bin/tsx +21 -0
  11. package/template/node_modules/.bin/vite +21 -0
  12. package/template/nodemon.json +5 -0
  13. package/template/package.json +31 -10
  14. package/template/server/src/index.ts +6 -2
  15. package/template/server/src/server.ts +0 -5
  16. package/template/tsconfig.json +23 -0
  17. package/template/tsconfig.server.json +11 -0
  18. package/template/web/src/index.css +1 -0
  19. package/template/web/src/widgets/magic-8-ball.tsx +3 -1
  20. package/template/web/vite.config.ts +1 -1
  21. package/template-ecom/README.md +89 -0
  22. package/template-ecom/alpic.json +4 -0
  23. package/template-ecom/nodemon.json +5 -0
  24. package/template-ecom/package.json +40 -0
  25. package/template-ecom/server/src/index.ts +39 -0
  26. package/template-ecom/server/src/middleware.ts +54 -0
  27. package/template-ecom/server/src/server.ts +73 -0
  28. package/template-ecom/tsconfig.json +23 -0
  29. package/template-ecom/tsconfig.server.json +11 -0
  30. package/template-ecom/web/src/helpers.ts +4 -0
  31. package/template-ecom/web/src/index.css +194 -0
  32. package/template-ecom/web/src/widgets/ecom-carousel.tsx +181 -0
  33. package/template-ecom/web/vite.config.ts +15 -0
  34. package/template/_gitignore +0 -4
  35. package/template/pnpm-workspace.yaml +0 -7
  36. package/template/server/nodemon.json +0 -5
  37. package/template/server/package.json +0 -32
  38. package/template/server/tsconfig.json +0 -17
  39. package/template/web/package.json +0 -24
  40. package/template/web/tsconfig.app.json +0 -34
  41. package/template/web/tsconfig.json +0 -13
  42. package/template/web/tsconfig.node.json +0 -26
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Alpic
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/index.js CHANGED
@@ -1,9 +1,14 @@
1
+ import { spawnSync } from "node:child_process";
1
2
  import fs from "node:fs";
2
3
  import path from "node:path";
3
4
  import { fileURLToPath } from "node:url";
4
5
  import * as prompts from "@clack/prompts";
5
6
  import mri from "mri";
6
7
  const defaultProjectName = "skybridge-project";
8
+ const templates = [
9
+ { value: "default", label: "a minimal implementation" },
10
+ { value: "ecom", label: "a functional ecommerce carousel" },
11
+ ];
7
12
  // prettier-ignore
8
13
  const helpMessage = `\
9
14
  Usage: create-skybridge [OPTION]... [DIRECTORY]
@@ -13,20 +18,27 @@ Create a new Skybridge project by copying the starter template.
13
18
  Options:
14
19
  -h, --help show this help message
15
20
  --overwrite remove existing files in target directory
21
+ --immediate install dependencies and start development server
22
+ --template <template> use a specific template
23
+
24
+ Available templates:
25
+ ${templates.map((t) => ` ${t.value.padEnd(23)} ${t.label}`).join("\n")}
16
26
 
17
27
  Examples:
18
28
  create-skybridge my-app
19
- create-skybridge . --overwrite
29
+ create-skybridge . --overwrite --immediate
20
30
  `;
21
31
  export async function init(args = process.argv.slice(2)) {
22
32
  const argv = mri(args, {
23
- boolean: ["help", "overwrite"],
24
- alias: { h: "help" },
33
+ boolean: ["help", "overwrite", "immediate"],
34
+ alias: { h: "help", t: "template" },
25
35
  });
26
36
  const argTargetDir = argv._[0]
27
37
  ? sanitizeTargetDir(String(argv._[0]))
28
38
  : undefined;
29
39
  const argOverwrite = argv.overwrite;
40
+ const argImmediate = argv.immediate;
41
+ const argTemplate = argv.template;
30
42
  const help = argv.help;
31
43
  if (help) {
32
44
  console.log(helpMessage);
@@ -48,15 +60,47 @@ export async function init(args = process.argv.slice(2)) {
48
60
  : "Invalid project name";
49
61
  },
50
62
  });
51
- if (prompts.isCancel(projectName))
63
+ if (prompts.isCancel(projectName)) {
52
64
  return cancel();
65
+ }
53
66
  targetDir = sanitizeTargetDir(projectName);
54
67
  }
55
68
  else {
56
69
  targetDir = defaultProjectName;
57
70
  }
58
71
  }
59
- // 2. Handle directory if exist and not empty
72
+ // 2. Select a template
73
+ const hasInvalidTemplate = argTemplate && !templates.some((t) => t.value === argTemplate);
74
+ let template = argTemplate;
75
+ if (interactive) {
76
+ if (!argTemplate || hasInvalidTemplate) {
77
+ let message = "Please choose a template:";
78
+ if (hasInvalidTemplate) {
79
+ message = `${argTemplate} is not a valid template. Please choose one of the following:`;
80
+ }
81
+ template = await prompts.select({
82
+ message,
83
+ options: templates.map((t) => ({
84
+ value: t.value,
85
+ label: `${t.value}: ${t.label}`,
86
+ })),
87
+ });
88
+ if (prompts.isCancel(template)) {
89
+ return cancel();
90
+ }
91
+ }
92
+ }
93
+ else if (hasInvalidTemplate) {
94
+ prompts.log.error(`Template is not a valid template. Please choose one of the following: ${templates.map((t) => t.value).join(", ")}`);
95
+ process.exit(1);
96
+ }
97
+ let templatePath = "../template";
98
+ switch (template) {
99
+ case "ecom":
100
+ templatePath = "../template-ecom";
101
+ break;
102
+ }
103
+ // 3. Handle directory if exist and not empty
60
104
  if (fs.existsSync(targetDir) && !isEmpty(targetDir)) {
61
105
  let overwrite = argOverwrite ? "yes" : undefined;
62
106
  if (!overwrite) {
@@ -77,8 +121,9 @@ export async function init(args = process.argv.slice(2)) {
77
121
  },
78
122
  ],
79
123
  });
80
- if (prompts.isCancel(res))
124
+ if (prompts.isCancel(res)) {
81
125
  return cancel();
126
+ }
82
127
  overwrite = res;
83
128
  }
84
129
  else {
@@ -95,33 +140,94 @@ export async function init(args = process.argv.slice(2)) {
95
140
  }
96
141
  }
97
142
  const root = path.join(process.cwd(), targetDir);
98
- // 3. Copy the repository
143
+ // 4. Copy the template
99
144
  prompts.log.step(`Copying template...`);
100
145
  try {
101
- const templateDir = fileURLToPath(new URL("../template", import.meta.url));
146
+ const templateDir = fileURLToPath(new URL(templatePath, import.meta.url));
102
147
  // Copy template to target directory
103
148
  fs.cpSync(templateDir, root, {
104
149
  recursive: true,
105
- filter: (src) => !src.endsWith(".npmrc"),
150
+ filter: (src) => [".npmrc"].every((file) => !src.endsWith(file)),
106
151
  });
107
- // Rename _gitignore to .gitignore
108
- fs.renameSync(path.join(root, "_gitignore"), path.join(root, ".gitignore"));
152
+ // Write .gitignore
153
+ fs.writeFileSync(path.join(root, ".gitignore"), `node_modules/
154
+ dist/
155
+ .env*
156
+ .DS_store`);
109
157
  // Update project name in package.json
110
158
  const name = path.basename(root);
111
- for (const dir of ["", "server", "web"]) {
112
- const pkgPath = path.join(root, dir, "package.json");
113
- const pkg = fs.readFileSync(pkgPath, "utf-8");
114
- const fixed = pkg.replace(/apps-sdk-template/g, name);
115
- fs.writeFileSync(pkgPath, fixed);
116
- }
159
+ const pkgPath = path.join(root, "package.json");
160
+ const pkg = fs.readFileSync(pkgPath, "utf-8");
161
+ const fixed = pkg.replace(/apps-sdk-template/g, name);
162
+ fs.writeFileSync(pkgPath, fixed);
117
163
  prompts.log.success(`Project created in ${root}`);
118
- prompts.outro(`Done! Next steps:\n\n cd ${targetDir}\n pnpm install\n pnpm dev`);
119
164
  }
120
165
  catch (error) {
121
166
  prompts.log.error("Failed to copy repository");
122
167
  console.error(error);
123
168
  process.exit(1);
124
169
  }
170
+ const userAgent = process.env.npm_config_user_agent;
171
+ const pkgManager = userAgent?.split(" ")[0]?.split("/")[0] || "npm";
172
+ // 5. Ask about immediate installation
173
+ let immediate = argImmediate;
174
+ if (immediate === undefined) {
175
+ if (interactive) {
176
+ const immediateResult = await prompts.confirm({
177
+ message: `Install with ${pkgManager} and start now?`,
178
+ });
179
+ if (prompts.isCancel(immediateResult)) {
180
+ return cancel();
181
+ }
182
+ immediate = immediateResult;
183
+ }
184
+ else {
185
+ immediate = false;
186
+ }
187
+ }
188
+ const installCmd = [pkgManager, "install"];
189
+ const runCmd = [pkgManager];
190
+ switch (pkgManager) {
191
+ case "yarn":
192
+ case "pnpm":
193
+ case "bun":
194
+ break;
195
+ case "deno":
196
+ runCmd.push("task");
197
+ break;
198
+ default:
199
+ runCmd.push("run");
200
+ }
201
+ runCmd.push("dev");
202
+ if (!immediate) {
203
+ prompts.outro(`Done! Next steps:
204
+ cd ${targetDir}
205
+ ${installCmd.join(" ")}
206
+ ${runCmd.join(" ")}
207
+ `);
208
+ return;
209
+ }
210
+ prompts.log.step(`Installing dependencies with ${pkgManager}...`);
211
+ run(installCmd, {
212
+ stdio: "inherit",
213
+ cwd: root,
214
+ });
215
+ prompts.log.step("Starting dev server...");
216
+ run(runCmd, {
217
+ stdio: "inherit",
218
+ cwd: root,
219
+ });
220
+ }
221
+ function run([command, ...args], options) {
222
+ const { status, error } = spawnSync(command, args, options);
223
+ if (status != null && status > 0) {
224
+ process.exit(status);
225
+ }
226
+ if (error) {
227
+ console.error(`\n${command} ${args.join(" ")} error!`);
228
+ console.error(error);
229
+ process.exit(1);
230
+ }
125
231
  }
126
232
  function sanitizeTargetDir(targetDir) {
127
233
  return (targetDir
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-skybridge",
3
- "version": "0.0.0-dev.e0ed208",
3
+ "version": "0.0.0-dev.e38035c",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Alpic",
@@ -14,23 +14,22 @@
14
14
  "files": [
15
15
  "index.js",
16
16
  "dist",
17
- "template"
17
+ "template",
18
+ "template-ecom"
18
19
  ],
19
- "scripts": {
20
- "build": "tsc",
21
- "test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
22
- "test:unit": "vitest run",
23
- "test:type": "tsc --noEmit",
24
- "test:format": "biome ci",
25
- "prepublishOnly": "pnpm run build"
26
- },
27
20
  "dependencies": {
28
21
  "@clack/prompts": "^0.11.0",
29
22
  "mri": "^1.2.0"
30
23
  },
31
24
  "devDependencies": {
32
- "@types/node": "^25.0.3",
33
25
  "typescript": "^5.9.3",
34
- "vitest": "^2.1.9"
26
+ "vitest": "^4.0.16"
27
+ },
28
+ "scripts": {
29
+ "build": "tsc && node copyExamples.js",
30
+ "test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
31
+ "test:unit": "vitest run",
32
+ "test:type": "tsc --noEmit",
33
+ "test:format": "biome ci"
35
34
  }
36
- }
35
+ }
@@ -6,8 +6,7 @@ A minimal TypeScript template for building OpenAI Apps SDK compatible MCP server
6
6
 
7
7
  ### Prerequisites
8
8
 
9
- - Node.js 22+
10
- - pnpm (install with `npm install -g pnpm`)
9
+ - Node.js 24+
11
10
  - HTTP tunnel such as [ngrok](https://ngrok.com/download)
12
11
 
13
12
  ### Local Development
@@ -15,7 +14,13 @@ A minimal TypeScript template for building OpenAI Apps SDK compatible MCP server
15
14
  #### 1. Install
16
15
 
17
16
  ```bash
17
+ npm install
18
+ # or
19
+ yarn install
20
+ # or
18
21
  pnpm install
22
+ # or
23
+ bun install
19
24
  ```
20
25
 
21
26
  #### 2. Start your local server
@@ -23,7 +28,13 @@ pnpm install
23
28
  Run the development server from the root directory:
24
29
 
25
30
  ```bash
31
+ npm run dev
32
+ # or
33
+ yarn dev
34
+ # or
26
35
  pnpm dev
36
+ # or
37
+ bun dev
27
38
  ```
28
39
 
29
40
  This command starts an Express server on port 3000. This server packages:
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules/@modelcontextprotocol/inspector/cli/build/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules/@modelcontextprotocol/inspector/cli/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules/@modelcontextprotocol/inspector/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules/@modelcontextprotocol/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules/@modelcontextprotocol/inspector/cli/build/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules/@modelcontextprotocol/inspector/cli/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules/@modelcontextprotocol/inspector/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules/@modelcontextprotocol/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_cfe96c348f18ba1e580ab58ea63930bf/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../@modelcontextprotocol/inspector/cli/build/cli.js" "$@"
19
+ else
20
+ exec node "$basedir/../@modelcontextprotocol/inspector/cli/build/cli.js" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules/nodemon/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules/nodemon/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules/nodemon/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules/nodemon/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../nodemon/bin/nodemon.js" "$@"
19
+ else
20
+ exec node "$basedir/../nodemon/bin/nodemon.js" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.0/node_modules/shx/lib/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.0/node_modules/shx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.0/node_modules/shx/lib/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.0/node_modules/shx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../shx/lib/cli.js" "$@"
19
+ else
20
+ exec node "$basedir/../shx/lib/cli.js" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
19
+ else
20
+ exec node "$basedir/../typescript/bin/tsc" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
19
+ else
20
+ exec node "$basedir/../typescript/bin/tsserver" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules/tsx/dist/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules/tsx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules/tsx/dist/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules/tsx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../tsx/dist/cli.mjs" "$@"
19
+ else
20
+ exec node "$basedir/../tsx/dist/cli.mjs" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules/vite/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules/vite/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
19
+ else
20
+ exec node "$basedir/../vite/bin/vite.js" "$@"
21
+ fi
@@ -0,0 +1,5 @@
1
+ {
2
+ "watch": ["server/src"],
3
+ "ext": "ts,json",
4
+ "exec": "tsx server/src/index.ts"
5
+ }
@@ -4,18 +4,39 @@
4
4
  "private": true,
5
5
  "description": "Alpic MCP Server Template",
6
6
  "type": "module",
7
- "packageManager": "pnpm@10.18.3",
8
7
  "scripts": {
9
- "dev": "pnpm --filter @apps-sdk-template/server dev",
10
- "build": "pnpm web:build && rm -rf server/dist && pnpm --filter=@apps-sdk-template/server --prod deploy server/dist && cp -r web/dist server/dist/assets && pnpm --filter=@apps-sdk-template/server build",
11
- "start": "pnpm server:start",
12
- "inspector": "pnpm --filter @apps-sdk-template/server inspector",
13
- "server:build": "pnpm --filter @apps-sdk-template/server build",
14
- "server:start": "pnpm --filter @apps-sdk-template/server start",
15
- "web:build": "pnpm --filter @apps-sdk-template/web build",
16
- "web:preview": "pnpm --filter @apps-sdk-template/web preview"
8
+ "dev": "nodemon",
9
+ "build": "vite build -c web/vite.config.ts && shx rm -rf server/dist && tsc -p tsconfig.server.json && shx cp -r web/dist server/dist/assets",
10
+ "start": "node server/dist/index.js",
11
+ "inspector": "mcp-inspector http://localhost:3000/mcp",
12
+ "server:build": "tsc -p tsconfig.server.json",
13
+ "server:start": "node server/dist/index.js",
14
+ "web:build": "tsc -b web && vite build -c web/vite.config.ts",
15
+ "web:preview": "vite preview -c web/vite.config.ts"
16
+ },
17
+ "dependencies": {
18
+ "@modelcontextprotocol/sdk": "^1.25.1",
19
+ "express": "^5.2.1",
20
+ "react": "^19.2.3",
21
+ "react-dom": "^19.2.3",
22
+ "skybridge": ">=0.16.8 <1.0.0",
23
+ "vite": "^7.3.0",
24
+ "zod": "^4.3.5"
17
25
  },
18
26
  "devDependencies": {
19
- "tsx": "^4.19.4"
27
+ "@modelcontextprotocol/inspector": "^0.18.0",
28
+ "@skybridge/devtools": ">=0.16.2 <1.0.0",
29
+ "@types/express": "^5.0.6",
30
+ "@types/react": "^19.2.7",
31
+ "@types/react-dom": "^19.2.3",
32
+ "@vitejs/plugin-react": "^5.1.2",
33
+ "nodemon": "^3.1.11",
34
+ "shx": "^0.4.0",
35
+ "tsx": "^4.21.0",
36
+ "typescript": "^5.9.3"
37
+ },
38
+ "workspaces": [],
39
+ "engines": {
40
+ "node": ">=24.0.0"
20
41
  }
21
42
  }
@@ -1,6 +1,5 @@
1
1
  import express, { type Express } from "express";
2
-
3
- import { widgetsDevServer } from "skybridge/server";
2
+ import { devtoolsStaticServer, widgetsDevServer } from "skybridge/server";
4
3
  import type { ViteDevServer } from "vite";
5
4
  import { mcp } from "./middleware.js";
6
5
  import server from "./server.js";
@@ -14,6 +13,7 @@ app.use(mcp(server));
14
13
  const env = process.env.NODE_ENV || "development";
15
14
 
16
15
  if (env !== "production") {
16
+ app.use(await devtoolsStaticServer());
17
17
  app.use(await widgetsDevServer());
18
18
  }
19
19
 
@@ -27,6 +27,10 @@ app.listen(3000, (error) => {
27
27
  console.log(
28
28
  "Make your local server accessible with 'ngrok http 3000' and connect to ChatGPT with URL https://xxxxxx.ngrok-free.app/mcp",
29
29
  );
30
+
31
+ if (env !== "production") {
32
+ console.log("Devtools available at http://localhost:3000");
33
+ }
30
34
  });
31
35
 
32
36
  process.on("SIGINT", async () => {
@@ -3,10 +3,6 @@ import { z } from "zod";
3
3
 
4
4
  const Answers = [
5
5
  "As I see it, yes",
6
- "Ask again later",
7
- "Better not tell you now",
8
- "Cannot predict now",
9
- "Concentrate and ask again",
10
6
  "Don't count on it",
11
7
  "It is certain",
12
8
  "It is decidedly so",
@@ -15,7 +11,6 @@ const Answers = [
15
11
  "My sources say no",
16
12
  "Outlook good",
17
13
  "Outlook not so good",
18
- "Reply hazy, try again",
19
14
  "Signs point to yes",
20
15
  "Very doubtful",
21
16
  "Without a doubt",
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "ESNext",
5
+ "moduleResolution": "bundler",
6
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
7
+ "jsx": "react-jsx",
8
+
9
+ "strict": true,
10
+ "skipLibCheck": true,
11
+ "esModuleInterop": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "verbatimModuleSyntax": true,
14
+
15
+ "noUnusedLocals": true,
16
+ "noUnusedParameters": true,
17
+ "noFallthroughCasesInSwitch": true,
18
+
19
+ "noEmit": true
20
+ },
21
+ "include": ["server/src", "web/src", "web/vite.config.ts"],
22
+ "exclude": ["dist", "node_modules"]
23
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "noEmit": false,
5
+ "outDir": "server/dist",
6
+ "sourceMap": true,
7
+ "declaration": true
8
+ },
9
+ "include": ["server/src"],
10
+ "exclude": ["dist", "node_modules"]
11
+ }
@@ -15,6 +15,7 @@
15
15
  align-items: center;
16
16
  justify-content: center;
17
17
  font-family: monospace;
18
+ text-align: center;
18
19
  }
19
20
 
20
21
  .question {
@@ -5,7 +5,9 @@ import { useToolInfo } from "../helpers";
5
5
 
6
6
  function Magic8Ball() {
7
7
  const { input, output } = useToolInfo<"magic-8-ball">();
8
- if (!output) return <div>Shaking...</div>;
8
+ if (!output) {
9
+ return <div>Shaking...</div>;
10
+ }
9
11
 
10
12
  return (
11
13
  <div className="container">
@@ -6,7 +6,7 @@ import { defineConfig } from "vite";
6
6
  // https://vite.dev/config/
7
7
  export default defineConfig({
8
8
  plugins: [skybridge(), react()],
9
-
9
+ root: __dirname,
10
10
  resolve: {
11
11
  alias: {
12
12
  "@": path.resolve(__dirname, "./src"),