create-skybridge 0.0.0-dev.fd05cd0 → 0.0.0-dev.fd1d3d8

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 (50) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.d.ts +1 -1
  3. package/dist/index.js +182 -44
  4. package/dist/index.test.d.ts +1 -0
  5. package/dist/index.test.js +33 -0
  6. package/index.js +6 -1
  7. package/package.json +13 -11
  8. package/template/AGENTS.md +1 -0
  9. package/template/README.md +52 -71
  10. package/template/_gitignore +3 -192
  11. package/template/alpic.json +1 -2
  12. package/template/node_modules/.bin/alpic +21 -0
  13. package/template/node_modules/.bin/sb +21 -0
  14. package/template/node_modules/.bin/skybridge +21 -0
  15. package/template/node_modules/.bin/tsc +21 -0
  16. package/template/node_modules/.bin/tsserver +21 -0
  17. package/template/node_modules/.bin/tsx +21 -0
  18. package/template/node_modules/.bin/vite +21 -0
  19. package/template/package.json +22 -10
  20. package/template/server/src/index.ts +62 -34
  21. package/template/tsconfig.json +9 -0
  22. package/template/web/src/helpers.ts +2 -2
  23. package/template/web/src/index.css +143 -109
  24. package/template/web/src/widgets/magic-8-ball.tsx +27 -0
  25. package/template/web/vite.config.ts +3 -4
  26. package/template/.cursor/mcp.json +0 -7
  27. package/template/.nvmrc +0 -1
  28. package/template/.vscode/launch.json +0 -16
  29. package/template/.vscode/settings.json +0 -3
  30. package/template/.vscode/tasks.json +0 -14
  31. package/template/docs/demo.gif +0 -0
  32. package/template/pnpm-lock.yaml +0 -317
  33. package/template/pnpm-workspace.yaml +0 -7
  34. package/template/server/nodemon.json +0 -5
  35. package/template/server/package.json +0 -36
  36. package/template/server/pnpm-lock.yaml +0 -3796
  37. package/template/server/src/env.ts +0 -12
  38. package/template/server/src/middleware.ts +0 -54
  39. package/template/server/src/pokedex.ts +0 -148
  40. package/template/server/src/server.ts +0 -76
  41. package/template/server/tsconfig.json +0 -17
  42. package/template/web/components.json +0 -22
  43. package/template/web/package.json +0 -32
  44. package/template/web/pnpm-lock.yaml +0 -2629
  45. package/template/web/src/components/ui/shadcn-io/spinner/index.tsx +0 -272
  46. package/template/web/src/utils.ts +0 -6
  47. package/template/web/src/widgets/pokemon.tsx +0 -203
  48. package/template/web/tsconfig.app.json +0 -34
  49. package/template/web/tsconfig.json +0 -13
  50. 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.d.ts CHANGED
@@ -1 +1 @@
1
- export {};
1
+ export declare function init(args?: string[]): Promise<void>;
package/dist/index.js CHANGED
@@ -1,13 +1,10 @@
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";
6
+ import { downloadTemplate } from "giget";
5
7
  import mri from "mri";
6
- const argv = mri(process.argv.slice(2), {
7
- boolean: ["help", "overwrite"],
8
- alias: { h: "help" },
9
- });
10
- const cwd = process.cwd();
11
8
  const defaultProjectName = "skybridge-project";
12
9
  // prettier-ignore
13
10
  const helpMessage = `\
@@ -17,17 +14,32 @@ Create a new Skybridge project by copying the starter template.
17
14
 
18
15
  Options:
19
16
  -h, --help show this help message
17
+ --repo <uri> use a git repository instead of the built-in template
20
18
  --overwrite remove existing files in target directory
19
+ --immediate install dependencies and start development server
20
+
21
+ Repository URI formats:
22
+ github:user/repo
23
+ gitlab:user/repo/subdirectory
24
+ bitbucket:user/repo#branch
21
25
 
22
26
  Examples:
23
27
  create-skybridge my-app
24
- create-skybridge . --overwrite
28
+ create-skybridge my-app --repo github:alpic-ai/skybridge/examples/ecom-carousel
29
+ create-skybridge . --overwrite --immediate
25
30
  `;
26
- async function init() {
31
+ export async function init(args = process.argv.slice(2)) {
32
+ const argv = mri(args, {
33
+ boolean: ["help", "overwrite", "immediate"],
34
+ string: ["repo"],
35
+ alias: { h: "help" },
36
+ });
27
37
  const argTargetDir = argv._[0]
28
- ? formatTargetDir(String(argv._[0]))
38
+ ? sanitizeTargetDir(String(argv._[0]))
29
39
  : undefined;
40
+ const argRepo = argv.repo;
30
41
  const argOverwrite = argv.overwrite;
42
+ const argImmediate = argv.immediate;
31
43
  const help = argv.help;
32
44
  if (help) {
33
45
  console.log(helpMessage);
@@ -44,14 +56,15 @@ async function init() {
44
56
  defaultValue: defaultProjectName,
45
57
  placeholder: defaultProjectName,
46
58
  validate: (value) => {
47
- return value.length === 0 || formatTargetDir(value).length > 0
59
+ return !value || sanitizeTargetDir(value).length > 0
48
60
  ? undefined
49
61
  : "Invalid project name";
50
62
  },
51
63
  });
52
- if (prompts.isCancel(projectName))
64
+ if (prompts.isCancel(projectName)) {
53
65
  return cancel();
54
- targetDir = formatTargetDir(projectName);
66
+ }
67
+ targetDir = sanitizeTargetDir(projectName);
55
68
  }
56
69
  else {
57
70
  targetDir = defaultProjectName;
@@ -78,8 +91,9 @@ async function init() {
78
91
  },
79
92
  ],
80
93
  });
81
- if (prompts.isCancel(res))
94
+ if (prompts.isCancel(res)) {
82
95
  return cancel();
96
+ }
83
97
  overwrite = res;
84
98
  }
85
99
  else {
@@ -91,55 +105,179 @@ async function init() {
91
105
  emptyDir(targetDir);
92
106
  break;
93
107
  case "no":
94
- cancel();
95
- return;
108
+ prompts.log.error("Target directory is not empty.");
109
+ process.exit(1);
96
110
  }
97
111
  }
98
- const root = path.join(cwd, targetDir);
99
- // 3. Copy the repository
100
- prompts.log.step(`Copying template...`);
112
+ const root = path.join(process.cwd(), targetDir);
113
+ // 3. Download from repo or copy template
101
114
  try {
102
- const templateDir = fileURLToPath(new URL("../template", import.meta.url));
103
- // Copy template to target directory
104
- fs.cpSync(templateDir, root, { recursive: true });
105
- // Rename _gitignore to .gitignore
106
- fs.renameSync(path.join(root, "_gitignore"), path.join(root, ".gitignore"));
107
- // Update project name in package.json
108
- const name = path.basename(root);
109
- for (const dir of ["", "server", "web"]) {
110
- const pkgPath = path.join(root, dir, "package.json");
111
- const pkg = fs.readFileSync(pkgPath, "utf-8");
112
- const fixed = pkg.replace(/apps-sdk-template/g, name);
113
- fs.writeFileSync(pkgPath, fixed);
115
+ if (argRepo) {
116
+ prompts.log.step(`Downloading ${argRepo}...`);
117
+ await downloadTemplate(argRepo, { dir: root });
118
+ prompts.log.success(`Project created in ${root}`);
119
+ }
120
+ else {
121
+ prompts.log.step(`Copying template...`);
122
+ const templateDir = fileURLToPath(new URL("../template", import.meta.url));
123
+ // Copy template to target directory
124
+ fs.cpSync(templateDir, root, {
125
+ recursive: true,
126
+ filter: (src) => [".npmrc"].every((file) => !src.endsWith(file)),
127
+ });
128
+ // Rename _gitignore to .gitignore
129
+ fs.renameSync(path.join(root, "_gitignore"), path.join(root, ".gitignore"));
130
+ prompts.log.success(`Project created in ${root}`);
114
131
  }
115
- prompts.log.success(`Project created in ${root}`);
116
- prompts.outro(`Done! Next steps:\n\n cd ${targetDir}\n pnpm install\n pnpm dev`);
117
132
  }
118
133
  catch (error) {
119
- prompts.log.error("Failed to copy repository");
134
+ prompts.log.error("Failed to create project from template");
135
+ console.error(error);
136
+ process.exit(1);
137
+ }
138
+ // Update project name in package.json
139
+ const pkgPath = path.join(root, "package.json");
140
+ if (!fs.existsSync(pkgPath)) {
141
+ prompts.log.error("No package.json found in project");
142
+ process.exit(1);
143
+ }
144
+ try {
145
+ const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
146
+ pkg.name = path.basename(root);
147
+ fs.writeFileSync(pkgPath, `${JSON.stringify(pkg, null, 2)}\n`);
148
+ }
149
+ catch (error) {
150
+ prompts.log.error("Failed to update project name in package.json");
151
+ console.error(error);
152
+ process.exit(1);
153
+ }
154
+ const userAgent = process.env.npm_config_user_agent;
155
+ const pkgManager = userAgent?.split(" ")[0]?.split("/")[0] || "npm";
156
+ // 4. Ask about skills installation
157
+ if (interactive) {
158
+ const skillsResult = await prompts.confirm({
159
+ message: "Install the coding agents skills? (recommended)",
160
+ initialValue: true,
161
+ });
162
+ if (prompts.isCancel(skillsResult)) {
163
+ return cancel();
164
+ }
165
+ if (skillsResult) {
166
+ run([
167
+ ...getPkgExecCmd(pkgManager, "skills"),
168
+ "add",
169
+ "alpic-ai/skybridge",
170
+ "-s",
171
+ "chatgpt-app-builder",
172
+ ], {
173
+ stdio: "inherit",
174
+ cwd: targetDir,
175
+ });
176
+ }
177
+ }
178
+ // 5. Ask about immediate installation
179
+ let immediate = argImmediate;
180
+ if (immediate === undefined) {
181
+ if (interactive) {
182
+ const immediateResult = await prompts.confirm({
183
+ message: `Install with ${pkgManager} and start now?`,
184
+ });
185
+ if (prompts.isCancel(immediateResult)) {
186
+ return cancel();
187
+ }
188
+ immediate = immediateResult;
189
+ }
190
+ else {
191
+ immediate = false;
192
+ }
193
+ }
194
+ const installCmd = [pkgManager, "install"];
195
+ const runCmd = [pkgManager];
196
+ switch (pkgManager) {
197
+ case "yarn":
198
+ case "pnpm":
199
+ case "bun":
200
+ break;
201
+ case "deno":
202
+ runCmd.push("task");
203
+ break;
204
+ default:
205
+ runCmd.push("run");
206
+ }
207
+ runCmd.push("dev");
208
+ if (!immediate) {
209
+ prompts.outro(`Done! Next steps:
210
+ cd ${targetDir}
211
+ ${installCmd.join(" ")}
212
+ ${runCmd.join(" ")}
213
+ `);
214
+ return;
215
+ }
216
+ prompts.log.step(`Installing dependencies with ${pkgManager}...`);
217
+ run(installCmd, {
218
+ stdio: "inherit",
219
+ cwd: root,
220
+ });
221
+ prompts.log.step("Starting dev server...");
222
+ run(runCmd, {
223
+ stdio: "inherit",
224
+ cwd: root,
225
+ });
226
+ }
227
+ function run([command, ...args], options) {
228
+ const { status, error } = spawnSync(command, args, options);
229
+ if (status != null && status > 0) {
230
+ process.exit(status);
231
+ }
232
+ if (error) {
233
+ console.error(`\n${command} ${args.join(" ")} error!`);
120
234
  console.error(error);
121
235
  process.exit(1);
122
236
  }
123
237
  }
124
- function formatTargetDir(targetDir) {
125
- return targetDir.trim().replace(/\/+$/g, "");
238
+ function sanitizeTargetDir(targetDir) {
239
+ return (targetDir
240
+ .trim()
241
+ // Only keep alphanumeric, dash, underscore, dot, @, /
242
+ .replace(/[^a-zA-Z0-9\-_.@/]/g, "")
243
+ // Prevent path traversal
244
+ .replace(/\.\./g, "")
245
+ // Collapse multiple slashes
246
+ .replace(/\/+/g, "/")
247
+ // Remove leading/trailing slashes
248
+ .replace(/^\/+|\/+$/g, ""));
249
+ }
250
+ // Skip user's SPEC.md and IDE/agent preferences (.idea, .claude, etc.)
251
+ function isSkippedEntry(entry) {
252
+ return ((entry.name.startsWith(".") && entry.isDirectory()) ||
253
+ entry.name === "SPEC.md");
126
254
  }
127
- function isEmpty(path) {
128
- const files = fs.readdirSync(path);
129
- return files.length === 0 || (files.length === 1 && files[0] === ".git");
255
+ function isEmpty(dirPath) {
256
+ const entries = fs.readdirSync(dirPath, { withFileTypes: true });
257
+ return entries.every(isSkippedEntry);
130
258
  }
131
259
  function emptyDir(dir) {
132
260
  if (!fs.existsSync(dir)) {
133
261
  return;
134
262
  }
135
- for (const file of fs.readdirSync(dir)) {
136
- if (file === ".git") {
263
+ for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
264
+ if (isSkippedEntry(entry)) {
137
265
  continue;
138
266
  }
139
- fs.rmSync(path.resolve(dir, file), { recursive: true, force: true });
267
+ fs.rmSync(path.join(dir, entry.name), { recursive: true, force: true });
268
+ }
269
+ }
270
+ function getPkgExecCmd(pkgManager, cmd) {
271
+ switch (pkgManager) {
272
+ case "yarn":
273
+ return ["yarn", "dlx", cmd];
274
+ case "pnpm":
275
+ return ["pnpm", "dlx", cmd];
276
+ case "bun":
277
+ return ["bunx", cmd];
278
+ case "deno":
279
+ return ["deno", "run", "-A", `npm:${cmd}`];
280
+ default:
281
+ return ["npx", cmd];
140
282
  }
141
283
  }
142
- init().catch((e) => {
143
- console.error(e);
144
- process.exit(1);
145
- });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,33 @@
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 copy the template", 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
+ it("should download template from repo", async () => {
24
+ const name = `../../${tempDirName}//project$`;
25
+ await init([
26
+ name,
27
+ "--repo",
28
+ "github:alpic-ai/skybridge/examples/ecom-carousel",
29
+ ]);
30
+ await fs.access(path.join(process.cwd(), tempDirName, "project", ".gitignore"));
31
+ expect(fs.access(path.join(process.cwd(), tempDirName, "project", ".npmrc"))).rejects.toThrowError();
32
+ });
33
+ });
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,6 +1,6 @@
1
1
  {
2
2
  "name": "create-skybridge",
3
- "version": "0.0.0-dev.fd05cd0",
3
+ "version": "0.0.0-dev.fd1d3d8",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Alpic",
@@ -16,18 +16,20 @@
16
16
  "dist",
17
17
  "template"
18
18
  ],
19
- "scripts": {
20
- "build": "tsc",
21
- "test:type": "tsc --noEmit",
22
- "test:format": "biome ci",
23
- "prepublishOnly": "pnpm run build"
24
- },
25
19
  "dependencies": {
26
- "@clack/prompts": "^0.11.0",
20
+ "@clack/prompts": "^1.1.0",
21
+ "giget": "^3.1.2",
27
22
  "mri": "^1.2.0"
28
23
  },
29
24
  "devDependencies": {
30
- "@types/node": "^25.0.3",
31
- "typescript": "^5.9.3"
25
+ "typescript": "^5.9.3",
26
+ "vitest": "^4.1.0"
27
+ },
28
+ "scripts": {
29
+ "build": "tsc",
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"
32
34
  }
33
- }
35
+ }
@@ -0,0 +1 @@
1
+ Before writing code, first explore the project structure, then invoke the chatgpt-app-builder skill for documentation.
@@ -1,116 +1,97 @@
1
- # ChatGPT Apps SDK Alpic Starter
1
+ # Skybridge Starter
2
2
 
3
- This repository is a minimal Typescript application demonstrating how to build an OpenAI Apps SDK compatible MCP server with widget rendering in ChatGPT.
4
-
5
- ![Demo](docs/demo.gif)
6
-
7
- ## Overview
8
-
9
- This project shows how to integrate a Typescript express application with the ChatGPT Apps SDK using the Model Context Protocol (MCP). It includes a working MCP server that exposes tools and resources that can be called from ChatGPT, with responses rendered natively in ChatGPT. It also includes MCP tools without UI widgets.
3
+ A minimal TypeScript template for building MCP and ChatGPT Apps with the [Skybridge](https://docs.skybridge.tech/home) framework.
10
4
 
11
5
  ## Getting Started
12
6
 
13
7
  ### Prerequisites
14
8
 
15
- - Node.js 22+ (see `.nvmrc` for exact version)
16
- - pnpm (install with `npm install -g pnpm`)
17
- - Ngrok
9
+ - Node.js 24+
10
+ - HTTP tunnel such as [ngrok](https://ngrok.com/download) if you want to test with remote MCP hosts like ChatGPT or Claude.ai.
18
11
 
19
- ### Local Development with Hot Module Replacement (HMR)
20
-
21
- This project uses Vite for React widget development with full HMR support, allowing you to see changes in real-time, directly within ChatGPT conversation, without restarting the server.
12
+ ### Local Development
22
13
 
23
14
  #### 1. Install
24
15
 
25
16
  ```bash
17
+ npm install
18
+ # or
19
+ yarn install
20
+ # or
26
21
  pnpm install
22
+ # or
23
+ bun install
27
24
  ```
28
25
 
29
- #### 2. Start the Development Server
26
+ #### 2. Start your local server
30
27
 
31
28
  Run the development server from the root directory:
32
29
 
33
30
  ```bash
31
+ npm run dev
32
+ # or
33
+ yarn dev
34
+ # or
34
35
  pnpm dev
36
+ # or
37
+ bun dev
35
38
  ```
36
39
 
37
- This command starts an Express server on port 3000. This server packages:
38
-
39
- - an MCP endpoint on `/mcp` - aka the ChatGPT App Backend
40
- - a React application on Vite HMR dev server - aka the ChatGPT App Frontend
40
+ This command starts:
41
+ - Your MCP server at `http://localhost:3000/mcp`.
42
+ - Skybridge DevTools UI at `http://localhost:3000/`.
41
43
 
42
- #### 3. Expose Your Local Server
44
+ #### 3. Project structure
43
45
 
44
- In a separate terminal, expose your local server using ngrok:
45
-
46
- ```bash
47
- ngrok http 3000
48
46
  ```
49
-
50
- Copy the forwarding URL from ngrok output:
51
-
52
- ```bash
53
- Forwarding https://3785c5ddc4b6.ngrok-free.app -> http://localhost:3000
47
+ ├── server/
48
+ │ └── src/
49
+ │ └── index.ts # Server entry point
50
+ ├── web/
51
+ │ ├── src/
52
+ │ │ ├── widgets/ # React components (one per widget)
53
+ │ │ ├── helpers.ts # Shared utilities
54
+ │ │ └── index.css # Global styles
55
+ │ └── vite.config.ts
56
+ ├── alpic.json # Deployment config
57
+ ├── nodemon.json # Dev server config
58
+ └── package.json
54
59
  ```
55
60
 
56
- #### 4. Connect to ChatGPT
57
-
58
- - Enable **Settings → Connectors → Advanced → Developer mode** in the ChatGPT client
59
- - Navigate to **Settings → Connectors → Create**
60
- - Enter your ngrok URL with the `/mcp` path (e.g., `https://3785c5ddc4b6.ngrok-free.app/mcp`)
61
- - Click **Create**
62
-
63
- #### 5. Test Your Integration
61
+ ### Create your first widget
64
62
 
65
- - Start a new conversation in ChatGPT
66
- - Select your newly created connector using **the + button → Your connector**
67
- - Try prompting the model (e.g., "Show me pikachu details")
63
+ #### 1. Add a new widget
68
64
 
69
- #### 6. Develop with HMR
65
+ - Register a widget in `server/src/server.ts` with a unique name (e.g., `my-widget`) using [`registerWidget`](https://docs.skybridge.tech/api-reference/register-widget)
66
+ - Create a matching React component at `web/src/widgets/my-widget.tsx`. **The file name must match the widget name exactly**.
70
67
 
71
- Now you can edit React components in `web` and see changes instantly:
68
+ #### 2. Edit widgets with Hot Module Replacement (HMR)
72
69
 
73
- - Make changes to any component
74
- - Save the file
75
- - The widget will automatically update in ChatGPT without refreshing or reconnecting
76
- - The Express server and MCP server continue running without interruption
70
+ Edit and save components in `web/src/widgets/` — changes will appear instantly inside your App.
77
71
 
78
- **Note:** When you modify widget components, changes will be reflected immediately. If you modify MCP server code (in `src/`), you may need to reload your connector in **Settings → Connectors → [Your connector] → Reload**.
72
+ #### 3. Edit server code
79
73
 
80
- ## Widget Naming Convention
74
+ Modify files in `server/` and refresh the connection with your testing MCP Client to see the changes.
81
75
 
82
- **Important:** For a widget to work properly, the name of the endpoint in your MCP server must match the file name of the corresponding React component in `web/src/widgets/`.
76
+ ### Testing your App
83
77
 
84
- For example:
78
+ You can test your App locally by using our DevTools UI on `localhost:3000` while running the `pnpm dev` command.
85
79
 
86
- - If you create a widget endpoint named `pokemon-card`, you must create a corresponding React component file at `web/src/widgets/pokemon-card.tsx`
87
- - The endpoint name and the widget file name (without the `.tsx` extension) must be identical
80
+ To test your app with other MCP Clients like ChatGPT, Claude or VSCode, see [Testing Your App](https://docs.skybridge.tech/quickstart/test-your-app).
88
81
 
89
- This naming convention allows the system to automatically map widget requests to their corresponding React components.
90
82
 
91
83
  ## Deploy to Production
92
84
 
93
- Use Alpic to deploy your OpenAI App to production.
94
-
95
- [![Deploy on Alpic](https://assets.alpic.ai/button.svg)](https://app.alpic.ai/new/clone?repositoryUrl=https%3A%2F%2Fgithub.com%2Falpic-ai%2Fapps-sdk-template)
96
-
97
- - In ChatGPT, navigate to **Settings → Connectors → Create** and add your MCP server URL (e.g., `https://your-app-name.alpic.live`)
85
+ Skybridge is infrastructure vendor agnostic, and your app can be deployed on any cloud platform supporting MCP.
98
86
 
99
- ## Project Structure
100
-
101
- ```
102
- .
103
- ├── server/
104
- │ ├── app.ts # OpenAI App extension class with widget API implementation
105
- │ ├── server.ts # MCP server with tool/resource/prompt registration
106
- │ └── index.ts # Express server definition
107
- └── web/
108
- └── src/
109
- └── widgets/ # React widget components (must match endpoint names)
110
- ```
87
+ The simplest way to deploy your App in minutes is [Alpic](https://alpic.ai/).
88
+ 1. Create an account on [Alpic platform](https://app.alpic.ai/).
89
+ 2. Connect your GitHub repository to automatically deploy at each commit.
90
+ 3. Use your remote App URL to connect it to MCP Clients, or use the Alpic Playground to easily test your App.
111
91
 
112
92
  ## Resources
113
-
93
+ - [Skybridge Documentation](https://docs.skybridge.tech/)
114
94
  - [Apps SDK Documentation](https://developers.openai.com/apps-sdk)
95
+ - [MCP Apps Documentation](https://github.com/modelcontextprotocol/ext-apps/tree/main)
115
96
  - [Model Context Protocol Documentation](https://modelcontextprotocol.io/)
116
97
  - [Alpic Documentation](https://docs.alpic.ai/)