create-skybridge 0.0.0-next.d563fa4 → 0.0.0-next.da3047d

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 (86) hide show
  1. package/dist/index.js +46 -24
  2. package/package.json +1 -1
  3. package/templates/blank/README.md +2 -1
  4. package/templates/blank/package.json +3 -3
  5. package/templates/blank/src/index.ts +3 -0
  6. package/templates/blank/src/server.ts +7 -11
  7. package/templates/blank/vite.config.ts +1 -1
  8. package/templates/demo/README.md +3 -1
  9. package/templates/demo/evals/start.eval.ts +11 -0
  10. package/templates/demo/node_modules/.bin/vitest +21 -0
  11. package/templates/demo/package.json +11 -5
  12. package/templates/demo/src/index.ts +3 -0
  13. package/templates/demo/src/server.ts +86 -88
  14. package/templates/demo/src/views/onboarding.tsx +3 -3
  15. package/templates/demo/tsconfig.evals.json +11 -0
  16. package/templates/demo/vite.config.ts +3 -3
  17. package/templates/ecom/.dockerignore +4 -0
  18. package/templates/ecom/.env.template +7 -0
  19. package/templates/ecom/.ladle/components.tsx +26 -0
  20. package/templates/ecom/.ladle/config.mjs +11 -0
  21. package/templates/ecom/.ladle/vite.config.ts +11 -0
  22. package/templates/ecom/AGENTS.md +2 -0
  23. package/templates/ecom/Dockerfile +53 -0
  24. package/templates/ecom/README.md +93 -0
  25. package/templates/ecom/_gitignore +9 -0
  26. package/templates/ecom/alpic.json +3 -0
  27. package/templates/ecom/node_modules/.bin/alpic +21 -0
  28. package/templates/ecom/node_modules/.bin/ladle +21 -0
  29. package/templates/ecom/node_modules/.bin/sb +21 -0
  30. package/templates/ecom/node_modules/.bin/skybridge +21 -0
  31. package/templates/ecom/node_modules/.bin/tsc +21 -0
  32. package/templates/ecom/node_modules/.bin/tsserver +21 -0
  33. package/templates/ecom/node_modules/.bin/tsx +21 -0
  34. package/templates/ecom/node_modules/.bin/vite +21 -0
  35. package/templates/ecom/package.json +42 -0
  36. package/templates/ecom/src/catalog/index.ts +19 -0
  37. package/templates/ecom/src/catalog/mock.ts +134 -0
  38. package/templates/ecom/src/catalog/shopify.ts +264 -0
  39. package/templates/ecom/src/components/chip.css.ts +63 -0
  40. package/templates/ecom/src/components/chip.stories.tsx +27 -0
  41. package/templates/ecom/src/components/chip.tsx +49 -0
  42. package/templates/ecom/src/components/empty-state.stories.tsx +3 -0
  43. package/templates/ecom/src/components/empty-state.tsx +12 -0
  44. package/templates/ecom/src/components/expandable-text.css.ts +49 -0
  45. package/templates/ecom/src/components/expandable-text.stories.tsx +20 -0
  46. package/templates/ecom/src/components/expandable-text.tsx +53 -0
  47. package/templates/ecom/src/components/image-gallery.css.ts +172 -0
  48. package/templates/ecom/src/components/image-gallery.stories.tsx +30 -0
  49. package/templates/ecom/src/components/image-gallery.tsx +163 -0
  50. package/templates/ecom/src/components/product-card.css.ts +159 -0
  51. package/templates/ecom/src/components/product-card.stories.tsx +58 -0
  52. package/templates/ecom/src/components/product-card.tsx +102 -0
  53. package/templates/ecom/src/components/product-carousel.css.ts +134 -0
  54. package/templates/ecom/src/components/product-carousel.stories.tsx +64 -0
  55. package/templates/ecom/src/components/product-carousel.tsx +202 -0
  56. package/templates/ecom/src/components/variant-picker.css.ts +27 -0
  57. package/templates/ecom/src/components/variant-picker.stories.tsx +67 -0
  58. package/templates/ecom/src/components/variant-picker.tsx +70 -0
  59. package/templates/ecom/src/components/view-frame.css.ts +22 -0
  60. package/templates/ecom/src/components/view-frame.tsx +27 -0
  61. package/templates/ecom/src/config.ts +12 -0
  62. package/templates/ecom/src/design/contract.css.ts +39 -0
  63. package/templates/ecom/src/design/fonts.css +15 -0
  64. package/templates/ecom/src/design/primitives.css.ts +101 -0
  65. package/templates/ecom/src/design/recipes/typography.css.ts +75 -0
  66. package/templates/ecom/src/design/sprinkles.css.ts +128 -0
  67. package/templates/ecom/src/design/themes/dark.css.ts +36 -0
  68. package/templates/ecom/src/design/themes/light.css.ts +36 -0
  69. package/templates/ecom/src/design/tokens.ts +8 -0
  70. package/templates/ecom/src/helpers.ts +4 -0
  71. package/templates/ecom/src/i18n.ts +35 -0
  72. package/templates/ecom/src/index.css +9 -0
  73. package/templates/ecom/src/index.ts +3 -0
  74. package/templates/ecom/src/lib/cx.ts +9 -0
  75. package/templates/ecom/src/lib/format.ts +9 -0
  76. package/templates/ecom/src/lib/variants.ts +150 -0
  77. package/templates/ecom/src/server.ts +39 -0
  78. package/templates/ecom/src/tools/render-carousel.ts +161 -0
  79. package/templates/ecom/src/tools/search-products.ts +196 -0
  80. package/templates/ecom/src/types.ts +87 -0
  81. package/templates/ecom/src/views/carousel/detail/detail.css.ts +115 -0
  82. package/templates/ecom/src/views/carousel/detail/detail.stories.tsx +133 -0
  83. package/templates/ecom/src/views/carousel/detail/index.tsx +254 -0
  84. package/templates/ecom/src/views/carousel/index.tsx +233 -0
  85. package/templates/ecom/tsconfig.json +11 -0
  86. package/templates/ecom/vite.config.ts +8 -0
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import mri from "mri";
7
7
  const OUTPUT_TAIL_LINES = 10;
8
8
  const DEFAULT_PROJECT_NAME = "skybridge-project";
9
9
  const PACKAGE_MANAGERS = ["bun", "deno", "npm", "pnpm", "yarn"];
10
- const TEMPLATES = ["demo", "blank"];
10
+ const TEMPLATES = ["demo", "blank", "ecom"];
11
11
  const pkg = JSON.parse(fs.readFileSync(fileURLToPath(new URL("../package.json", import.meta.url)), "utf-8"));
12
12
  const version = pkg.version;
13
13
  const HELP_MESSAGE = `Usage: skybridge create [path] [options]
@@ -19,6 +19,7 @@ Arguments:
19
19
 
20
20
  Options:
21
21
  --blank scaffold a minimal project without demo tools and views
22
+ --ecom scaffold the ecommerce template (search products, render carousel)
22
23
  --overwrite remove existing files if target directory is not empty
23
24
  --pm <choice> package manager to use (choices: ${PACKAGE_MANAGERS.join(", ")}. default to npm when none is provided or infered)
24
25
  --skip-skills skip installing coding agent skills
@@ -60,7 +61,15 @@ const Spinner = {
60
61
  };
61
62
  export async function init(args = process.argv.slice(2)) {
62
63
  const argv = mri(args, {
63
- boolean: ["help", "blank", "overwrite", "skip-skills", "start", "yes"],
64
+ boolean: [
65
+ "help",
66
+ "blank",
67
+ "ecom",
68
+ "overwrite",
69
+ "skip-skills",
70
+ "start",
71
+ "yes",
72
+ ],
64
73
  string: ["pm"],
65
74
  alias: { h: "help" },
66
75
  });
@@ -121,30 +130,43 @@ export async function init(args = process.argv.slice(2)) {
121
130
  if (argv.blank) {
122
131
  template = "blank";
123
132
  }
124
- else if (yes) {
125
- template = "demo";
133
+ if (argv.ecom) {
134
+ if (template) {
135
+ abort("Cannot specify both --blank and --ecom.");
136
+ }
137
+ template = "ecom";
126
138
  }
127
- else {
128
- const choice = await prompts.select({
129
- message: "Choose a template:",
130
- options: [
131
- {
132
- value: "demo",
133
- label: "demo",
134
- hint: "starter code with tools and UI",
135
- },
136
- {
137
- value: "blank",
138
- label: "blank",
139
- hint: "minimal boilerplate without tools",
140
- },
141
- ],
142
- initialValue: "demo",
143
- });
144
- if (prompts.isCancel(choice)) {
145
- return cancel();
139
+ if (!template) {
140
+ if (yes) {
141
+ template = "demo";
142
+ }
143
+ else {
144
+ const choice = await prompts.select({
145
+ message: "Choose a template:",
146
+ options: [
147
+ {
148
+ value: "demo",
149
+ label: "demo",
150
+ hint: "starter code with tools and UI",
151
+ },
152
+ {
153
+ value: "blank",
154
+ label: "blank",
155
+ hint: "minimal boilerplate without tools",
156
+ },
157
+ {
158
+ value: "ecom",
159
+ label: "ecom",
160
+ hint: "ecommerce template with product search tool and carousel view",
161
+ },
162
+ ],
163
+ initialValue: "demo",
164
+ });
165
+ if (prompts.isCancel(choice)) {
166
+ return cancel();
167
+ }
168
+ template = choice;
146
169
  }
147
- template = choice;
148
170
  }
149
171
  // 4. Copy template
150
172
  const root = path.resolve(targetDir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-skybridge",
3
- "version": "0.0.0-next.d563fa4",
3
+ "version": "0.0.0-next.da3047d",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Alpic",
@@ -48,7 +48,8 @@ This command starts:
48
48
 
49
49
  ```
50
50
  ├── src/
51
- │ ├── server.ts # Server entry point
51
+ │ ├── index.ts # Entry point (starts the app)
52
+ │ ├── server.ts # App definition (tools, views)
52
53
  │ └── helpers.ts # Shared utilities
53
54
  ├── vite.config.ts
54
55
  ├── alpic.json # Deployment config
@@ -12,12 +12,12 @@
12
12
  "deploy": "alpic deploy"
13
13
  },
14
14
  "dependencies": {
15
- "@modelcontextprotocol/sdk": "^1.29.0",
16
- "skybridge": "^0.0.0-next.d563fa4",
15
+ "skybridge": "^0.0.0-next.da3047d",
17
16
  "vite": "^8.1.5"
18
17
  },
19
18
  "devDependencies": {
20
- "@skybridge/devtools": "^1.2.7",
19
+ "@skybridge/devtools": "^0.0.0-next.da3047d",
20
+ "@skybridge/vite-plugin": "^0.0.0-next.da3047d",
21
21
  "@types/node": "^24.13.3",
22
22
  "alpic": "^1.155.0",
23
23
  "tsx": "^4.23.1",
@@ -0,0 +1,3 @@
1
+ import { app } from "./server.js";
2
+
3
+ export default await app.run();
@@ -1,16 +1,12 @@
1
- import { McpServer } from "skybridge/server";
2
-
3
- const server = new McpServer(
4
- {
5
- name: "skybridge-blank",
6
- version: "0.0.1",
7
- },
8
- { capabilities: {} },
9
- );
1
+ import { Skybridge } from "skybridge/server";
10
2
 
11
3
  // Register tools with `server.registerTool(...)`.
12
4
  // Docs: https://docs.skybridge.tech/api-reference/register-tool
13
5
 
14
- export default await server.run();
6
+ export const app = new Skybridge({
7
+ name: "skybridge-blank",
8
+ version: "0.0.1",
9
+ handler: (server) => server,
10
+ });
15
11
 
16
- export type AppType = typeof server;
12
+ export type AppType = typeof app;
@@ -1,4 +1,4 @@
1
- import { skybridge } from "skybridge/vite";
1
+ import { skybridge } from "@skybridge/vite-plugin";
2
2
  import { defineConfig } from "vite";
3
3
 
4
4
  export default defineConfig({
@@ -48,11 +48,13 @@ This command starts:
48
48
 
49
49
  ```
50
50
  ├── src/
51
- │ ├── server.ts # Server entry point
51
+ │ ├── index.ts # Entry point (starts the app)
52
+ │ ├── server.ts # App definition (tools, views)
52
53
  │ ├── views/ # React components (one per view)
53
54
  │ ├── components/ # Shared UI components
54
55
  │ ├── helpers.ts # Shared utilities
55
56
  │ └── index.css # Global styles
57
+ ├── evals/ # Model-driven scenarios (pnpm evals, needs ANTHROPIC_API_KEY)
56
58
  ├── vite.config.ts
57
59
  ├── alpic.json # Deployment config
58
60
  └── package.json
@@ -0,0 +1,11 @@
1
+ import { anthropic } from "@ai-sdk/anthropic";
2
+ import { start } from "@skybridge/test";
3
+ import { expect, it } from "vitest";
4
+ import { app } from "../src/server.js";
5
+
6
+ it("reaches the onboarding tool from a natural prompt", async () => {
7
+ const chat = await start({ app, model: anthropic("claude-sonnet-4-5") });
8
+ await chat.send("Get me started with Skybridge, my name is Ada");
9
+
10
+ expect.chat(chat).toHaveCalledToolOnce("start");
11
+ });
@@ -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/vitest@4.1.10_@opentelemetry+api@1.9.1_@types+node@24.13.3_@vitest+ui@4.1.10_jsdom@29.1_07746666baa47915e6a10611198811a1/node_modules/vitest/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vitest@4.1.10_@opentelemetry+api@1.9.1_@types+node@24.13.3_@vitest+ui@4.1.10_jsdom@29.1_07746666baa47915e6a10611198811a1/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/vitest@4.1.10_@opentelemetry+api@1.9.1_@types+node@24.13.3_@vitest+ui@4.1.10_jsdom@29.1_07746666baa47915e6a10611198811a1/node_modules/vitest/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vitest@4.1.10_@opentelemetry+api@1.9.1_@types+node@24.13.3_@vitest+ui@4.1.10_jsdom@29.1_07746666baa47915e6a10611198811a1/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/../vitest/vitest.mjs" "$@"
19
+ else
20
+ exec node "$basedir/../vitest/vitest.mjs" "$@"
21
+ fi
@@ -9,31 +9,37 @@
9
9
  "dev:tunnel": "skybridge dev --tunnel",
10
10
  "build": "skybridge build",
11
11
  "start": "skybridge start",
12
- "deploy": "alpic deploy"
12
+ "deploy": "alpic deploy",
13
+ "evals": "vitest run evals",
14
+ "evals:types": "tsc --noEmit -p tsconfig.evals.json"
13
15
  },
14
16
  "dependencies": {
15
17
  "@alpic-ai/ui": "^1.155.0",
16
- "@modelcontextprotocol/sdk": "^1.29.0",
17
18
  "lucide-react": "^1.25.0",
18
19
  "react": "^19.2.7",
19
20
  "react-dom": "^19.2.7",
20
- "skybridge": "^0.0.0-next.d563fa4",
21
+ "skybridge": "^0.0.0-next.da3047d",
21
22
  "sonner": "^2.0.7",
22
23
  "tw-animate-css": "^1.4.0",
23
24
  "vite": "^8.1.5",
24
25
  "zod": "^4.4.3"
25
26
  },
26
27
  "devDependencies": {
27
- "@skybridge/devtools": "^1.2.7",
28
+ "@ai-sdk/anthropic": "^2.0.90",
29
+ "@skybridge/devtools": "^0.0.0-next.da3047d",
30
+ "@skybridge/test": "beta",
31
+ "@skybridge/vite-plugin": "^0.0.0-next.da3047d",
28
32
  "@tailwindcss/vite": "^4.3.3",
29
33
  "@types/node": "^24.13.3",
30
34
  "@types/react": "^19.2.17",
31
35
  "@types/react-dom": "^19.2.3",
32
36
  "@vitejs/plugin-react": "^6.0.3",
37
+ "ai": "^5.0.0",
33
38
  "alpic": "^1.155.0",
34
39
  "tailwindcss": "^4.3.3",
35
40
  "tsx": "^4.23.1",
36
- "typescript": "^6.0.3"
41
+ "typescript": "^6.0.3",
42
+ "vitest": "^4.1.10"
37
43
  },
38
44
  "engines": {
39
45
  "node": ">=24.18.0"
@@ -0,0 +1,3 @@
1
+ import { app } from "./server.js";
2
+
3
+ export default await app.run();
@@ -1,94 +1,92 @@
1
- import { McpServer } from "skybridge/server";
1
+ import { Skybridge } from "skybridge/server";
2
2
  import { z } from "zod";
3
3
 
4
- const server = new McpServer(
5
- {
6
- name: "alpic-openai-app",
7
- version: "0.0.1",
8
- },
9
- { capabilities: {} },
10
- )
11
- .registerTool(
12
- {
13
- name: "start",
14
- description: "Onboard Skybridge",
15
- inputSchema: {
16
- name: z.string().optional().describe("The user name."),
17
- },
18
- annotations: {
19
- title: "Start Skybridge onboarding",
20
- readOnlyHint: true,
21
- destructiveHint: false,
22
- openWorldHint: false,
23
- },
24
- _meta: {
25
- "openai/toolInvocation/invoking": "Starting the Skybridge onboarding…",
26
- "openai/toolInvocation/invoked": "Onboarding ready.",
27
- },
28
- view: {
29
- component: "onboarding",
30
- // Replace with the URL your widget will be served from in production.
31
- domain: "https://skybridge.tech",
32
- description: "Onboarding deck",
33
- csp: {
34
- resourceDomains: [
35
- "https://fonts.googleapis.com",
36
- "https://fonts.gstatic.com",
37
- ],
38
- redirectDomains: ["https://docs.skybridge.tech"],
4
+ export const app = new Skybridge({
5
+ name: "alpic-openai-app",
6
+ version: "0.0.1",
7
+ handler: (server) =>
8
+ server
9
+ .registerTool(
10
+ {
11
+ name: "start",
12
+ description: "Onboard Skybridge",
13
+ inputSchema: {
14
+ name: z.string().optional().describe("The user name."),
15
+ },
16
+ annotations: {
17
+ title: "Start Skybridge onboarding",
18
+ readOnlyHint: true,
19
+ destructiveHint: false,
20
+ openWorldHint: false,
21
+ },
22
+ _meta: {
23
+ "openai/toolInvocation/invoking":
24
+ "Starting the Skybridge onboarding…",
25
+ "openai/toolInvocation/invoked": "Onboarding ready.",
26
+ },
27
+ view: {
28
+ component: "onboarding",
29
+ // Replace with the URL your widget will be served from in production.
30
+ domain: "https://skybridge.tech",
31
+ description: "Onboarding deck",
32
+ csp: {
33
+ resourceDomains: [
34
+ "https://fonts.googleapis.com",
35
+ "https://fonts.gstatic.com",
36
+ ],
37
+ redirectDomains: ["https://docs.skybridge.tech"],
38
+ },
39
+ },
39
40
  },
40
- },
41
- },
42
- async ({ name }) => {
43
- return {
44
- structuredContent: { name },
45
- content: [{ type: "text", text: `User name: ${name ?? "friend"}` }],
46
- isError: false,
47
- };
48
- },
49
- )
50
- .registerTool(
51
- {
52
- name: "get-fortune-cookie",
53
- description: "Get fortune cookie",
54
- annotations: {
55
- title: "Get a fortune cookie",
56
- readOnlyHint: true,
57
- destructiveHint: false,
58
- openWorldHint: false,
59
- },
60
- _meta: {
61
- "openai/toolInvocation/invoking": "Cracking open a fortune cookie…",
62
- "openai/toolInvocation/invoked": "Fortune revealed.",
63
- },
64
- },
65
- async () => {
66
- const predictions = [
67
- "A pleasant surprise is waiting for you.",
68
- "Your hard work will soon pay off.",
69
- "An unexpected friendship will brighten your week.",
70
- "The best is yet to come.",
71
- "A small step today leads to a giant leap tomorrow.",
72
- "Trust your instincts: they are sharper than you think.",
73
- "Adventure awaits just around the corner.",
74
- "A long-forgotten idea will return with great success.",
75
- "Kindness given today will be returned threefold.",
76
- "Something you lost will soon be found.",
77
- ];
78
- const prediction =
79
- predictions[Math.floor(Math.random() * predictions.length)];
80
-
81
- // simulate backend work
82
- await new Promise((resolve) => setTimeout(resolve, 1000));
41
+ async ({ name }) => {
42
+ return {
43
+ structuredContent: { name },
44
+ content: [{ type: "text", text: `User name: ${name ?? "friend"}` }],
45
+ isError: false,
46
+ };
47
+ },
48
+ )
49
+ .registerTool(
50
+ {
51
+ name: "get-fortune-cookie",
52
+ description: "Get fortune cookie",
53
+ annotations: {
54
+ title: "Get a fortune cookie",
55
+ readOnlyHint: true,
56
+ destructiveHint: false,
57
+ openWorldHint: false,
58
+ },
59
+ _meta: {
60
+ "openai/toolInvocation/invoking": "Cracking open a fortune cookie…",
61
+ "openai/toolInvocation/invoked": "Fortune revealed.",
62
+ },
63
+ },
64
+ async () => {
65
+ const predictions = [
66
+ "A pleasant surprise is waiting for you.",
67
+ "Your hard work will soon pay off.",
68
+ "An unexpected friendship will brighten your week.",
69
+ "The best is yet to come.",
70
+ "A small step today leads to a giant leap tomorrow.",
71
+ "Trust your instincts: they are sharper than you think.",
72
+ "Adventure awaits just around the corner.",
73
+ "A long-forgotten idea will return with great success.",
74
+ "Kindness given today will be returned threefold.",
75
+ "Something you lost will soon be found.",
76
+ ];
77
+ const prediction =
78
+ predictions[Math.floor(Math.random() * predictions.length)];
83
79
 
84
- return {
85
- structuredContent: { prediction },
86
- content: [{ type: "text", text: prediction }],
87
- isError: false,
88
- };
89
- },
90
- );
80
+ // simulate backend work
81
+ await new Promise((resolve) => setTimeout(resolve, 1000));
91
82
 
92
- export default await server.run();
83
+ return {
84
+ structuredContent: { prediction },
85
+ content: [{ type: "text", text: prediction }],
86
+ isError: false,
87
+ };
88
+ },
89
+ ),
90
+ });
93
91
 
94
- export type AppType = typeof server;
92
+ export type AppType = typeof app;
@@ -1,7 +1,7 @@
1
1
  import "@/index.css";
2
2
 
3
3
  import { useState } from "react";
4
- import { useLayout } from "skybridge/web";
4
+ import { useUser } from "skybridge/web";
5
5
  import Nav from "./components/nav.js";
6
6
  import Progress from "./components/progress.js";
7
7
  import Outro from "./components/steps/outro.js";
@@ -18,8 +18,8 @@ const STEPS = [
18
18
  ] as const;
19
19
 
20
20
  export default function Onboarding() {
21
- // useLayout: read host layout info (theme, display mode, locale, ...).
22
- const { theme } = useLayout();
21
+ // useUser: read user environment info (theme, locale, user agent).
22
+ const { theme } = useUser();
23
23
 
24
24
  const [step, setStep] = useState(0);
25
25
  const { img } = useMascot();
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+
4
+ "compilerOptions": {
5
+ "rootDir": ".",
6
+ "noEmit": true,
7
+ "incremental": false
8
+ },
9
+
10
+ "include": ["src", "evals", ".skybridge/**/*.d.ts"]
11
+ }
@@ -1,11 +1,11 @@
1
1
  import path from "node:path";
2
+ import { skybridge } from "@skybridge/vite-plugin";
2
3
  import tailwindcss from "@tailwindcss/vite";
3
4
  import react from "@vitejs/plugin-react";
4
- import { skybridge } from "skybridge/vite";
5
5
  import { defineConfig } from "vite";
6
6
 
7
7
  export default defineConfig({
8
- plugins: [skybridge(), react(), tailwindcss()],
8
+ plugins: [skybridge({ evals: {} }), react(), tailwindcss()],
9
9
  server: {
10
10
  forwardConsole: {
11
11
  unhandledErrors: true,
@@ -14,7 +14,7 @@ export default defineConfig({
14
14
  },
15
15
  resolve: {
16
16
  alias: {
17
- "@": path.resolve(__dirname, "./src"),
17
+ "@": path.resolve(import.meta.dirname, "./src"),
18
18
  },
19
19
  },
20
20
  });
@@ -0,0 +1,4 @@
1
+ node_modules
2
+ .git
3
+ dist
4
+ .env*
@@ -0,0 +1,7 @@
1
+ # Copy to .env and fill in. Sourced by the server at startup.
2
+ API_KEY=
3
+
4
+ # Only for the Shopify catalog provider (src/catalog/shopify.ts).
5
+ # The token is the public Storefront API access token, not an Admin key.
6
+ SHOPIFY_STORE_DOMAIN=
7
+ SHOPIFY_STOREFRONT_TOKEN=
@@ -0,0 +1,26 @@
1
+ import type { GlobalProvider } from "@ladle/react";
2
+ import "../src/index.css";
3
+ import { viewFrame } from "../src/components/view-frame.css";
4
+ import { darkTheme, lightTheme } from "../src/design/tokens";
5
+ import { cx } from "../src/lib/cx";
6
+
7
+ /**
8
+ * Ladle's built-in theme toggle (sun/moon in the toolbar) drives
9
+ * globalState.theme. We reuse it to flip the widget's own palette, so the
10
+ * preview theme and the widget theme always match. The Provider applies the
11
+ * real ViewFrame surface (viewFrame + theme class), and index.css loads the
12
+ * brand @font-face rules, so stories preview against the actual frame.
13
+ */
14
+ export const Provider: GlobalProvider = ({ children, globalState }) => {
15
+ const themeClass = globalState.theme === "dark" ? darkTheme : lightTheme;
16
+
17
+ return (
18
+ <div
19
+ className={cx(viewFrame, themeClass)}
20
+ data-theme={globalState.theme}
21
+ style={{ minHeight: "100vh", padding: 32 }}
22
+ >
23
+ {children}
24
+ </div>
25
+ );
26
+ };
@@ -0,0 +1,11 @@
1
+ /** @type {import('@ladle/react').UserConfig} */
2
+ export default {
3
+ stories: "src/**/*.stories.{ts,tsx}",
4
+ viteConfig: ".ladle/vite.config.ts",
5
+ addons: {
6
+ theme: {
7
+ enabled: true,
8
+ defaultState: "light",
9
+ },
10
+ },
11
+ };
@@ -0,0 +1,11 @@
1
+ import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
2
+ import { defineConfig } from "vite";
3
+
4
+ /**
5
+ * Ladle-only vite config. Intentionally omits the Skybridge plugin (which
6
+ * transforms MCP view boilerplate and crashes Ladle's bundler) and the
7
+ * @vitejs/plugin-react call (Ladle provides its own).
8
+ */
9
+ export default defineConfig({
10
+ plugins: [vanillaExtractPlugin()],
11
+ });
@@ -0,0 +1,2 @@
1
+ This is an MCP ecommerce app built with Skybridge.
2
+ ALWAYS use the `chatgpt-app-builder` skill when planning or updating the codebase: see its "ecommerce" reference.
@@ -0,0 +1,53 @@
1
+ # syntax=docker/dockerfile:1
2
+
3
+ # Dockerfile for a Skybridge MCP server.
4
+ #
5
+ # Detects npm, yarn, or pnpm from the lockfile in your project.
6
+ # (For bun or deno, adapt the install/build/prune commands below.)
7
+
8
+ # Build stage: install deps, compile the app, then prune dev deps.
9
+ FROM node:24.18.0-slim AS build
10
+ WORKDIR /app
11
+
12
+ COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* .npmrc* ./
13
+ RUN --mount=type=cache,target=/root/.npm \
14
+ --mount=type=cache,target=/usr/local/share/.cache/yarn \
15
+ --mount=type=cache,target=/root/.local/share/pnpm/store \
16
+ if [ -f package-lock.json ]; then \
17
+ npm ci; \
18
+ elif [ -f yarn.lock ]; then \
19
+ corepack enable yarn && yarn install --frozen-lockfile; \
20
+ elif [ -f pnpm-lock.yaml ]; then \
21
+ corepack enable pnpm && pnpm install --frozen-lockfile; \
22
+ else \
23
+ echo "No lockfile found." && exit 1; \
24
+ fi
25
+
26
+ ENV NODE_ENV=production
27
+
28
+ COPY . .
29
+ RUN if [ -f package-lock.json ]; then \
30
+ npm run build && npm prune --omit=dev; \
31
+ elif [ -f yarn.lock ]; then \
32
+ corepack enable yarn && yarn build && yarn install --frozen-lockfile --production=true; \
33
+ elif [ -f pnpm-lock.yaml ]; then \
34
+ corepack enable pnpm && pnpm build && pnpm prune --prod; \
35
+ fi
36
+
37
+ # Runtime stage: copy built artifacts and prod deps, run as non-root.
38
+ FROM node:24.18.0-slim AS runtime
39
+ WORKDIR /app
40
+ ENV NODE_ENV=production
41
+
42
+ USER node
43
+
44
+ COPY --from=build --chown=node:node /app/node_modules ./node_modules
45
+ COPY --from=build --chown=node:node /app/dist ./dist
46
+ COPY --from=build --chown=node:node /app/package.json ./package.json
47
+
48
+ EXPOSE 3000
49
+
50
+ # Run the built server directly rather than via `npm start` / `skybridge start`.
51
+ # Each wrapper adds a process layer that can swallow SIGTERM, which makes
52
+ # graceful shutdowns time out on platforms like Cloud Run, Fly, and k8s.
53
+ CMD ["node", "dist/__entry.js"]