create-skybridge 0.23.1 → 0.23.2
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/package.json +1 -1
- package/template/README.md +4 -4
- package/template/package.json +1 -1
package/package.json
CHANGED
package/template/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Skybridge Starter
|
|
2
2
|
|
|
3
|
-
A minimal TypeScript template for building
|
|
3
|
+
A minimal TypeScript template for building ChatGPT and MCP Apps with widget rendering.
|
|
4
4
|
|
|
5
5
|
## Getting Started
|
|
6
6
|
|
|
@@ -40,7 +40,7 @@ bun dev
|
|
|
40
40
|
This command starts an Express server on port 3000. This server packages:
|
|
41
41
|
|
|
42
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
|
|
43
|
+
- a React application on Vite HMR dev server (the UI elements to be displayed in the host)
|
|
44
44
|
|
|
45
45
|
#### 3. Connect to ChatGPT
|
|
46
46
|
|
|
@@ -59,7 +59,7 @@ ngrok http 3000
|
|
|
59
59
|
|
|
60
60
|
#### 2. Edit widgets with Hot Module Replacement (HMR)
|
|
61
61
|
|
|
62
|
-
Edit and save components in `web/src/widgets/` — changes appear instantly in
|
|
62
|
+
Edit and save components in `web/src/widgets/` — changes appear instantly in the host
|
|
63
63
|
|
|
64
64
|
#### 3. Edit server code
|
|
65
65
|
|
package/template/package.json
CHANGED