create-skybridge 2.0.0-beta.dba0bc8 → 2.0.0

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/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import fs from "node:fs";
2
+ import os from "node:os";
2
3
  import path from "node:path";
3
4
  import { fileURLToPath } from "node:url";
4
5
  import * as prompts from "@clack/prompts";
@@ -8,6 +9,7 @@ const OUTPUT_TAIL_LINES = 10;
8
9
  const DEFAULT_PROJECT_NAME = "skybridge-project";
9
10
  const PACKAGE_MANAGERS = ["bun", "deno", "npm", "pnpm", "yarn"];
10
11
  const TEMPLATES = ["demo", "blank", "ecom"];
12
+ const REPO = "alpic-ai/skybridge";
11
13
  const pkg = JSON.parse(fs.readFileSync(fileURLToPath(new URL("../package.json", import.meta.url)), "utf-8"));
12
14
  const version = pkg.version;
13
15
  const HELP_MESSAGE = `Usage: skybridge create [path] [options]
@@ -18,14 +20,15 @@ Arguments:
18
20
  path Where the project will be created. Prompted when omitted.
19
21
 
20
22
  Options:
21
- --blank scaffold a minimal project without demo tools and views
22
- --ecom scaffold the ecommerce template (search products, render carousel)
23
- --overwrite remove existing files if target directory is not empty
24
- --pm <choice> package manager to use (choices: ${PACKAGE_MANAGERS.join(", ")}. default to npm when none is provided or infered)
25
- --skip-skills skip installing coding agent skills
26
- --start start dev server
27
- --yes skip prompts and use default values for unprovided options
28
- --help display this help message
23
+ --blank scaffold a minimal project without demo tools and views
24
+ --ecom scaffold the ecommerce template (search products, render carousel)
25
+ --example <name> scaffold a copy of examples/<name> from the latest Skybridge release
26
+ --overwrite remove existing files if target directory is not empty
27
+ --pm <choice> package manager to use (choices: ${PACKAGE_MANAGERS.join(", ")}. default to npm when none is provided or infered)
28
+ --skip-skills skip installing coding agent skills
29
+ --start start dev server
30
+ --yes skip prompts and use default values for unprovided options
31
+ --help display this help message
29
32
 
30
33
  Non-interactive usage:
31
34
  Mandatory: path argument and --yes option
@@ -70,7 +73,7 @@ export async function init(args = process.argv.slice(2)) {
70
73
  "start",
71
74
  "yes",
72
75
  ],
73
- string: ["pm"],
76
+ string: ["pm", "example"],
74
77
  alias: { h: "help" },
75
78
  });
76
79
  if (argv.help) {
@@ -82,6 +85,13 @@ export async function init(args = process.argv.slice(2)) {
82
85
  if (yes && !targetDir) {
83
86
  abort("The target directory is required in non-interactive mode.", "Example: skybridge create my-app --yes");
84
87
  }
88
+ if (argv.example !== undefined && !/^[\w.-]+$/.test(argv.example)) {
89
+ abort("--example requires a name, e.g. --example auth-descope.");
90
+ }
91
+ if (argv.example && (argv.blank || argv.ecom)) {
92
+ abort("Cannot combine --example with --blank or --ecom.");
93
+ }
94
+ const example = argv.example;
85
95
  let pm = parsePackageManager(argv.pm || "");
86
96
  if (argv.pm && !pm) {
87
97
  abort(`Invalid --pm value "${argv.pm}". Expected one of: ${PACKAGE_MANAGERS.join(", ")}.`);
@@ -104,6 +114,18 @@ export async function init(args = process.argv.slice(2)) {
104
114
  targetDir = sanitizeTargetDir(choice);
105
115
  }
106
116
  // 2. Existing-directory handling
117
+ let downloaded;
118
+ if (example) {
119
+ Spinner.start(`Downloading ${example} example`);
120
+ try {
121
+ downloaded = await downloadExample(example);
122
+ Spinner.stop(`Downloaded ${example} example`);
123
+ }
124
+ catch (error) {
125
+ Spinner.error(`Failed to download ${example} example`);
126
+ abort(error instanceof Error ? error.message : String(error));
127
+ }
128
+ }
107
129
  if (fs.existsSync(targetDir) && !isEmpty(targetDir)) {
108
130
  if (argv.overwrite) {
109
131
  emptyDir(targetDir);
@@ -136,7 +158,7 @@ export async function init(args = process.argv.slice(2)) {
136
158
  }
137
159
  template = "ecom";
138
160
  }
139
- if (!template) {
161
+ if (!template && !example) {
140
162
  if (yes) {
141
163
  template = "demo";
142
164
  }
@@ -170,23 +192,31 @@ export async function init(args = process.argv.slice(2)) {
170
192
  }
171
193
  // 4. Copy template
172
194
  const root = path.resolve(targetDir);
173
- Spinner.start(`Copying ${template} template`);
195
+ const templatesDir = fileURLToPath(new URL("../templates", import.meta.url));
196
+ const source = downloaded?.source ?? path.join(templatesDir, template ?? "demo");
197
+ Spinner.start(`Copying ${example ?? template} template`);
174
198
  try {
175
- const templateDir = fileURLToPath(new URL(`../templates/${template}`, import.meta.url));
176
- fs.cpSync(templateDir, root, {
199
+ fs.cpSync(source, root, {
177
200
  recursive: true,
178
201
  filter: (src) => [".npmrc"].every((file) => !src.endsWith(file)),
179
202
  });
203
+ const gitignore = path.join(root, ".gitignore");
180
204
  const gitignoreSource = path.join(root, "_gitignore");
181
205
  if (fs.existsSync(gitignoreSource)) {
182
- fs.renameSync(gitignoreSource, path.join(root, ".gitignore"));
206
+ fs.renameSync(gitignoreSource, gitignore);
207
+ }
208
+ else if (!fs.existsSync(gitignore)) {
209
+ fs.copyFileSync(path.join(templatesDir, "demo", "_gitignore"), gitignore);
183
210
  }
184
- Spinner.stop(`Copied ${template} template`);
211
+ Spinner.stop(`Copied ${example ?? template} template`);
185
212
  }
186
213
  catch (error) {
187
214
  Spinner.error("Failed to copy template");
188
215
  abort(String(error));
189
216
  }
217
+ finally {
218
+ downloaded?.cleanup();
219
+ }
190
220
  // 5. Set package.json name to the project dir basename
191
221
  try {
192
222
  const pkgPath = path.join(root, "package.json");
@@ -340,6 +370,62 @@ ${scriptCommand(pm, "deploy")}`);
340
370
  Chat: https://discord.alpic.ai
341
371
  Docs: https://docs.skybridge.tech`);
342
372
  }
373
+ async function fetchJson(url) {
374
+ const res = await fetch(url, {
375
+ headers: { accept: "application/vnd.github+json" },
376
+ });
377
+ if (!res.ok) {
378
+ throw new Error(`GitHub returned ${res.status} for ${url}.`);
379
+ }
380
+ return res.json();
381
+ }
382
+ async function downloadExample(name) {
383
+ const api = `https://api.github.com/repos/${REPO}`;
384
+ const { tag_name: tag } = await fetchJson(`${api}/releases/latest`);
385
+ const entries = await fetchJson(`${api}/contents/examples?ref=${tag}`);
386
+ const available = entries
387
+ .filter((entry) => entry.type === "dir")
388
+ .map((entry) => entry.name);
389
+ if (!available.includes(name)) {
390
+ throw new Error(`Unknown example "${name}". Available examples:\n ${available.join("\n ")}`);
391
+ }
392
+ const res = await fetch(`https://codeload.github.com/${REPO}/tar.gz/${tag}`);
393
+ if (!res.ok) {
394
+ throw new Error(`GitHub returned ${res.status} while fetching ${REPO}.`);
395
+ }
396
+ const archive = Buffer.from(await res.arrayBuffer());
397
+ const tmp = fs.mkdtempSync(path.join(os.tmpdir(), "skybridge-example-"));
398
+ const cleanup = () => fs.rmSync(tmp, { recursive: true, force: true });
399
+ try {
400
+ const tar = spawn("tar", ["-xz", "-C", tmp], {
401
+ stdio: ["pipe", "ignore", "pipe"],
402
+ });
403
+ let stderr = "";
404
+ tar.stderr?.on("data", (chunk) => {
405
+ stderr += chunk.toString();
406
+ });
407
+ const exit = new Promise((resolve, reject) => {
408
+ tar.on("error", (error) => reject(error.code === "ENOENT"
409
+ ? new Error("`tar` is required to extract the example.")
410
+ : error));
411
+ tar.on("close", (status) => status === 0
412
+ ? resolve()
413
+ : reject(new Error(`tar exited with ${status}: ${stderr.trim()}`)));
414
+ });
415
+ tar.stdin?.on("error", () => { });
416
+ tar.stdin?.end(archive);
417
+ await exit;
418
+ const [extracted] = fs.readdirSync(tmp);
419
+ if (!extracted) {
420
+ throw new Error("Downloaded archive is empty.");
421
+ }
422
+ return { source: path.join(tmp, extracted, "examples", name), cleanup };
423
+ }
424
+ catch (error) {
425
+ cleanup();
426
+ throw error;
427
+ }
428
+ }
343
429
  function cancel() {
344
430
  prompts.cancel("Operation cancelled");
345
431
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-skybridge",
3
- "version": "2.0.0-beta.dba0bc8",
3
+ "version": "2.0.0",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Alpic",
@@ -12,12 +12,13 @@
12
12
  "deploy": "alpic deploy"
13
13
  },
14
14
  "dependencies": {
15
- "skybridge": "^2.0.0-beta.dba0bc8",
16
- "vite": "^8.1.5"
15
+ "skybridge": "^2.0.0",
16
+ "vite": "^8.1.5",
17
+ "zod": "^4.4.3"
17
18
  },
18
19
  "devDependencies": {
19
- "@skybridge/devtools": "^2.0.0-beta.dba0bc8",
20
- "@skybridge/vite-plugin": "^2.0.0-beta.dba0bc8",
20
+ "@skybridge/devtools": "^2.0.0",
21
+ "@skybridge/vite-plugin": "^2.0.0",
21
22
  "@types/node": "^24.13.3",
22
23
  "alpic": "^1.155.0",
23
24
  "tsx": "^4.23.1",
@@ -1,15 +1,12 @@
1
- import { Skybridge, type SkybridgeServer } from "skybridge/server";
1
+ import { Skybridge } from "skybridge/server";
2
2
 
3
3
  // Register tools with `server.registerTool(...)`.
4
4
  // Docs: https://docs.skybridge.tech/api-reference/register-tool
5
5
 
6
- export const handler = (server: SkybridgeServer) => server;
7
-
8
6
  export const app = new Skybridge({
9
7
  name: "skybridge-blank",
10
8
  version: "0.0.1",
11
- capabilities: {},
12
- handler,
9
+ handler: (server) => server,
13
10
  });
14
11
 
15
12
  export type AppType = typeof app;
@@ -54,6 +54,7 @@ This command starts:
54
54
  │ ├── components/ # Shared UI components
55
55
  │ ├── helpers.ts # Shared utilities
56
56
  │ └── index.css # Global styles
57
+ ├── evals/ # Model-driven scenarios (pnpm evals, needs ANTHROPIC_API_KEY)
57
58
  ├── vite.config.ts
58
59
  ├── alpic.json # Deployment config
59
60
  └── package.json
@@ -18,7 +18,7 @@
18
18
  "lucide-react": "^1.25.0",
19
19
  "react": "^19.2.7",
20
20
  "react-dom": "^19.2.7",
21
- "skybridge": "^2.0.0-beta.dba0bc8",
21
+ "skybridge": "^2.0.0",
22
22
  "sonner": "^2.0.7",
23
23
  "tw-animate-css": "^1.4.0",
24
24
  "vite": "^8.1.5",
@@ -26,9 +26,9 @@
26
26
  },
27
27
  "devDependencies": {
28
28
  "@ai-sdk/anthropic": "^2.0.90",
29
- "@skybridge/devtools": "^2.0.0-beta.dba0bc8",
29
+ "@skybridge/devtools": "^2.0.0",
30
30
  "@skybridge/test": "beta",
31
- "@skybridge/vite-plugin": "^2.0.0-beta.dba0bc8",
31
+ "@skybridge/vite-plugin": "^2.0.0",
32
32
  "@tailwindcss/vite": "^4.3.3",
33
33
  "@types/node": "^24.13.3",
34
34
  "@types/react": "^19.2.17",
@@ -1,95 +1,92 @@
1
- import { Skybridge, type SkybridgeServer } from "skybridge/server";
1
+ import { Skybridge } from "skybridge/server";
2
2
  import { z } from "zod";
3
3
 
4
- export const handler = (server: SkybridgeServer) =>
5
- server
6
- .registerTool(
7
- {
8
- name: "start",
9
- description: "Onboard Skybridge",
10
- inputSchema: {
11
- name: z.string().optional().describe("The user name."),
12
- },
13
- annotations: {
14
- title: "Start Skybridge onboarding",
15
- readOnlyHint: true,
16
- destructiveHint: false,
17
- openWorldHint: false,
18
- },
19
- _meta: {
20
- "openai/toolInvocation/invoking":
21
- "Starting the Skybridge onboarding…",
22
- "openai/toolInvocation/invoked": "Onboarding ready.",
23
- },
24
- view: {
25
- component: "onboarding",
26
- // Replace with the URL your widget will be served from in production.
27
- domain: "https://skybridge.tech",
28
- description: "Onboarding deck",
29
- csp: {
30
- resourceDomains: [
31
- "https://fonts.googleapis.com",
32
- "https://fonts.gstatic.com",
33
- ],
34
- 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
+ },
35
39
  },
36
40
  },
37
- },
38
- async ({ name }) => {
39
- return {
40
- structuredContent: { name },
41
- content: [{ type: "text", text: `User name: ${name ?? "friend"}` }],
42
- isError: false,
43
- };
44
- },
45
- )
46
- .registerTool(
47
- {
48
- name: "get-fortune-cookie",
49
- description: "Get fortune cookie",
50
- annotations: {
51
- title: "Get a fortune cookie",
52
- readOnlyHint: true,
53
- destructiveHint: false,
54
- openWorldHint: false,
41
+ async ({ name }) => {
42
+ return {
43
+ structuredContent: { name },
44
+ content: [{ type: "text", text: `User name: ${name ?? "friend"}` }],
45
+ isError: false,
46
+ };
55
47
  },
56
- _meta: {
57
- "openai/toolInvocation/invoking": "Cracking open a fortune cookie…",
58
- "openai/toolInvocation/invoked": "Fortune revealed.",
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
+ },
59
63
  },
60
- },
61
- async () => {
62
- const predictions = [
63
- "A pleasant surprise is waiting for you.",
64
- "Your hard work will soon pay off.",
65
- "An unexpected friendship will brighten your week.",
66
- "The best is yet to come.",
67
- "A small step today leads to a giant leap tomorrow.",
68
- "Trust your instincts: they are sharper than you think.",
69
- "Adventure awaits just around the corner.",
70
- "A long-forgotten idea will return with great success.",
71
- "Kindness given today will be returned threefold.",
72
- "Something you lost will soon be found.",
73
- ];
74
- const prediction =
75
- predictions[Math.floor(Math.random() * predictions.length)];
76
-
77
- // simulate backend work
78
- await new Promise((resolve) => setTimeout(resolve, 1000));
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)];
79
79
 
80
- return {
81
- structuredContent: { prediction },
82
- content: [{ type: "text", text: prediction }],
83
- isError: false,
84
- };
85
- },
86
- );
80
+ // simulate backend work
81
+ await new Promise((resolve) => setTimeout(resolve, 1000));
87
82
 
88
- export const app = new Skybridge({
89
- name: "alpic-openai-app",
90
- version: "0.0.1",
91
- capabilities: {},
92
- handler,
83
+ return {
84
+ structuredContent: { prediction },
85
+ content: [{ type: "text", text: prediction }],
86
+ isError: false,
87
+ };
88
+ },
89
+ ),
93
90
  });
94
91
 
95
92
  export type AppType = typeof app;
@@ -16,14 +16,14 @@
16
16
  "dependencies": {
17
17
  "react": "^19.2.4",
18
18
  "react-dom": "^19.2.4",
19
- "skybridge": "^2.0.0-beta.dba0bc8",
19
+ "skybridge": "^2.0.0",
20
20
  "vite": "^8.1.3",
21
21
  "zod": "^4.4.3"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@ladle/react": "^5.1.1",
25
- "@skybridge/devtools": "^2.0.0-beta.dba0bc8",
26
- "@skybridge/vite-plugin": "^2.0.0-beta.dba0bc8",
25
+ "@skybridge/devtools": "^2.0.0",
26
+ "@skybridge/vite-plugin": "^2.0.0",
27
27
  "@types/node": "^24.13.2",
28
28
  "@types/react": "^19.2.14",
29
29
  "@types/react-dom": "^19.2.3",
@@ -1,5 +1,5 @@
1
1
  import { existsSync } from "node:fs";
2
- import { Skybridge, type SkybridgeServer } from "skybridge/server";
2
+ import { Skybridge } from "skybridge/server";
3
3
  import { CAROUSEL_RANGE, MIN_SEARCH_ITERATIONS } from "./config.js";
4
4
  import {
5
5
  renderCarouselDefinition,
@@ -15,11 +15,6 @@ if (existsSync(".env")) {
15
15
  process.loadEnvFile();
16
16
  }
17
17
 
18
- export const handler = (server: SkybridgeServer) =>
19
- server
20
- .registerTool(searchProductsDefinition, searchProductsHandler)
21
- .registerTool(renderCarouselDefinition, renderCarouselHandler);
22
-
23
18
  export const app = new Skybridge({
24
19
  // @todo: name and version your app.
25
20
  name: "skybridge-ecom",
@@ -35,7 +30,10 @@ once the carousel renders.
35
30
 
36
31
  RENDER: After curating, call render-carousel with the chosen product IDs (aim for ${CAROUSEL_RANGE}). \
37
32
  Speak once it renders, then recommend products in carousel order.`,
38
- handler,
33
+ handler: (server) =>
34
+ server
35
+ .registerTool(searchProductsDefinition, searchProductsHandler)
36
+ .registerTool(renderCarouselDefinition, renderCarouselHandler),
39
37
  });
40
38
 
41
39
  export type AppType = typeof app;