create-skybridge 0.0.0-dev.2 → 0.0.0-dev.2039ab8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ export declare function init(args?: string[]): Promise<void>;
package/dist/index.js ADDED
@@ -0,0 +1,215 @@
1
+ import { spawnSync } from "node:child_process";
2
+ import fs from "node:fs";
3
+ import path from "node:path";
4
+ import { fileURLToPath } from "node:url";
5
+ import * as prompts from "@clack/prompts";
6
+ import mri from "mri";
7
+ const defaultProjectName = "skybridge-project";
8
+ // prettier-ignore
9
+ const helpMessage = `\
10
+ Usage: create-skybridge [OPTION]... [DIRECTORY]
11
+
12
+ Create a new Skybridge project by copying the starter template.
13
+
14
+ Options:
15
+ -h, --help show this help message
16
+ --overwrite remove existing files in target directory
17
+ --immediate install dependencies and start development server
18
+
19
+ Examples:
20
+ create-skybridge my-app
21
+ create-skybridge . --overwrite --immediate
22
+ `;
23
+ export async function init(args = process.argv.slice(2)) {
24
+ const argv = mri(args, {
25
+ boolean: ["help", "overwrite", "immediate"],
26
+ alias: { h: "help" },
27
+ });
28
+ const argTargetDir = argv._[0]
29
+ ? sanitizeTargetDir(String(argv._[0]))
30
+ : undefined;
31
+ const argOverwrite = argv.overwrite;
32
+ const argImmediate = argv.immediate;
33
+ const help = argv.help;
34
+ if (help) {
35
+ console.log(helpMessage);
36
+ return;
37
+ }
38
+ const interactive = process.stdin.isTTY;
39
+ const cancel = () => prompts.cancel("Operation cancelled");
40
+ // 1. Get project name and target dir
41
+ let targetDir = argTargetDir;
42
+ if (!targetDir) {
43
+ if (interactive) {
44
+ const projectName = await prompts.text({
45
+ message: "Project name:",
46
+ defaultValue: defaultProjectName,
47
+ placeholder: defaultProjectName,
48
+ validate: (value) => {
49
+ return value.length === 0 || sanitizeTargetDir(value).length > 0
50
+ ? undefined
51
+ : "Invalid project name";
52
+ },
53
+ });
54
+ if (prompts.isCancel(projectName)) {
55
+ return cancel();
56
+ }
57
+ targetDir = sanitizeTargetDir(projectName);
58
+ }
59
+ else {
60
+ targetDir = defaultProjectName;
61
+ }
62
+ }
63
+ // 2. Handle directory if exist and not empty
64
+ if (fs.existsSync(targetDir) && !isEmpty(targetDir)) {
65
+ let overwrite = argOverwrite ? "yes" : undefined;
66
+ if (!overwrite) {
67
+ if (interactive) {
68
+ const res = await prompts.select({
69
+ message: (targetDir === "."
70
+ ? "Current directory"
71
+ : `Target directory "${targetDir}"`) +
72
+ ` is not empty. Please choose how to proceed:`,
73
+ options: [
74
+ {
75
+ label: "Cancel operation",
76
+ value: "no",
77
+ },
78
+ {
79
+ label: "Remove existing files and continue",
80
+ value: "yes",
81
+ },
82
+ ],
83
+ });
84
+ if (prompts.isCancel(res)) {
85
+ return cancel();
86
+ }
87
+ overwrite = res;
88
+ }
89
+ else {
90
+ overwrite = "no";
91
+ }
92
+ }
93
+ switch (overwrite) {
94
+ case "yes":
95
+ emptyDir(targetDir);
96
+ break;
97
+ case "no":
98
+ cancel();
99
+ return;
100
+ }
101
+ }
102
+ const root = path.join(process.cwd(), targetDir);
103
+ // 3. Copy the repository
104
+ prompts.log.step(`Copying template...`);
105
+ try {
106
+ const templateDir = fileURLToPath(new URL("../template", import.meta.url));
107
+ // Copy template to target directory
108
+ fs.cpSync(templateDir, root, {
109
+ recursive: true,
110
+ filter: (src) => [".npmrc"].every((file) => !src.endsWith(file)),
111
+ });
112
+ // Rename _gitignore to .gitignore
113
+ fs.renameSync(path.join(root, "_gitignore"), path.join(root, ".gitignore"));
114
+ // Update project name in package.json
115
+ const name = path.basename(root);
116
+ const pkgPath = path.join(root, "package.json");
117
+ const pkg = fs.readFileSync(pkgPath, "utf-8");
118
+ const fixed = pkg.replace(/apps-sdk-template/g, name);
119
+ fs.writeFileSync(pkgPath, fixed);
120
+ prompts.log.success(`Project created in ${root}`);
121
+ }
122
+ catch (error) {
123
+ prompts.log.error("Failed to copy repository");
124
+ console.error(error);
125
+ process.exit(1);
126
+ }
127
+ const userAgent = process.env.npm_config_user_agent;
128
+ const pkgManager = userAgent?.split(" ")[0]?.split("/")[0] || "npm";
129
+ // 4. Ask about immediate installation
130
+ let immediate = argImmediate;
131
+ if (immediate === undefined) {
132
+ if (interactive) {
133
+ const immediateResult = await prompts.confirm({
134
+ message: `Install with ${pkgManager} and start now?`,
135
+ });
136
+ if (prompts.isCancel(immediateResult)) {
137
+ return cancel();
138
+ }
139
+ immediate = immediateResult;
140
+ }
141
+ else {
142
+ immediate = false;
143
+ }
144
+ }
145
+ const installCmd = [pkgManager, "install"];
146
+ const runCmd = [pkgManager];
147
+ switch (pkgManager) {
148
+ case "yarn":
149
+ case "pnpm":
150
+ case "bun":
151
+ break;
152
+ case "deno":
153
+ runCmd.push("task");
154
+ break;
155
+ default:
156
+ runCmd.push("run");
157
+ }
158
+ runCmd.push("dev");
159
+ if (!immediate) {
160
+ prompts.outro(`Done! Next steps:
161
+ cd ${targetDir}
162
+ ${installCmd.join(" ")}
163
+ ${runCmd.join(" ")}
164
+ `);
165
+ return;
166
+ }
167
+ prompts.log.step(`Installing dependencies with ${pkgManager}...`);
168
+ run(installCmd, {
169
+ stdio: "inherit",
170
+ cwd: root,
171
+ });
172
+ prompts.log.step("Starting dev server...");
173
+ run(runCmd, {
174
+ stdio: "inherit",
175
+ cwd: root,
176
+ });
177
+ }
178
+ function run([command, ...args], options) {
179
+ const { status, error } = spawnSync(command, args, options);
180
+ if (status != null && status > 0) {
181
+ process.exit(status);
182
+ }
183
+ if (error) {
184
+ console.error(`\n${command} ${args.join(" ")} error!`);
185
+ console.error(error);
186
+ process.exit(1);
187
+ }
188
+ }
189
+ function sanitizeTargetDir(targetDir) {
190
+ return (targetDir
191
+ .trim()
192
+ // Only keep alphanumeric, dash, underscore, dot, @, /
193
+ .replace(/[^a-zA-Z0-9\-_.@/]/g, "")
194
+ // Prevent path traversal
195
+ .replace(/\.\./g, "")
196
+ // Collapse multiple slashes
197
+ .replace(/\/+/g, "/")
198
+ // Remove leading/trailing slashes
199
+ .replace(/^\/+|\/+$/g, ""));
200
+ }
201
+ function isEmpty(path) {
202
+ const files = fs.readdirSync(path);
203
+ return files.length === 0 || (files.length === 1 && files[0] === ".git");
204
+ }
205
+ function emptyDir(dir) {
206
+ if (!fs.existsSync(dir)) {
207
+ return;
208
+ }
209
+ for (const file of fs.readdirSync(dir)) {
210
+ if (file === ".git") {
211
+ continue;
212
+ }
213
+ fs.rmSync(path.resolve(dir, file), { recursive: true, force: true });
214
+ }
215
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,23 @@
1
+ import { randomBytes } from "node:crypto";
2
+ import fs from "node:fs/promises";
3
+ import path from "node:path";
4
+ import { afterEach, beforeEach, describe, expect, it } from "vitest";
5
+ import { init } from "./index.js";
6
+ describe("create-skybridge", () => {
7
+ let tempDirName;
8
+ beforeEach(() => {
9
+ tempDirName = `test-${randomBytes(2).toString("hex")}`;
10
+ });
11
+ afterEach(async () => {
12
+ await fs.rm(path.join(process.cwd(), tempDirName), {
13
+ recursive: true,
14
+ force: true,
15
+ });
16
+ });
17
+ it("should scaffold a new project", async () => {
18
+ const name = `../../${tempDirName}//project$`;
19
+ await init([name]);
20
+ await fs.access(path.join(process.cwd(), tempDirName, "project", ".gitignore"));
21
+ expect(fs.access(path.join(process.cwd(), tempDirName, "project", ".npmrc"))).rejects.toThrowError();
22
+ });
23
+ });
package/index.js CHANGED
@@ -1,3 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import "./dist/index.js";
3
+ import { init } from "./dist/index.js";
4
+
5
+ init().catch((e) => {
6
+ console.error(e);
7
+ process.exit(1);
8
+ });
package/package.json CHANGED
@@ -1,27 +1,33 @@
1
1
  {
2
2
  "name": "create-skybridge",
3
- "version": "0.0.0-dev.2",
3
+ "version": "0.0.0-dev.2039ab8",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Alpic",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/alpic-ai/skybridge.git"
10
+ },
7
11
  "bin": {
8
12
  "create-skybridge": "index.js"
9
13
  },
10
14
  "files": [
11
15
  "index.js",
12
- "dist"
16
+ "dist",
17
+ "template"
13
18
  ],
14
19
  "dependencies": {
15
20
  "@clack/prompts": "^0.11.0",
16
21
  "mri": "^1.2.0"
17
22
  },
18
23
  "devDependencies": {
19
- "@types/node": "^25.0.3",
20
- "picocolors": "^1.1.1",
21
- "typescript": "^5.9.3"
24
+ "typescript": "^5.9.3",
25
+ "vitest": "^4.0.17"
22
26
  },
23
27
  "scripts": {
24
28
  "build": "tsc",
29
+ "test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
30
+ "test:unit": "vitest run",
25
31
  "test:type": "tsc --noEmit",
26
32
  "test:format": "biome ci"
27
33
  }
@@ -0,0 +1,77 @@
1
+ # Skybridge Starter
2
+
3
+ A minimal TypeScript template for building ChatGPT and MCP Apps with widget rendering.
4
+
5
+ ## Getting Started
6
+
7
+ ### Prerequisites
8
+
9
+ - Node.js 24+
10
+ - HTTP tunnel such as [ngrok](https://ngrok.com/download)
11
+
12
+ ### Local Development
13
+
14
+ #### 1. Install
15
+
16
+ ```bash
17
+ npm install
18
+ # or
19
+ yarn install
20
+ # or
21
+ pnpm install
22
+ # or
23
+ bun install
24
+ ```
25
+
26
+ #### 2. Start your local server
27
+
28
+ Run the development server from the root directory:
29
+
30
+ ```bash
31
+ npm run dev
32
+ # or
33
+ yarn dev
34
+ # or
35
+ pnpm dev
36
+ # or
37
+ bun dev
38
+ ```
39
+
40
+ This command starts an Express server on port 3000. This server packages:
41
+
42
+ - an MCP endpoint on `/mcp` (the app backend)
43
+ - a React application on Vite HMR dev server (the UI elements to be displayed in the host)
44
+
45
+ #### 3. Connect to ChatGPT
46
+
47
+ - ChatGPT requires connectors to be publicly accessible. To expose your server on the Internet, run:
48
+ ```bash
49
+ ngrok http 3000
50
+ ```
51
+ - In ChatGPT, navigate to **Settings → Connectors → Create** and add the forwarding URL provided by ngrok suffixed with `/mcp` (e.g. `https://3785c5ddc4b6.ngrok-free.app/mcp`)
52
+
53
+ ### Create your first widget
54
+
55
+ #### 1. Add a new widget
56
+
57
+ - Register a widget in `server/server.ts` with a unique name (e.g., `my-widget`)
58
+ - Create a matching React component at `web/src/widgets/my-widget.tsx`. The file name must match the widget name exactly
59
+
60
+ #### 2. Edit widgets with Hot Module Replacement (HMR)
61
+
62
+ Edit and save components in `web/src/widgets/` — changes appear instantly in the host
63
+
64
+ #### 3. Edit server code
65
+
66
+ Modify files in `server/` and reload your ChatGPT connector in **Settings → Connectors → [Your connector] → Reload**
67
+
68
+ ## Deploy to Production
69
+
70
+ - Use [Alpic](https://alpic.ai/) to deploy your OpenAI App to production
71
+ - In ChatGPT, navigate to **Settings → Connectors → Create** and add your MCP server URL (e.g., `https://your-app-name.alpic.live`)
72
+
73
+ ## Resources
74
+
75
+ - [Apps SDK Documentation](https://developers.openai.com/apps-sdk)
76
+ - [Model Context Protocol Documentation](https://modelcontextprotocol.io/)
77
+ - [Alpic Documentation](https://docs.alpic.ai/)
@@ -0,0 +1,5 @@
1
+ node_modules/
2
+ dist/
3
+ .env*
4
+ .DS_store
5
+ *.tsbuildinfo
@@ -0,0 +1,3 @@
1
+ {
2
+ "$schema": "https://assets.alpic.ai/alpic.json"
3
+ }
@@ -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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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_4be4554909ca0a790f3ece65616617d1/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/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/node_modules/skybridge/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/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/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/node_modules/skybridge/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/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/../skybridge/bin/run.js" "$@"
19
+ else
20
+ exec node "$basedir/../skybridge/bin/run.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/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/node_modules/skybridge/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/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/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/node_modules/skybridge/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.22.0_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_3cdcde3546766f8b800748b91e002c35/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/../skybridge/bin/run.js" "$@"
19
+ else
20
+ exec node "$basedir/../skybridge/bin/run.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.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/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.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/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
+ }
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "apps-sdk-template",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "description": "Alpic MCP Server Template",
6
+ "type": "module",
7
+ "scripts": {
8
+ "dev": "skybridge dev",
9
+ "build": "skybridge build",
10
+ "start": "skybridge start",
11
+ "inspector": "mcp-inspector http://localhost:3000/mcp",
12
+ "server:build": "tsc -p tsconfig.server.json",
13
+ "server:start": "node 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.2",
19
+ "cors": "^2.8.5",
20
+ "express": "^5.2.1",
21
+ "react": "^19.2.3",
22
+ "react-dom": "^19.2.3",
23
+ "skybridge": ">=0.22.0 <1.0.0",
24
+ "vite": "^7.3.1",
25
+ "zod": "^4.3.5"
26
+ },
27
+ "devDependencies": {
28
+ "@modelcontextprotocol/inspector": "^0.18.0",
29
+ "@skybridge/devtools": ">=0.22.0 <1.0.0",
30
+ "@types/cors": "^2.8.19",
31
+ "@types/express": "^5.0.6",
32
+ "@types/react": "^19.2.8",
33
+ "@types/react-dom": "^19.2.3",
34
+ "@vitejs/plugin-react": "^5.1.2",
35
+ "nodemon": "^3.1.11",
36
+ "shx": "^0.4.0",
37
+ "tsx": "^4.21.0",
38
+ "typescript": "^5.9.3"
39
+ },
40
+ "engines": {
41
+ "node": ">=24.13.0"
42
+ }
43
+ }
@@ -0,0 +1,42 @@
1
+ import path from "node:path";
2
+ import { fileURLToPath } from "node:url";
3
+ import cors from "cors";
4
+ import express, { type Express } from "express";
5
+ import { widgetsDevServer } from "skybridge/server";
6
+ import type { ViteDevServer } from "vite";
7
+ import { mcp } from "./middleware.js";
8
+ import server from "./server.js";
9
+
10
+ const app = express() as Express & { vite: ViteDevServer };
11
+
12
+ app.use(express.json());
13
+
14
+ app.use(mcp(server));
15
+
16
+ const env = process.env.NODE_ENV || "development";
17
+
18
+ if (env !== "production") {
19
+ const { devtoolsStaticServer } = await import("@skybridge/devtools");
20
+ app.use(await devtoolsStaticServer());
21
+ app.use(await widgetsDevServer());
22
+ }
23
+
24
+ if (env === "production") {
25
+ const __filename = fileURLToPath(import.meta.url);
26
+ const __dirname = path.dirname(__filename);
27
+
28
+ app.use("/assets", cors());
29
+ app.use("/assets", express.static(path.join(__dirname, "assets")));
30
+ }
31
+
32
+ app.listen(3000, (error) => {
33
+ if (error) {
34
+ console.error("Failed to start server:", error);
35
+ process.exit(1);
36
+ }
37
+ });
38
+
39
+ process.on("SIGINT", async () => {
40
+ console.log("Server shutdown complete");
41
+ process.exit(0);
42
+ });
@@ -0,0 +1,54 @@
1
+ import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
2
+ import type { NextFunction, Request, Response } from "express";
3
+
4
+ import type { McpServer } from "skybridge/server";
5
+
6
+ export const mcp =
7
+ (server: McpServer) =>
8
+ async (req: Request, res: Response, next: NextFunction) => {
9
+ // Only handle requests to the /mcp path
10
+ if (req.path !== "/mcp") {
11
+ return next();
12
+ }
13
+
14
+ if (req.method === "POST") {
15
+ try {
16
+ const transport = new StreamableHTTPServerTransport({
17
+ sessionIdGenerator: undefined,
18
+ });
19
+
20
+ res.on("close", () => {
21
+ transport.close();
22
+ });
23
+
24
+ await server.connect(transport);
25
+
26
+ await transport.handleRequest(req, res, req.body);
27
+ } catch (error) {
28
+ console.error("Error handling MCP request:", error);
29
+ if (!res.headersSent) {
30
+ res.status(500).json({
31
+ jsonrpc: "2.0",
32
+ error: {
33
+ code: -32603,
34
+ message: "Internal server error",
35
+ },
36
+ id: null,
37
+ });
38
+ }
39
+ }
40
+ } else if (req.method === "GET" || req.method === "DELETE") {
41
+ res.writeHead(405).end(
42
+ JSON.stringify({
43
+ jsonrpc: "2.0",
44
+ error: {
45
+ code: -32000,
46
+ message: "Method not allowed.",
47
+ },
48
+ id: null,
49
+ }),
50
+ );
51
+ } else {
52
+ next();
53
+ }
54
+ };
@@ -0,0 +1,61 @@
1
+ import { McpServer } from "skybridge/server";
2
+ import { z } from "zod";
3
+
4
+ const Answers = [
5
+ "As I see it, yes",
6
+ "Don't count on it",
7
+ "It is certain",
8
+ "It is decidedly so",
9
+ "Most likely",
10
+ "My reply is no",
11
+ "My sources say no",
12
+ "Outlook good",
13
+ "Outlook not so good",
14
+ "Signs point to yes",
15
+ "Very doubtful",
16
+ "Without a doubt",
17
+ "Yes definitely",
18
+ "Yes",
19
+ "You may rely on it",
20
+ ];
21
+
22
+ const server = new McpServer(
23
+ {
24
+ name: "alpic-openai-app",
25
+ version: "0.0.1",
26
+ },
27
+ { capabilities: {} },
28
+ ).registerWidget(
29
+ "magic-8-ball",
30
+ {
31
+ description: "Magic 8 Ball",
32
+ },
33
+ {
34
+ description: "For fortune-telling or seeking advice.",
35
+ inputSchema: {
36
+ question: z.string().describe("The user question."),
37
+ },
38
+ },
39
+ async ({ question }) => {
40
+ try {
41
+ // deterministic answer
42
+ const hash = question
43
+ .split("")
44
+ .reduce((acc, char) => acc + char.charCodeAt(0), 0);
45
+ const answer = Answers[hash % Answers.length];
46
+ return {
47
+ structuredContent: { answer },
48
+ content: [],
49
+ isError: false,
50
+ };
51
+ } catch (error) {
52
+ return {
53
+ content: [{ type: "text", text: `Error: ${error}` }],
54
+ isError: true,
55
+ };
56
+ }
57
+ },
58
+ );
59
+
60
+ export default server;
61
+ export type AppType = typeof server;
@@ -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": "dist",
6
+ "sourceMap": true,
7
+ "declaration": true
8
+ },
9
+ "include": ["server/src"],
10
+ "exclude": ["dist", "node_modules"]
11
+ }
@@ -0,0 +1,4 @@
1
+ import { generateHelpers } from "skybridge/web";
2
+ import type { AppType } from "../../server/src/server";
3
+
4
+ export const { useToolInfo } = generateHelpers<AppType>();
@@ -0,0 +1,31 @@
1
+ .container {
2
+ display: flex;
3
+ justify-content: center;
4
+ align-items: center;
5
+ height: 100%;
6
+ }
7
+
8
+ .ball {
9
+ background-color: black;
10
+ border-radius: 50%;
11
+ width: 12rem;
12
+ height: 12rem;
13
+ display: flex;
14
+ flex-direction: column;
15
+ align-items: center;
16
+ justify-content: center;
17
+ font-family: monospace;
18
+ text-align: center;
19
+ }
20
+
21
+ .question {
22
+ font-size: 0.75rem;
23
+ color: lightgrey;
24
+ }
25
+
26
+ .answer {
27
+ font-size: 1.125rem;
28
+ font-weight: bold;
29
+ margin-top: 0.5rem;
30
+ color: aqua;
31
+ }
@@ -0,0 +1,24 @@
1
+ import "@/index.css";
2
+
3
+ import { mountWidget } from "skybridge/web";
4
+ import { useToolInfo } from "../helpers";
5
+
6
+ function Magic8Ball() {
7
+ const { input, output } = useToolInfo<"magic-8-ball">();
8
+ if (!output) {
9
+ return <div>Shaking...</div>;
10
+ }
11
+
12
+ return (
13
+ <div className="container">
14
+ <div className="ball">
15
+ <div className="question">{input.question}</div>
16
+ <div className="answer">{output.answer}</div>
17
+ </div>
18
+ </div>
19
+ );
20
+ }
21
+
22
+ export default Magic8Ball;
23
+
24
+ mountWidget(<Magic8Ball />);
@@ -0,0 +1,15 @@
1
+ import path from "node:path";
2
+ import react from "@vitejs/plugin-react";
3
+ import { skybridge } from "skybridge/web";
4
+ import { defineConfig } from "vite";
5
+
6
+ // https://vite.dev/config/
7
+ export default defineConfig({
8
+ plugins: [skybridge(), react()],
9
+ root: __dirname,
10
+ resolve: {
11
+ alias: {
12
+ "@": path.resolve(__dirname, "./src"),
13
+ },
14
+ },
15
+ });