create-skybridge 0.0.0-dev.2 → 0.0.0-dev.2021fc3

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.
@@ -0,0 +1 @@
1
+ export declare function init(args?: string[]): Promise<void>;
package/dist/index.js ADDED
@@ -0,0 +1,283 @@
1
+ import { spawnSync } from "node:child_process";
2
+ import fs from "node:fs";
3
+ import path from "node:path";
4
+ import { fileURLToPath } from "node:url";
5
+ import * as prompts from "@clack/prompts";
6
+ import { downloadTemplate } from "giget";
7
+ import mri from "mri";
8
+ const defaultProjectName = "skybridge-project";
9
+ // prettier-ignore
10
+ const helpMessage = `\
11
+ Usage: create-skybridge [OPTION]... [DIRECTORY]
12
+
13
+ Create a new Skybridge project by copying the starter template.
14
+
15
+ Options:
16
+ -h, --help show this help message
17
+ --repo <uri> use a git repository instead of the built-in template
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
25
+
26
+ Examples:
27
+ create-skybridge my-app
28
+ create-skybridge my-app --repo github:alpic-ai/skybridge/examples/ecom-carousel
29
+ create-skybridge . --overwrite --immediate
30
+ `;
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
+ });
37
+ const argTargetDir = argv._[0]
38
+ ? sanitizeTargetDir(String(argv._[0]))
39
+ : undefined;
40
+ const argRepo = argv.repo;
41
+ const argOverwrite = argv.overwrite;
42
+ const argImmediate = argv.immediate;
43
+ const help = argv.help;
44
+ if (help) {
45
+ console.log(helpMessage);
46
+ return;
47
+ }
48
+ const interactive = process.stdin.isTTY;
49
+ const cancel = () => prompts.cancel("Operation cancelled");
50
+ // 1. Get project name and target dir
51
+ let targetDir = argTargetDir;
52
+ if (!targetDir) {
53
+ if (interactive) {
54
+ const projectName = await prompts.text({
55
+ message: "Project name:",
56
+ defaultValue: defaultProjectName,
57
+ placeholder: defaultProjectName,
58
+ validate: (value) => {
59
+ return !value || sanitizeTargetDir(value).length > 0
60
+ ? undefined
61
+ : "Invalid project name";
62
+ },
63
+ });
64
+ if (prompts.isCancel(projectName)) {
65
+ return cancel();
66
+ }
67
+ targetDir = sanitizeTargetDir(projectName);
68
+ }
69
+ else {
70
+ targetDir = defaultProjectName;
71
+ }
72
+ }
73
+ // 2. Handle directory if exist and not empty
74
+ if (fs.existsSync(targetDir) && !isEmpty(targetDir)) {
75
+ let overwrite = argOverwrite ? "yes" : undefined;
76
+ if (!overwrite) {
77
+ if (interactive) {
78
+ const res = await prompts.select({
79
+ message: (targetDir === "."
80
+ ? "Current directory"
81
+ : `Target directory "${targetDir}"`) +
82
+ ` is not empty. Please choose how to proceed:`,
83
+ options: [
84
+ {
85
+ label: "Cancel operation",
86
+ value: "no",
87
+ },
88
+ {
89
+ label: "Remove existing files and continue",
90
+ value: "yes",
91
+ },
92
+ ],
93
+ });
94
+ if (prompts.isCancel(res)) {
95
+ return cancel();
96
+ }
97
+ overwrite = res;
98
+ }
99
+ else {
100
+ overwrite = "no";
101
+ }
102
+ }
103
+ switch (overwrite) {
104
+ case "yes":
105
+ emptyDir(targetDir);
106
+ break;
107
+ case "no":
108
+ prompts.log.error("Target directory is not empty.");
109
+ process.exit(1);
110
+ }
111
+ }
112
+ const root = path.join(process.cwd(), targetDir);
113
+ // 3. Download from repo or copy template
114
+ try {
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}`);
131
+ }
132
+ }
133
+ catch (error) {
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!`);
234
+ console.error(error);
235
+ process.exit(1);
236
+ }
237
+ }
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");
254
+ }
255
+ function isEmpty(dirPath) {
256
+ const entries = fs.readdirSync(dirPath, { withFileTypes: true });
257
+ return entries.every(isSkippedEntry);
258
+ }
259
+ function emptyDir(dir) {
260
+ if (!fs.existsSync(dir)) {
261
+ return;
262
+ }
263
+ for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
264
+ if (isSkippedEntry(entry)) {
265
+ continue;
266
+ }
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];
282
+ }
283
+ }
@@ -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,27 +1,34 @@
1
1
  {
2
2
  "name": "create-skybridge",
3
- "version": "0.0.0-dev.2",
3
+ "version": "0.0.0-dev.2021fc3",
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
19
  "dependencies": {
15
- "@clack/prompts": "^0.11.0",
20
+ "@clack/prompts": "^1.1.0",
21
+ "giget": "^3.1.2",
16
22
  "mri": "^1.2.0"
17
23
  },
18
24
  "devDependencies": {
19
- "@types/node": "^25.0.3",
20
- "picocolors": "^1.1.1",
21
- "typescript": "^5.9.3"
25
+ "typescript": "^5.9.3",
26
+ "vitest": "^4.1.0"
22
27
  },
23
28
  "scripts": {
24
29
  "build": "tsc",
30
+ "test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
31
+ "test:unit": "vitest run",
25
32
  "test:type": "tsc --noEmit",
26
33
  "test:format": "biome ci"
27
34
  }
@@ -0,0 +1 @@
1
+ Before writing code, first explore the project structure, then invoke the chatgpt-app-builder skill for documentation.
@@ -0,0 +1,97 @@
1
+ # Skybridge Starter
2
+
3
+ A minimal TypeScript template for building MCP and ChatGPT Apps with the [Skybridge](https://docs.skybridge.tech/home) framework.
4
+
5
+ ## Getting Started
6
+
7
+ ### Prerequisites
8
+
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.
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:
41
+ - Your MCP server at `http://localhost:3000/mcp`.
42
+ - Skybridge DevTools UI at `http://localhost:3000/`.
43
+
44
+ #### 3. Project structure
45
+
46
+ ```
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
59
+ ```
60
+
61
+ ### Create your first widget
62
+
63
+ #### 1. Add a new widget
64
+
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**.
67
+
68
+ #### 2. Edit widgets with Hot Module Replacement (HMR)
69
+
70
+ Edit and save components in `web/src/widgets/` — changes will appear instantly inside your App.
71
+
72
+ #### 3. Edit server code
73
+
74
+ Modify files in `server/` and refresh the connection with your testing MCP Client to see the changes.
75
+
76
+ ### Testing your App
77
+
78
+ You can test your App locally by using our DevTools UI on `localhost:3000` while running the `pnpm dev` command.
79
+
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).
81
+
82
+
83
+ ## Deploy to Production
84
+
85
+ Skybridge is infrastructure vendor agnostic, and your app can be deployed on any cloud platform supporting MCP.
86
+
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.
91
+
92
+ ## Resources
93
+ - [Skybridge Documentation](https://docs.skybridge.tech/)
94
+ - [Apps SDK Documentation](https://developers.openai.com/apps-sdk)
95
+ - [MCP Apps Documentation](https://github.com/modelcontextprotocol/ext-apps/tree/main)
96
+ - [Model Context Protocol Documentation](https://modelcontextprotocol.io/)
97
+ - [Alpic Documentation](https://docs.alpic.ai/)
@@ -0,0 +1,5 @@
1
+ node_modules/
2
+ dist/
3
+ .env*
4
+ .DS_store
5
+ *.tsbuildinfo
@@ -0,0 +1,3 @@
1
+ {
2
+ "$schema": "https://assets.alpic.ai/alpic.json"
3
+ }
@@ -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/alpic@1.97.0_@opentelemetry+api@1.9.0_arktype@2.1.27_rxjs@7.8.2_typescript@5.9.3/node_modules/alpic/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.97.0_@opentelemetry+api@1.9.0_arktype@2.1.27_rxjs@7.8.2_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/alpic@1.97.0_@opentelemetry+api@1.9.0_arktype@2.1.27_rxjs@7.8.2_typescript@5.9.3/node_modules/alpic/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.97.0_@opentelemetry+api@1.9.0_arktype@2.1.27_rxjs@7.8.2_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/../alpic/bin/run.js" "$@"
19
+ else
20
+ exec node "$basedir/../alpic/bin/run.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/skybridge@0.35.8_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.8_983cc732b6bbc47850ed14e257300ee4/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.8_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.8_983cc732b6bbc47850ed14e257300ee4/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/skybridge@0.35.8_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.8_983cc732b6bbc47850ed14e257300ee4/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.8_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.8_983cc732b6bbc47850ed14e257300ee4/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/../skybridge/bin/run.js" "$@"
19
+ else
20
+ exec node "$basedir/../skybridge/bin/run.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/skybridge@0.35.8_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.8_983cc732b6bbc47850ed14e257300ee4/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.8_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.8_983cc732b6bbc47850ed14e257300ee4/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/skybridge@0.35.8_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.8_983cc732b6bbc47850ed14e257300ee4/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.8_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.8_983cc732b6bbc47850ed14e257300ee4/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/../skybridge/bin/run.js" "$@"
19
+ else
20
+ exec node "$basedir/../skybridge/bin/run.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/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/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/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/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/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/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@8.0.1_@types+node@25.2.3_esbuild@0.27.2_jiti@2.6.1_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.1_@types+node@25.2.3_esbuild@0.27.2_jiti@2.6.1_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/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@8.0.1_@types+node@25.2.3_esbuild@0.27.2_jiti@2.6.1_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.1_@types+node@25.2.3_esbuild@0.27.2_jiti@2.6.1_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/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,33 @@
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": "skybridge dev",
9
+ "build": "skybridge build",
10
+ "start": "skybridge start",
11
+ "deploy": "alpic deploy"
12
+ },
13
+ "dependencies": {
14
+ "@modelcontextprotocol/sdk": "^1.27.1",
15
+ "react": "^19.2.4",
16
+ "react-dom": "^19.2.4",
17
+ "skybridge": ">=0.35.8 <1.0.0",
18
+ "vite": "^8.0.1",
19
+ "zod": "^4.3.6"
20
+ },
21
+ "devDependencies": {
22
+ "@skybridge/devtools": ">=0.35.8 <1.0.0",
23
+ "@types/react": "^19.2.14",
24
+ "@types/react-dom": "^19.2.3",
25
+ "@vitejs/plugin-react": "^6.0.1",
26
+ "alpic": "^1.97.0",
27
+ "tsx": "^4.21.0",
28
+ "typescript": "^5.9.3"
29
+ },
30
+ "engines": {
31
+ "node": ">=24.14.0"
32
+ }
33
+ }
@@ -0,0 +1,62 @@
1
+ import { McpServer } from "skybridge/server";
2
+ import { z } from "zod";
3
+
4
+ const Answers = [
5
+ "As I see it, yes",
6
+ "Don't count on it",
7
+ "It is certain",
8
+ "It is decidedly so",
9
+ "Most likely",
10
+ "My reply is no",
11
+ "My sources say no",
12
+ "Outlook good",
13
+ "Outlook not so good",
14
+ "Signs point to yes",
15
+ "Very doubtful",
16
+ "Without a doubt",
17
+ "Yes definitely",
18
+ "Yes",
19
+ "You may rely on it",
20
+ ];
21
+
22
+ const server = new McpServer(
23
+ {
24
+ name: "alpic-openai-app",
25
+ version: "0.0.1",
26
+ },
27
+ { capabilities: {} },
28
+ ).registerWidget(
29
+ "magic-8-ball",
30
+ {
31
+ description: "Magic 8 Ball",
32
+ },
33
+ {
34
+ description: "For fortune-telling or seeking advice.",
35
+ inputSchema: {
36
+ question: z.string().describe("The user question."),
37
+ },
38
+ },
39
+ async ({ question }) => {
40
+ try {
41
+ // deterministic answer
42
+ const hash = question
43
+ .split("")
44
+ .reduce((acc, char) => acc + char.charCodeAt(0), 0);
45
+ const answer = Answers[hash % Answers.length];
46
+ return {
47
+ structuredContent: { answer },
48
+ content: [],
49
+ isError: false,
50
+ };
51
+ } catch (error) {
52
+ return {
53
+ content: [{ type: "text", text: `Error: ${error}` }],
54
+ isError: true,
55
+ };
56
+ }
57
+ },
58
+ );
59
+
60
+ server.run();
61
+
62
+ export type AppType = typeof server;
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "skybridge/tsconfig",
3
+
4
+ "compilerOptions": {
5
+ "outDir": "dist"
6
+ },
7
+
8
+ "include": ["server/src", "web/src"]
9
+ }
@@ -0,0 +1,4 @@
1
+ import { generateHelpers } from "skybridge/web";
2
+ import type { AppType } from "../../server/src/index.js";
3
+
4
+ export const { useToolInfo } = generateHelpers<AppType>();
@@ -0,0 +1,154 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600&display=swap");
2
+
3
+ .container {
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ min-height: 100%;
8
+ max-height: 100%;
9
+ overflow: hidden;
10
+ padding: 1rem;
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ .ball {
15
+ background: radial-gradient(
16
+ circle at 30% 30%,
17
+ #454565 0%,
18
+ #1c1c30 40%,
19
+ #0a0a10 100%
20
+ );
21
+ border-radius: 50%;
22
+ width: 12rem;
23
+ height: 12rem;
24
+ display: flex;
25
+ flex-direction: column;
26
+ align-items: center;
27
+ justify-content: center;
28
+ font-family: monospace;
29
+ text-align: center;
30
+ position: relative;
31
+ box-shadow:
32
+ 0 10px 30px rgba(0, 0, 0, 0.5),
33
+ 0 5px 15px rgba(0, 0, 0, 0.3),
34
+ inset 0 -20px 40px rgba(0, 0, 0, 0.6);
35
+ animation:
36
+ float 3s ease-in-out infinite,
37
+ colorShift 15s ease-in-out infinite;
38
+ transition: transform 0.3s ease;
39
+ cursor: pointer;
40
+ border: 1px solid rgba(30, 30, 50, 0.6);
41
+ }
42
+
43
+ .ball:hover {
44
+ transform: scale(1.05) translateY(-8px);
45
+ animation: colorShift 15s ease-in-out infinite;
46
+ box-shadow:
47
+ 0 20px 50px rgba(0, 0, 0, 0.6),
48
+ 0 10px 25px rgba(0, 0, 0, 0.4),
49
+ inset 0 -20px 40px rgba(0, 0, 0, 0.6);
50
+ }
51
+
52
+ @keyframes float {
53
+ 0%,
54
+ 100% {
55
+ transform: translateY(0);
56
+ }
57
+ 50% {
58
+ transform: translateY(-8px);
59
+ }
60
+ }
61
+
62
+ @keyframes colorShift {
63
+ 0%,
64
+ 100% {
65
+ background: radial-gradient(
66
+ circle at 30% 30%,
67
+ #454565 0%,
68
+ #1c1c30 40%,
69
+ #0a0a10 100%
70
+ );
71
+ }
72
+ 25% {
73
+ background: radial-gradient(
74
+ circle at 30% 30%,
75
+ #3f4a65 0%,
76
+ #181e30 40%,
77
+ #090a10 100%
78
+ );
79
+ }
80
+ 50% {
81
+ background: radial-gradient(
82
+ circle at 30% 30%,
83
+ #3a5065 0%,
84
+ #152230 40%,
85
+ #080a10 100%
86
+ );
87
+ }
88
+ 75% {
89
+ background: radial-gradient(
90
+ circle at 30% 30%,
91
+ #3f4a65 0%,
92
+ #181e30 40%,
93
+ #090a10 100%
94
+ );
95
+ }
96
+ }
97
+
98
+ .ball::before {
99
+ content: "";
100
+ position: absolute;
101
+ top: 8%;
102
+ left: 20%;
103
+ width: 30%;
104
+ height: 20%;
105
+ background: radial-gradient(
106
+ ellipse,
107
+ rgba(255, 255, 255, 0.3) 0%,
108
+ transparent 70%
109
+ );
110
+ border-radius: 50%;
111
+ pointer-events: none;
112
+ }
113
+
114
+ .ball::after {
115
+ content: "";
116
+ position: absolute;
117
+ bottom: 8%;
118
+ right: 25%;
119
+ width: 25%;
120
+ height: 10%;
121
+ background: radial-gradient(
122
+ ellipse,
123
+ rgba(255, 255, 255, 0.1) 0%,
124
+ transparent 70%
125
+ );
126
+ border-radius: 50%;
127
+ pointer-events: none;
128
+ }
129
+
130
+ .question {
131
+ font-size: clamp(0.5rem, 2vw, 0.75rem);
132
+ color: lightgrey;
133
+ max-width: 90%;
134
+ word-wrap: break-word;
135
+ overflow-wrap: break-word;
136
+ text-align: center;
137
+ line-height: 1.3;
138
+ font-style: italic;
139
+ }
140
+
141
+ .answer {
142
+ font-family: "Playfair Display", serif;
143
+ font-style: italic;
144
+ font-size: 1.25rem;
145
+ font-weight: 600;
146
+ margin-top: 0.5rem;
147
+ color: #7dd3fc;
148
+ text-shadow: 0 0 10px rgba(125, 211, 252, 0.5);
149
+ max-width: 90%;
150
+ word-wrap: break-word;
151
+ overflow-wrap: break-word;
152
+ text-align: center;
153
+ line-height: 1.3;
154
+ }
@@ -0,0 +1,27 @@
1
+ import "@/index.css";
2
+
3
+ import { mountWidget } from "skybridge/web";
4
+ import { useToolInfo } from "../helpers.js";
5
+
6
+ function Magic8Ball() {
7
+ const { input, output } = useToolInfo<"magic-8-ball">();
8
+
9
+ return (
10
+ <div className="container">
11
+ <div className="ball">
12
+ {output ? (
13
+ <>
14
+ <div className="question">{input.question}</div>
15
+ <div className="answer">{output.answer}</div>
16
+ </>
17
+ ) : (
18
+ <div className="question">Shaking...</div>
19
+ )}
20
+ </div>
21
+ </div>
22
+ );
23
+ }
24
+
25
+ export default Magic8Ball;
26
+
27
+ 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, type PluginOption } from "vite";
5
+
6
+ // https://vite.dev/config/
7
+ export default defineConfig({
8
+ plugins: [skybridge() as PluginOption, react()],
9
+ root: __dirname,
10
+ resolve: {
11
+ alias: {
12
+ "@": path.resolve(__dirname, "./src"),
13
+ },
14
+ },
15
+ });