create-skybridge 0.0.0-dev.bb2eb8a → 0.0.0-dev.bb911d0

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 (85) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.js +333 -159
  3. package/package.json +15 -15
  4. package/templates/blank/.dockerignore +4 -0
  5. package/templates/blank/AGENTS.md +1 -0
  6. package/templates/blank/Dockerfile +53 -0
  7. package/templates/blank/README.md +92 -0
  8. package/templates/blank/_gitignore +7 -0
  9. package/templates/blank/alpic.json +3 -0
  10. package/templates/blank/node_modules/.bin/alpic +21 -0
  11. package/templates/blank/node_modules/.bin/sb +21 -0
  12. package/templates/blank/node_modules/.bin/skybridge +21 -0
  13. package/templates/blank/node_modules/.bin/tsc +21 -0
  14. package/templates/blank/node_modules/.bin/tsserver +21 -0
  15. package/templates/blank/node_modules/.bin/tsx +21 -0
  16. package/templates/blank/node_modules/.bin/vite +21 -0
  17. package/templates/blank/package.json +29 -0
  18. package/templates/blank/src/helpers.ts +4 -0
  19. package/templates/blank/src/server.ts +16 -0
  20. package/templates/blank/tsconfig.json +5 -0
  21. package/templates/blank/vite.config.ts +6 -0
  22. package/templates/demo/.dockerignore +4 -0
  23. package/templates/demo/AGENTS.md +1 -0
  24. package/templates/demo/Dockerfile +53 -0
  25. package/templates/demo/README.md +95 -0
  26. package/templates/demo/_gitignore +7 -0
  27. package/templates/demo/alpic.json +3 -0
  28. package/templates/demo/node_modules/.bin/alpic +21 -0
  29. package/templates/demo/node_modules/.bin/sb +21 -0
  30. package/templates/demo/node_modules/.bin/skybridge +21 -0
  31. package/templates/demo/node_modules/.bin/tsc +21 -0
  32. package/templates/demo/node_modules/.bin/tsserver +21 -0
  33. package/templates/demo/node_modules/.bin/tsx +21 -0
  34. package/templates/demo/node_modules/.bin/vite +21 -0
  35. package/templates/demo/package.json +41 -0
  36. package/templates/demo/src/helpers.ts +4 -0
  37. package/templates/demo/src/index.css +59 -0
  38. package/templates/demo/src/server.ts +94 -0
  39. package/templates/demo/src/views/components/doc-link.tsx +22 -0
  40. package/templates/demo/src/views/components/doc.tsx +21 -0
  41. package/templates/demo/src/views/components/nav.tsx +31 -0
  42. package/templates/demo/src/views/components/progress.tsx +35 -0
  43. package/templates/demo/src/views/components/steps/outro.tsx +68 -0
  44. package/templates/demo/src/views/components/steps/state.tsx +47 -0
  45. package/templates/demo/src/views/components/steps/tool-call.tsx +53 -0
  46. package/templates/demo/src/views/components/steps/tool-output.tsx +40 -0
  47. package/templates/demo/src/views/images/mascot/beret.png +0 -0
  48. package/templates/demo/src/views/images/mascot/chapka.png +0 -0
  49. package/templates/demo/src/views/images/mascot/cowboy-hat.png +0 -0
  50. package/templates/demo/src/views/images/mascot/fez.png +0 -0
  51. package/templates/demo/src/views/images/mascot/jester-hat.png +0 -0
  52. package/templates/demo/src/views/images/mascot/mitre.png +0 -0
  53. package/templates/demo/src/views/images/mascot/non-la.png +0 -0
  54. package/templates/demo/src/views/images/mascot/original.png +0 -0
  55. package/templates/demo/src/views/images/mascot/propeller-beanie.png +0 -0
  56. package/templates/demo/src/views/images/mascot/ski-mask.png +0 -0
  57. package/templates/demo/src/views/images/mascot/sombrero.png +0 -0
  58. package/templates/demo/src/views/images/mascot/top-hat.png +0 -0
  59. package/templates/demo/src/views/images/mascot/viking-helmet.png +0 -0
  60. package/templates/demo/src/views/onboarding.tsx +63 -0
  61. package/templates/demo/src/views/use-mascot.ts +60 -0
  62. package/templates/demo/tsconfig.json +11 -0
  63. package/{template/web → templates/demo}/vite.config.ts +3 -4
  64. package/dist/index.test.d.ts +0 -1
  65. package/dist/index.test.js +0 -23
  66. package/template/README.md +0 -77
  67. package/template/_gitignore +0 -4
  68. package/template/alpic.json +0 -4
  69. package/template/node_modules/.bin/mcp-inspector +0 -21
  70. package/template/node_modules/.bin/nodemon +0 -21
  71. package/template/node_modules/.bin/shx +0 -21
  72. package/template/node_modules/.bin/tsc +0 -21
  73. package/template/node_modules/.bin/tsserver +0 -21
  74. package/template/node_modules/.bin/tsx +0 -21
  75. package/template/node_modules/.bin/vite +0 -21
  76. package/template/nodemon.json +0 -5
  77. package/template/package.json +0 -39
  78. package/template/server/src/index.ts +0 -35
  79. package/template/server/src/middleware.ts +0 -54
  80. package/template/server/src/server.ts +0 -66
  81. package/template/tsconfig.json +0 -23
  82. package/template/tsconfig.server.json +0 -11
  83. package/template/web/src/helpers.ts +0 -4
  84. package/template/web/src/index.css +0 -30
  85. package/template/web/src/widgets/magic-8-ball.tsx +0 -24
@@ -0,0 +1,63 @@
1
+ import "@/index.css";
2
+
3
+ import { useState } from "react";
4
+ import { useLayout } from "skybridge/web";
5
+ import Nav from "./components/nav.js";
6
+ import Progress from "./components/progress.js";
7
+ import Outro from "./components/steps/outro.js";
8
+ import State from "./components/steps/state.js";
9
+ import ToolCall from "./components/steps/tool-call.js";
10
+ import ToolOutput from "./components/steps/tool-output.js";
11
+ import { useMascot } from "./use-mascot.js";
12
+
13
+ const STEPS = [
14
+ { label: "Reading tool output", Component: ToolOutput },
15
+ { label: "Sharing view state", Component: State },
16
+ { label: "Calling tools", Component: ToolCall },
17
+ { label: "Examples & docs", Component: Outro },
18
+ ] as const;
19
+
20
+ export default function Onboarding() {
21
+ // useLayout: read host layout info (theme, display mode, locale, ...).
22
+ const { theme } = useLayout();
23
+
24
+ const [step, setStep] = useState(0);
25
+ const { img } = useMascot();
26
+
27
+ return (
28
+ <div
29
+ className={`${theme === "dark" ? "dark" : ""} mx-auto w-full max-w-4xl border border-border overflow-hidden bg-background text-foreground`}
30
+ >
31
+ <div className="min-h-136 md:min-h-95 flex flex-col items-center gap-6 p-6 bg-linear-to-br from-purple-50 via-white to-cyan-50 dark:from-purple-950/30 dark:via-zinc-950 dark:to-cyan-900/30 bg-size-[200%_200%] animate-aurora md:flex-row md:items-stretch">
32
+ <div className="shrink-0 self-center animate-float">
33
+ <img
34
+ src={img}
35
+ alt="Skybridge mascot"
36
+ className="h-32 w-32 md:h-50 md:w-50 object-contain animate-twirl"
37
+ />
38
+ </div>
39
+ <div className="flex w-full flex-1 flex-col gap-6">
40
+ <Progress
41
+ steps={STEPS.map(({ label }) => label)}
42
+ current={step}
43
+ onSelect={setStep}
44
+ />
45
+ <div className="grid flex-1">
46
+ {STEPS.map(({ label, Component }, i) => (
47
+ <div
48
+ key={label}
49
+ className={`col-start-1 row-start-1 flex flex-col gap-6 ${
50
+ step === i ? "" : "invisible pointer-events-none"
51
+ }`}
52
+ aria-hidden={step !== i}
53
+ >
54
+ <Component />
55
+ </div>
56
+ ))}
57
+ </div>
58
+ <Nav current={step} total={STEPS.length} onChange={setStep} />
59
+ </div>
60
+ </div>
61
+ </div>
62
+ );
63
+ }
@@ -0,0 +1,60 @@
1
+ import { useEffect } from "react";
2
+ import { useViewState } from "skybridge/web";
3
+ import beret from "./images/mascot/beret.png";
4
+ import chapka from "./images/mascot/chapka.png";
5
+ import cowboyHat from "./images/mascot/cowboy-hat.png";
6
+ import fez from "./images/mascot/fez.png";
7
+ import jesterHat from "./images/mascot/jester-hat.png";
8
+ import mitre from "./images/mascot/mitre.png";
9
+ import nonLa from "./images/mascot/non-la.png";
10
+ import original from "./images/mascot/original.png";
11
+ import propellerBeanie from "./images/mascot/propeller-beanie.png";
12
+ import skiMask from "./images/mascot/ski-mask.png";
13
+ import sombrero from "./images/mascot/sombrero.png";
14
+ import topHat from "./images/mascot/top-hat.png";
15
+ import vikingHelmet from "./images/mascot/viking-helmet.png";
16
+
17
+ const Hats = {
18
+ beret,
19
+ chapka,
20
+ "cowboy hat": cowboyHat,
21
+ fez,
22
+ "jester hat": jesterHat,
23
+ mitre,
24
+ "nón lá": nonLa,
25
+ "propeller beanie": propellerBeanie,
26
+ "ski mask": skiMask,
27
+ sombrero,
28
+ "top hat": topHat,
29
+ "viking helmet": vikingHelmet,
30
+ } as const;
31
+
32
+ type HatLabel = keyof typeof Hats;
33
+
34
+ const LABELS = Object.keys(Hats) as HatLabel[];
35
+
36
+ export function useMascot() {
37
+ // useViewState: persist UI state on the host and surface it to the model.
38
+ const [state, setState] = useViewState<{ hat?: HatLabel }>({});
39
+ const { hat } = state;
40
+ const img = hat ? Hats[hat] : original;
41
+
42
+ // Preload all hats once so swaps are instant.
43
+ useEffect(() => {
44
+ for (const src of Object.values(Hats)) {
45
+ new Image().src = src;
46
+ }
47
+ }, []);
48
+
49
+ return {
50
+ img,
51
+ hat,
52
+ changeHat: () => {
53
+ setState((prev) => {
54
+ const currentIndex = prev.hat ? LABELS.indexOf(prev.hat) : -1;
55
+ const next = LABELS[(currentIndex + 1) % LABELS.length];
56
+ return { ...prev, hat: next };
57
+ });
58
+ },
59
+ };
60
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "skybridge/tsconfig",
3
+
4
+ "compilerOptions": {
5
+ "paths": {
6
+ "@/*": ["./src/*"]
7
+ }
8
+ },
9
+
10
+ "include": ["src", ".skybridge/**/*.d.ts"]
11
+ }
@@ -1,12 +1,11 @@
1
1
  import path from "node:path";
2
+ import tailwindcss from "@tailwindcss/vite";
2
3
  import react from "@vitejs/plugin-react";
3
- import { skybridge } from "skybridge/web";
4
+ import { skybridge } from "skybridge/vite";
4
5
  import { defineConfig } from "vite";
5
6
 
6
- // https://vite.dev/config/
7
7
  export default defineConfig({
8
- plugins: [skybridge(), react()],
9
- root: __dirname,
8
+ plugins: [skybridge(), react(), tailwindcss()],
10
9
  resolve: {
11
10
  alias: {
12
11
  "@": path.resolve(__dirname, "./src"),
@@ -1 +0,0 @@
1
- export {};
@@ -1,23 +0,0 @@
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
- });
@@ -1,77 +0,0 @@
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/)
@@ -1,4 +0,0 @@
1
- node_modules/
2
- dist/
3
- .env*
4
- .DS_store
@@ -1,4 +0,0 @@
1
- {
2
- "$schema": "https://assets.alpic.ai/alpic.json",
3
- "buildOutputDir": "server/dist"
4
- }
@@ -1,21 +0,0 @@
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
@@ -1,21 +0,0 @@
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
@@ -1,21 +0,0 @@
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
@@ -1,21 +0,0 @@
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
@@ -1,21 +0,0 @@
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
@@ -1,21 +0,0 @@
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
@@ -1,21 +0,0 @@
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
@@ -1,5 +0,0 @@
1
- {
2
- "watch": ["server/src"],
3
- "ext": "ts,json",
4
- "exec": "tsx server/src/index.ts"
5
- }
@@ -1,39 +0,0 @@
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.16.0 <1.0.0",
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
- }
@@ -1,35 +0,0 @@
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
- });
@@ -1,54 +0,0 @@
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
- };
@@ -1,66 +0,0 @@
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;