skybridge 0.0.0-dev.eb4d79a → 0.0.0-dev.f0904af

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -17,21 +17,74 @@ Skybridge comes with 2 packages:
17
17
  - `skybridge/server`: A drop-in replacement of the `@modelcontextprotocol/sdk` official `McpServer` class with extra features for widget development.
18
18
  - `skybridge/web`: A react library with hooks and components to build widgets on the underlying _OpenAI iFrame skybridge_ runtime.
19
19
 
20
+ ## Quick start
21
+
22
+ To get started in less than a minute, you can [create a new repository](https://github.com/new?template_name=apps-sdk-template&template_owner=alpic-ai) using our [ChatGPT SDK template](https://github.com/alpic-ai/apps-sdk-template). This template includes a basic setup for both the server and the widgets.
23
+
20
24
  ## Installation
21
25
 
22
26
  ```bash
23
27
  pnpm add skybridge
24
28
  ```
25
29
 
26
- ## skybridge/server
30
+ ## Concepts
31
+
32
+ ### Widgets
33
+
34
+ > A widget is a UI component that turns structured tool results into a human-friendly UI. Those are built using React components. They are rendered inside an iframe inline with the conversation on ChatGPT.
35
+
36
+ Each widget in your app must have a unique name. The name is used to bridge the tool invocation result with the widget React component.
37
+
38
+ For example, in order to register a new widget named `pokemon` on your ChatGPT app. You should have the following file structure and file contents:
39
+
40
+ _Project structure_
41
+
42
+ ```
43
+ server/
44
+ └── src/
45
+ └── index.ts // Register the widget with McpServer.widget()
46
+ web/
47
+ └── src/
48
+ └── widgets/
49
+ └── pokemon.tsx // Use the same widget name as the file name
50
+ ```
51
+
52
+ _server/src/index.ts_
53
+
54
+ ```ts
55
+ import { McpServer } from "skybridge/server";
56
+
57
+ const server = new McpServer();
58
+
59
+ server.widget(
60
+ "pokemon"
61
+ // Remaining arguments...
62
+ );
63
+ ```
64
+
65
+ _web/src/widgets/pokemon.tsx_
66
+
67
+ ```ts
68
+ import { mountWidget } from "skybridge/web";
69
+
70
+ const Pokemon: React.FunctionComponent = () => {
71
+ // Your React component code goes here...
72
+ };
73
+
74
+ mountWidget(<Pokemon />);
75
+ ```
76
+
77
+ ## Packages
78
+
79
+ ### skybridge/server
27
80
 
28
81
  The `skybridge/server` package is a drop-in replacement of the `@modelcontextprotocol/sdk` official `McpServer` class with extra features for widget development. If you're already using the `@modelcontextprotocol/sdk`, you can simply replace your `McpServer` import with `skybridge/server` and you're good to go.
29
82
 
30
- ## skybridge/web
83
+ ### skybridge/web
31
84
 
32
85
  The `skybridge/web` package is a react library with hooks and components to build widgets on the underlying _OpenAI iFrame skybridge_ runtime.
33
86
 
34
- ### Vite plugin
87
+ **Vite plugin**
35
88
 
36
89
  The `skybridge/web` package comes with a Vite plugin that allows you to build your widgets as regular Vite apps.
37
90
 
@@ -44,9 +97,30 @@ export default defineConfig({
44
97
  });
45
98
  ```
46
99
 
100
+ **Hooks**
101
+
102
+ The `skybridge/web` package comes with a set of hooks to help you build your widgets.
103
+
104
+ ```ts
105
+ import { useToolOutput } from "skybridge/web";
106
+
107
+ // Initial data returned by the tool invocation on structuredOutput
108
+ const toolOutput = useToolOutput();
109
+ ```
110
+
47
111
  ## Migrate your existing MCP server to a ChatGPT app
48
112
 
49
113
  If you're already using the `@modelcontextprotocol/sdk` to build a MCP server, you can migrate to a ChatGPT app by following these steps:
50
114
 
51
115
  1. Replace your `McpServer` import from `@modelcontextprotocol/sdk` with the same import from `skybridge/server`
52
- 2. Create a new node project named `web` and install the `skybridge` package
116
+ 2. Create a new vite project in a folder named `web` and install the `skybridge` package
117
+ 3. Replace the `vite.config.ts` file with the following:
118
+
119
+ ```ts
120
+ import { defineConfig } from "vite";
121
+ import { skybridge } from "skybridge/web";
122
+
123
+ export default defineConfig({
124
+ plugins: [skybridge()],
125
+ });
126
+ ```
@@ -0,0 +1,12 @@
1
+ <base href="{{serverUrl}}" />
2
+ <script type="module">
3
+ import { injectIntoGlobalHook } from "{{serverUrl}}/@react-refresh";
4
+ injectIntoGlobalHook(window); window.$RefreshReg$ = () => {};
5
+ window.$RefreshSig$ = () => (type) => type;
6
+ window.__vite_plugin_react_preamble_installed__ = true;
7
+ </script>
8
+ <script type="module" src="{{serverUrl}}/@vite/client"></script>
9
+ <div id="root"></div>
10
+ <script type="module">
11
+ import('{{serverUrl}}/src/widgets/{{widgetName}}.tsx');
12
+ </script>
@@ -0,0 +1,6 @@
1
+ <base href="{{serverUrl}}" />
2
+ <div id="root"></div>
3
+ <script type="module">
4
+ import('{{serverUrl}}/assets/{{widgetName}}.js');
5
+ </script>
6
+ <link rel="stylesheet" crossorigin href="{{serverUrl}}/assets/style.css" />
@@ -2,3 +2,4 @@ export { useOpenAiGlobal } from "./use-openai-global.js";
2
2
  export { useToolOutput } from "./use-tool-output.js";
3
3
  export * from "./types.js";
4
4
  export { mountWidget } from "./mount-widget.js";
5
+ export { skybridge } from "./plugin.js";
@@ -2,4 +2,5 @@ export { useOpenAiGlobal } from "./use-openai-global.js";
2
2
  export { useToolOutput } from "./use-tool-output.js";
3
3
  export * from "./types.js";
4
4
  export { mountWidget } from "./mount-widget.js";
5
+ export { skybridge } from "./plugin.js";
5
6
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/web/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/web/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"}
@@ -0,0 +1,2 @@
1
+ import type { Plugin } from "vite";
2
+ export declare function skybridge(): Plugin;
@@ -0,0 +1,31 @@
1
+ export function skybridge() {
2
+ return {
3
+ name: "skybridge",
4
+ async config(config) {
5
+ // Dynamic imports to ensure Node modules are only loaded in Node.js context
6
+ const { globSync } = await import("node:fs");
7
+ const { resolve } = await import("node:path");
8
+ const projectRoot = config.root || process.cwd();
9
+ const widgetsPattern = resolve(projectRoot, "src/widgets/*.{js,ts,jsx,tsx,html}");
10
+ const input = Object.fromEntries(globSync(widgetsPattern).map((file) => [
11
+ file.match(/src\/widgets\/(.+)\.tsx$/)?.[1],
12
+ file,
13
+ ]));
14
+ return {
15
+ base: "/assets",
16
+ build: {
17
+ minify: true,
18
+ cssCodeSplit: false,
19
+ rollupOptions: {
20
+ input,
21
+ output: {
22
+ entryFileNames: "[name].js",
23
+ assetFileNames: "[name][extname]",
24
+ },
25
+ },
26
+ },
27
+ };
28
+ },
29
+ };
30
+ }
31
+ //# sourceMappingURL=plugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../src/web/plugin.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,SAAS;IACvB,OAAO;QACL,IAAI,EAAE,WAAW;QAEjB,KAAK,CAAC,MAAM,CAAC,MAAM;YACjB,4EAA4E;YAC5E,MAAM,EAAE,QAAQ,EAAE,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC;YAC7C,MAAM,EAAE,OAAO,EAAE,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,CAAC;YAE9C,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;YACjD,MAAM,cAAc,GAAG,OAAO,CAC5B,WAAW,EACX,oCAAoC,CACrC,CAAC;YAEF,MAAM,KAAK,GAAG,MAAM,CAAC,WAAW,CAC9B,QAAQ,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC;gBACrC,IAAI,CAAC,KAAK,CAAC,0BAA0B,CAAC,EAAE,CAAC,CAAC,CAAC;gBAC3C,IAAI;aACL,CAAC,CACH,CAAC;YAEF,OAAO;gBACL,IAAI,EAAE,SAAS;gBACf,KAAK,EAAE;oBACL,MAAM,EAAE,IAAI;oBACZ,YAAY,EAAE,KAAK;oBACnB,aAAa,EAAE;wBACb,KAAK;wBACL,MAAM,EAAE;4BACN,cAAc,EAAE,WAAW;4BAC3B,cAAc,EAAE,iBAAiB;yBAClC;qBACF;iBACF;aACF,CAAC;QACJ,CAAC;KACF,CAAC;AACJ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skybridge",
3
- "version": "0.0.0-dev.eb4d79a",
3
+ "version": "0.0.0-dev.f0904af",
4
4
  "description": "Skybridge is a framework for building ChatGPT apps",
5
5
  "type": "module",
6
6
  "files": [
@@ -17,7 +17,8 @@
17
17
  }
18
18
  },
19
19
  "scripts": {
20
- "build": "tsc",
20
+ "build": "tsc && pnpm run build:templates",
21
+ "build:templates": "cp -r src/server/templates dist/src/server/",
21
22
  "test": "vitest run --silent"
22
23
  },
23
24
  "keywords": [
@@ -44,10 +45,10 @@
44
45
  "@total-typescript/tsconfig": "^1.0.4",
45
46
  "@types/cors": "^2.8.19",
46
47
  "@types/express": "^5.0.3",
48
+ "@types/jsdom": "^21.1.6",
47
49
  "@types/node": "^22.15.30",
48
50
  "@types/react": "^19.2.2",
49
51
  "@types/react-dom": "^19.2.2",
50
- "@types/jsdom": "^21.1.6",
51
52
  "@vitest/ui": "^2.1.8",
52
53
  "jsdom": "^25.0.1",
53
54
  "typescript": "^5.9.3",