create-skybridge 0.0.0-dev.4 → 0.0.0-dev.45c7ad3

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/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export {};
1
+ export declare function init(args?: string[]): Promise<void>;
package/dist/index.js CHANGED
@@ -1,20 +1,14 @@
1
- import * as prompts from "@clack/prompts";
2
- import mri from "mri";
3
1
  import fs from "node:fs";
4
2
  import path from "node:path";
5
- import { spawnSync } from "node:child_process";
6
- const argv = mri(process.argv.slice(2), {
7
- boolean: ["help", "overwrite"],
8
- alias: { h: "help" },
9
- });
10
- const cwd = process.cwd();
11
- const TEMPLATE_REPO = "https://github.com/alpic-ai/apps-sdk-template";
3
+ import { fileURLToPath } from "node:url";
4
+ import * as prompts from "@clack/prompts";
5
+ import mri from "mri";
12
6
  const defaultProjectName = "skybridge-project";
13
7
  // prettier-ignore
14
8
  const helpMessage = `\
15
9
  Usage: create-skybridge [OPTION]... [DIRECTORY]
16
10
 
17
- Create a new Skybridge project by cloning the starter template.
11
+ Create a new Skybridge project by copying the starter template.
18
12
 
19
13
  Options:
20
14
  -h, --help show this help message
@@ -24,23 +18,13 @@ Examples:
24
18
  create-skybridge my-app
25
19
  create-skybridge . --overwrite
26
20
  `;
27
- function run([command, ...args], options) {
28
- if (!command) {
29
- throw new Error("Command is required");
30
- }
31
- const { status, error } = spawnSync(command, args, options);
32
- if (status != null && status > 0) {
33
- process.exit(status);
34
- }
35
- if (error) {
36
- console.error(`\n${command} ${args.join(" ")} error!`);
37
- console.error(error);
38
- process.exit(1);
39
- }
40
- }
41
- async function init() {
21
+ export async function init(args = process.argv.slice(2)) {
22
+ const argv = mri(args, {
23
+ boolean: ["help", "overwrite"],
24
+ alias: { h: "help" },
25
+ });
42
26
  const argTargetDir = argv._[0]
43
- ? formatTargetDir(String(argv._[0]))
27
+ ? sanitizeTargetDir(String(argv._[0]))
44
28
  : undefined;
45
29
  const argOverwrite = argv.overwrite;
46
30
  const help = argv.help;
@@ -59,14 +43,14 @@ async function init() {
59
43
  defaultValue: defaultProjectName,
60
44
  placeholder: defaultProjectName,
61
45
  validate: (value) => {
62
- return value.length === 0 || formatTargetDir(value).length > 0
46
+ return value.length === 0 || sanitizeTargetDir(value).length > 0
63
47
  ? undefined
64
48
  : "Invalid project name";
65
49
  },
66
50
  });
67
51
  if (prompts.isCancel(projectName))
68
52
  return cancel();
69
- targetDir = formatTargetDir(projectName);
53
+ targetDir = sanitizeTargetDir(projectName);
70
54
  }
71
55
  else {
72
56
  targetDir = defaultProjectName;
@@ -110,30 +94,44 @@ async function init() {
110
94
  return;
111
95
  }
112
96
  }
113
- const root = path.join(cwd, targetDir);
114
- // 3. Clone the repository
115
- prompts.log.step(`Cloning template from ${TEMPLATE_REPO}...`);
97
+ const root = path.join(process.cwd(), targetDir);
98
+ // 3. Copy the repository
99
+ prompts.log.step(`Copying template...`);
116
100
  try {
117
- // Clone directly to target directory
118
- run(["git", "clone", "--depth", "1", TEMPLATE_REPO, root], {
119
- stdio: "inherit",
101
+ const templateDir = fileURLToPath(new URL("../template", import.meta.url));
102
+ // Copy template to target directory
103
+ fs.cpSync(templateDir, root, {
104
+ recursive: true,
105
+ filter: (src) => [".npmrc", "pnpm-workspace.yaml"].every((file) => !src.endsWith(file)),
120
106
  });
121
- // Remove .git directory to start fresh
122
- const gitDir = path.join(root, ".git");
123
- if (fs.existsSync(gitDir)) {
124
- fs.rmSync(gitDir, { recursive: true, force: true });
125
- }
107
+ // Rename _gitignore to .gitignore
108
+ fs.renameSync(path.join(root, "_gitignore"), path.join(root, ".gitignore"));
109
+ // Update project name in package.json
110
+ const name = path.basename(root);
111
+ const pkgPath = path.join(root, "package.json");
112
+ const pkg = fs.readFileSync(pkgPath, "utf-8");
113
+ const fixed = pkg.replace(/apps-sdk-template/g, name);
114
+ fs.writeFileSync(pkgPath, fixed);
126
115
  prompts.log.success(`Project created in ${root}`);
127
116
  prompts.outro(`Done! Next steps:\n\n cd ${targetDir}\n pnpm install\n pnpm dev`);
128
117
  }
129
118
  catch (error) {
130
- prompts.log.error("Failed to clone repository");
119
+ prompts.log.error("Failed to copy repository");
131
120
  console.error(error);
132
121
  process.exit(1);
133
122
  }
134
123
  }
135
- function formatTargetDir(targetDir) {
136
- return targetDir.trim().replace(/\/+$/g, "");
124
+ function sanitizeTargetDir(targetDir) {
125
+ return (targetDir
126
+ .trim()
127
+ // Only keep alphanumeric, dash, underscore, dot, @, /
128
+ .replace(/[^a-zA-Z0-9\-_.@/]/g, "")
129
+ // Prevent path traversal
130
+ .replace(/\.\./g, "")
131
+ // Collapse multiple slashes
132
+ .replace(/\/+/g, "/")
133
+ // Remove leading/trailing slashes
134
+ .replace(/^\/+|\/+$/g, ""));
137
135
  }
138
136
  function isEmpty(path) {
139
137
  const files = fs.readdirSync(path);
@@ -150,7 +148,3 @@ function emptyDir(dir) {
150
148
  fs.rmSync(path.resolve(dir, file), { recursive: true, force: true });
151
149
  }
152
150
  }
153
- init().catch((e) => {
154
- console.error(e);
155
- process.exit(1);
156
- });
@@ -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,36 @@
1
1
  {
2
2
  "name": "create-skybridge",
3
- "version": "0.0.0-dev.4",
3
+ "version": "0.0.0-dev.45c7ad3",
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
- "dependencies": {},
15
- "devDependencies": {
16
- "@clack/prompts": "^0.11.0",
17
- "mri": "^1.2.0",
18
- "@types/node": "^25.0.3",
19
- "picocolors": "^1.1.1",
20
- "typescript": "^5.9.3"
21
- },
22
19
  "scripts": {
23
20
  "build": "tsc",
21
+ "test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
22
+ "test:unit": "vitest run",
24
23
  "test:type": "tsc --noEmit",
25
- "test:format": "biome ci"
24
+ "test:format": "biome ci",
25
+ "prepublishOnly": "pnpm run build"
26
+ },
27
+ "dependencies": {
28
+ "@clack/prompts": "^0.11.0",
29
+ "mri": "^1.2.0"
30
+ },
31
+ "devDependencies": {
32
+ "@types/node": "^25.0.3",
33
+ "typescript": "^5.9.3",
34
+ "vitest": "^2.1.9"
26
35
  }
27
- }
36
+ }
@@ -0,0 +1,77 @@
1
+ # ChatGPT Apps SDK Alpic Starter
2
+
3
+ A minimal TypeScript template for building OpenAI Apps SDK compatible MCP servers with widget rendering in ChatGPT.
4
+
5
+ ## Getting Started
6
+
7
+ ### Prerequisites
8
+
9
+ - Node.js 22+
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 ChatGPT)
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 ChatGPT
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,4 @@
1
+ node_modules/
2
+ dist/
3
+ .env*
4
+ .DS_store
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://assets.alpic.ai/alpic.json",
3
+ "buildOutputDir": "server/dist"
4
+ }
@@ -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.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/node_modules/@modelcontextprotocol/inspector/cli/build/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/node_modules/@modelcontextprotocol/inspector/cli/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/node_modules/@modelcontextprotocol/inspector/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/node_modules/@modelcontextprotocol/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/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.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/node_modules/@modelcontextprotocol/inspector/cli/build/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/node_modules/@modelcontextprotocol/inspector/cli/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/node_modules/@modelcontextprotocol/inspector/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/node_modules/@modelcontextprotocol/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.17.5_@types+node@22.18.12_@types+react-dom@19.2.3_@ty_960011790b33063d7255347351a0cc44/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.3.4/node_modules/shx/lib/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.3.4/node_modules/shx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.3.4/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.3.4/node_modules/shx/lib/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.3.4/node_modules/shx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.3.4/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.2.7_@types+node@22.18.12_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.2.7_@types+node@22.18.12_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.2.7_@types+node@22.18.12_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.2.7_@types+node@22.18.12_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.2.7_@types+node@22.18.12_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.2.7_@types+node@22.18.12_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
+ }
@@ -0,0 +1,39 @@
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": "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.24.3",
19
+ "express": "^5.1.0",
20
+ "react": "^19.1.1",
21
+ "react-dom": "^19.1.1",
22
+ "skybridge": "^0.15.3",
23
+ "vite": "^7.1.11",
24
+ "zod": "^4.1.13"
25
+ },
26
+ "devDependencies": {
27
+ "@modelcontextprotocol/inspector": "^0.17.5",
28
+ "@types/express": "^5.0.3",
29
+ "@types/node": "^22.15.30",
30
+ "@types/react": "^19.1.16",
31
+ "@types/react-dom": "^19.1.9",
32
+ "@vitejs/plugin-react": "^5.0.4",
33
+ "nodemon": "^3.1.10",
34
+ "shx": "^0.3.4",
35
+ "tsx": "^4.19.4",
36
+ "typescript": "^5.7.2"
37
+ },
38
+ "workspaces": []
39
+ }
@@ -0,0 +1,35 @@
1
+ import express, { type Express } from "express";
2
+
3
+ import { widgetsDevServer } from "skybridge/server";
4
+ import type { ViteDevServer } from "vite";
5
+ import { mcp } from "./middleware.js";
6
+ import server from "./server.js";
7
+
8
+ const app = express() as Express & { vite: ViteDevServer };
9
+
10
+ app.use(express.json());
11
+
12
+ app.use(mcp(server));
13
+
14
+ const env = process.env.NODE_ENV || "development";
15
+
16
+ if (env !== "production") {
17
+ app.use(await widgetsDevServer());
18
+ }
19
+
20
+ app.listen(3000, (error) => {
21
+ if (error) {
22
+ console.error("Failed to start server:", error);
23
+ process.exit(1);
24
+ }
25
+
26
+ console.log(`Server listening on port 3000 - ${env}`);
27
+ console.log(
28
+ "Make your local server accessible with 'ngrok http 3000' and connect to ChatGPT with URL https://xxxxxx.ngrok-free.app/mcp",
29
+ );
30
+ });
31
+
32
+ process.on("SIGINT", async () => {
33
+ console.log("Server shutdown complete");
34
+ process.exit(0);
35
+ });
@@ -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,66 @@
1
+ import { McpServer } from "skybridge/server";
2
+ import { z } from "zod";
3
+
4
+ const Answers = [
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
+ "Don't count on it",
11
+ "It is certain",
12
+ "It is decidedly so",
13
+ "Most likely",
14
+ "My reply is no",
15
+ "My sources say no",
16
+ "Outlook good",
17
+ "Outlook not so good",
18
+ "Reply hazy, try again",
19
+ "Signs point to yes",
20
+ "Very doubtful",
21
+ "Without a doubt",
22
+ "Yes definitely",
23
+ "Yes",
24
+ "You may rely on it",
25
+ ];
26
+
27
+ const server = new McpServer(
28
+ {
29
+ name: "alpic-openai-app",
30
+ version: "0.0.1",
31
+ },
32
+ { capabilities: {} },
33
+ ).registerWidget(
34
+ "magic-8-ball",
35
+ {
36
+ description: "Magic 8 Ball",
37
+ },
38
+ {
39
+ description: "For fortune-telling or seeking advice.",
40
+ inputSchema: {
41
+ question: z.string().describe("The user question."),
42
+ },
43
+ },
44
+ async ({ question }) => {
45
+ try {
46
+ // deterministic answer
47
+ const hash = question
48
+ .split("")
49
+ .reduce((acc, char) => acc + char.charCodeAt(0), 0);
50
+ const answer = Answers[hash % Answers.length];
51
+ return {
52
+ structuredContent: { answer },
53
+ content: [],
54
+ isError: false,
55
+ };
56
+ } catch (error) {
57
+ return {
58
+ content: [{ type: "text", text: `Error: ${error}` }],
59
+ isError: true,
60
+ };
61
+ }
62
+ },
63
+ );
64
+
65
+ export default server;
66
+ 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": "server/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,30 @@
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
+ }
19
+
20
+ .question {
21
+ font-size: 0.75rem;
22
+ color: lightgrey;
23
+ }
24
+
25
+ .answer {
26
+ font-size: 1.125rem;
27
+ font-weight: bold;
28
+ margin-top: 0.5rem;
29
+ color: aqua;
30
+ }
@@ -0,0 +1,22 @@
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) return <div>Shaking...</div>;
9
+
10
+ return (
11
+ <div className="container">
12
+ <div className="ball">
13
+ <div className="question">{input.question}</div>
14
+ <div className="answer">{output.answer}</div>
15
+ </div>
16
+ </div>
17
+ );
18
+ }
19
+
20
+ export default Magic8Ball;
21
+
22
+ 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
+ });
package/LICENSE DELETED
@@ -1,21 +0,0 @@
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.