create-skybridge 0.0.0-dev.fb825da → 0.0.0-dev.fb985cd

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 (160) hide show
  1. package/dist/index.js +444 -158
  2. package/package.json +9 -8
  3. package/templates/blank/.dockerignore +4 -0
  4. package/templates/blank/AGENTS.md +1 -0
  5. package/templates/blank/Dockerfile +53 -0
  6. package/templates/blank/README.md +93 -0
  7. package/templates/blank/_gitignore +7 -0
  8. package/templates/blank/alpic.json +3 -0
  9. package/templates/blank/node_modules/.bin/alpic +21 -0
  10. package/templates/blank/node_modules/.bin/sb +21 -0
  11. package/templates/blank/node_modules/.bin/skybridge +21 -0
  12. package/templates/blank/node_modules/.bin/tsc +21 -0
  13. package/templates/blank/node_modules/.bin/tsserver +21 -0
  14. package/templates/blank/node_modules/.bin/tsx +21 -0
  15. package/templates/blank/node_modules/.bin/vite +21 -0
  16. package/templates/blank/package.json +30 -0
  17. package/templates/blank/src/helpers.ts +4 -0
  18. package/templates/blank/src/index.ts +3 -0
  19. package/templates/blank/src/server.ts +12 -0
  20. package/templates/blank/tsconfig.json +5 -0
  21. package/templates/blank/vite.config.ts +12 -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 +97 -0
  26. package/templates/demo/_gitignore +7 -0
  27. package/templates/demo/alpic.json +3 -0
  28. package/templates/demo/evals/start.eval.ts +11 -0
  29. package/templates/demo/node_modules/.bin/alpic +21 -0
  30. package/templates/demo/node_modules/.bin/sb +21 -0
  31. package/templates/demo/node_modules/.bin/skybridge +21 -0
  32. package/templates/demo/node_modules/.bin/tsc +21 -0
  33. package/templates/demo/node_modules/.bin/tsserver +21 -0
  34. package/templates/demo/node_modules/.bin/tsx +21 -0
  35. package/templates/demo/node_modules/.bin/vite +21 -0
  36. package/templates/demo/node_modules/.bin/vitest +21 -0
  37. package/templates/demo/package.json +47 -0
  38. package/templates/demo/src/helpers.ts +4 -0
  39. package/templates/demo/src/index.css +59 -0
  40. package/templates/demo/src/index.ts +3 -0
  41. package/templates/demo/src/server.ts +92 -0
  42. package/templates/demo/src/views/components/doc-link.tsx +22 -0
  43. package/templates/demo/src/views/components/doc.tsx +21 -0
  44. package/templates/demo/src/views/components/nav.tsx +31 -0
  45. package/templates/demo/src/views/components/progress.tsx +35 -0
  46. package/templates/demo/src/views/components/steps/outro.tsx +68 -0
  47. package/templates/demo/src/views/components/steps/state.tsx +47 -0
  48. package/templates/demo/src/views/components/steps/tool-call.tsx +53 -0
  49. package/templates/demo/src/views/components/steps/tool-output.tsx +40 -0
  50. package/templates/demo/src/views/images/mascot/beret.png +0 -0
  51. package/templates/demo/src/views/images/mascot/chapka.png +0 -0
  52. package/templates/demo/src/views/images/mascot/cowboy-hat.png +0 -0
  53. package/templates/demo/src/views/images/mascot/fez.png +0 -0
  54. package/templates/demo/src/views/images/mascot/jester-hat.png +0 -0
  55. package/templates/demo/src/views/images/mascot/mitre.png +0 -0
  56. package/templates/demo/src/views/images/mascot/non-la.png +0 -0
  57. package/templates/demo/src/views/images/mascot/original.png +0 -0
  58. package/templates/demo/src/views/images/mascot/propeller-beanie.png +0 -0
  59. package/templates/demo/src/views/images/mascot/ski-mask.png +0 -0
  60. package/templates/demo/src/views/images/mascot/sombrero.png +0 -0
  61. package/templates/demo/src/views/images/mascot/top-hat.png +0 -0
  62. package/templates/demo/src/views/images/mascot/viking-helmet.png +0 -0
  63. package/templates/demo/src/views/onboarding.tsx +63 -0
  64. package/templates/demo/src/views/use-mascot.ts +60 -0
  65. package/templates/demo/tsconfig.evals.json +11 -0
  66. package/templates/demo/tsconfig.json +11 -0
  67. package/templates/demo/vite.config.ts +20 -0
  68. package/templates/ecom/.dockerignore +4 -0
  69. package/templates/ecom/.env.template +7 -0
  70. package/templates/ecom/.ladle/components.tsx +26 -0
  71. package/templates/ecom/.ladle/config.mjs +11 -0
  72. package/templates/ecom/.ladle/vite.config.ts +11 -0
  73. package/templates/ecom/AGENTS.md +2 -0
  74. package/templates/ecom/Dockerfile +53 -0
  75. package/templates/ecom/README.md +93 -0
  76. package/templates/ecom/_gitignore +9 -0
  77. package/templates/ecom/alpic.json +3 -0
  78. package/templates/ecom/node_modules/.bin/alpic +21 -0
  79. package/templates/ecom/node_modules/.bin/ladle +21 -0
  80. package/templates/ecom/node_modules/.bin/sb +21 -0
  81. package/templates/ecom/node_modules/.bin/skybridge +21 -0
  82. package/templates/ecom/node_modules/.bin/tsc +21 -0
  83. package/templates/ecom/node_modules/.bin/tsserver +21 -0
  84. package/templates/ecom/node_modules/.bin/tsx +21 -0
  85. package/templates/ecom/node_modules/.bin/vite +21 -0
  86. package/templates/ecom/package.json +42 -0
  87. package/templates/ecom/src/catalog/index.ts +19 -0
  88. package/templates/ecom/src/catalog/mock.ts +134 -0
  89. package/templates/ecom/src/catalog/shopify.ts +264 -0
  90. package/templates/ecom/src/components/chip.css.ts +63 -0
  91. package/templates/ecom/src/components/chip.stories.tsx +27 -0
  92. package/templates/ecom/src/components/chip.tsx +49 -0
  93. package/templates/ecom/src/components/empty-state.stories.tsx +3 -0
  94. package/templates/ecom/src/components/empty-state.tsx +12 -0
  95. package/templates/ecom/src/components/expandable-text.css.ts +49 -0
  96. package/templates/ecom/src/components/expandable-text.stories.tsx +20 -0
  97. package/templates/ecom/src/components/expandable-text.tsx +53 -0
  98. package/templates/ecom/src/components/image-gallery.css.ts +172 -0
  99. package/templates/ecom/src/components/image-gallery.stories.tsx +30 -0
  100. package/templates/ecom/src/components/image-gallery.tsx +163 -0
  101. package/templates/ecom/src/components/product-card.css.ts +159 -0
  102. package/templates/ecom/src/components/product-card.stories.tsx +58 -0
  103. package/templates/ecom/src/components/product-card.tsx +102 -0
  104. package/templates/ecom/src/components/product-carousel.css.ts +134 -0
  105. package/templates/ecom/src/components/product-carousel.stories.tsx +64 -0
  106. package/templates/ecom/src/components/product-carousel.tsx +202 -0
  107. package/templates/ecom/src/components/variant-picker.css.ts +27 -0
  108. package/templates/ecom/src/components/variant-picker.stories.tsx +67 -0
  109. package/templates/ecom/src/components/variant-picker.tsx +70 -0
  110. package/templates/ecom/src/components/view-frame.css.ts +22 -0
  111. package/templates/ecom/src/components/view-frame.tsx +27 -0
  112. package/templates/ecom/src/config.ts +12 -0
  113. package/templates/ecom/src/design/contract.css.ts +39 -0
  114. package/templates/ecom/src/design/fonts.css +15 -0
  115. package/templates/ecom/src/design/primitives.css.ts +101 -0
  116. package/templates/ecom/src/design/recipes/typography.css.ts +75 -0
  117. package/templates/ecom/src/design/sprinkles.css.ts +128 -0
  118. package/templates/ecom/src/design/themes/dark.css.ts +36 -0
  119. package/templates/ecom/src/design/themes/light.css.ts +36 -0
  120. package/templates/ecom/src/design/tokens.ts +8 -0
  121. package/templates/ecom/src/helpers.ts +4 -0
  122. package/templates/ecom/src/i18n.ts +35 -0
  123. package/templates/ecom/src/index.css +9 -0
  124. package/templates/ecom/src/index.ts +3 -0
  125. package/templates/ecom/src/lib/cx.ts +9 -0
  126. package/templates/ecom/src/lib/format.ts +9 -0
  127. package/templates/ecom/src/lib/variants.ts +150 -0
  128. package/templates/ecom/src/server.ts +39 -0
  129. package/templates/ecom/src/tools/render-carousel.ts +161 -0
  130. package/templates/ecom/src/tools/search-products.ts +196 -0
  131. package/templates/ecom/src/types.ts +87 -0
  132. package/templates/ecom/src/views/carousel/detail/detail.css.ts +115 -0
  133. package/templates/ecom/src/views/carousel/detail/detail.stories.tsx +133 -0
  134. package/templates/ecom/src/views/carousel/detail/index.tsx +254 -0
  135. package/templates/ecom/src/views/carousel/index.tsx +233 -0
  136. package/templates/ecom/tsconfig.json +11 -0
  137. package/templates/ecom/vite.config.ts +8 -0
  138. package/dist/index.test.d.ts +0 -1
  139. package/dist/index.test.js +0 -23
  140. package/template/README.md +0 -77
  141. package/template/_gitignore +0 -4
  142. package/template/alpic.json +0 -4
  143. package/template/node_modules/.bin/mcp-inspector +0 -21
  144. package/template/node_modules/.bin/nodemon +0 -21
  145. package/template/node_modules/.bin/shx +0 -21
  146. package/template/node_modules/.bin/tsc +0 -21
  147. package/template/node_modules/.bin/tsserver +0 -21
  148. package/template/node_modules/.bin/tsx +0 -21
  149. package/template/node_modules/.bin/vite +0 -21
  150. package/template/nodemon.json +0 -5
  151. package/template/package.json +0 -40
  152. package/template/server/src/index.ts +0 -39
  153. package/template/server/src/middleware.ts +0 -54
  154. package/template/server/src/server.ts +0 -61
  155. package/template/tsconfig.json +0 -23
  156. package/template/tsconfig.server.json +0 -11
  157. package/template/web/src/helpers.ts +0 -4
  158. package/template/web/src/index.css +0 -31
  159. package/template/web/src/widgets/magic-8-ball.tsx +0 -24
  160. package/template/web/vite.config.ts +0 -15
package/dist/index.js CHANGED
@@ -1,215 +1,501 @@
1
- import { spawnSync } from "node:child_process";
2
1
  import fs from "node:fs";
2
+ import os from "node:os";
3
3
  import path from "node:path";
4
4
  import { fileURLToPath } from "node:url";
5
5
  import * as prompts from "@clack/prompts";
6
+ import spawn from "cross-spawn";
6
7
  import mri from "mri";
7
- const defaultProjectName = "skybridge-project";
8
- // prettier-ignore
9
- const helpMessage = `\
10
- Usage: create-skybridge [OPTION]... [DIRECTORY]
8
+ const OUTPUT_TAIL_LINES = 10;
9
+ const DEFAULT_PROJECT_NAME = "skybridge-project";
10
+ const PACKAGE_MANAGERS = ["bun", "deno", "npm", "pnpm", "yarn"];
11
+ const TEMPLATES = ["demo", "blank", "ecom"];
12
+ const REPO = "alpic-ai/skybridge";
13
+ const pkg = JSON.parse(fs.readFileSync(fileURLToPath(new URL("../package.json", import.meta.url)), "utf-8"));
14
+ const version = pkg.version;
15
+ const HELP_MESSAGE = `Usage: skybridge create [path] [options]
11
16
 
12
- Create a new Skybridge project by copying the starter template.
17
+ Skybridge v${version} - the fullstack framework for building MCP Apps
18
+
19
+ Arguments:
20
+ path Where the project will be created. Prompted when omitted.
13
21
 
14
22
  Options:
15
- -h, --help show this help message
16
- --overwrite remove existing files in target directory
17
- --immediate install dependencies and start development server
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
18
32
 
19
- Examples:
20
- create-skybridge my-app
21
- create-skybridge . --overwrite --immediate
22
- `;
33
+ Non-interactive usage:
34
+ Mandatory: path argument and --yes option
35
+ Example: skybridge create my-app --yes`;
36
+ const isTTY = process.stdout.isTTY;
37
+ const _spinner = prompts.spinner();
38
+ const Spinner = {
39
+ start(msg) {
40
+ if (!isTTY) {
41
+ prompts.log.info(msg);
42
+ }
43
+ else {
44
+ _spinner.clear();
45
+ _spinner.start(msg);
46
+ }
47
+ },
48
+ stop(msg) {
49
+ if (!isTTY) {
50
+ prompts.log.success(msg);
51
+ }
52
+ else {
53
+ _spinner.stop(msg);
54
+ }
55
+ },
56
+ error(msg) {
57
+ if (!isTTY) {
58
+ prompts.log.error(msg);
59
+ }
60
+ else {
61
+ _spinner.error(msg);
62
+ }
63
+ },
64
+ };
23
65
  export async function init(args = process.argv.slice(2)) {
24
66
  const argv = mri(args, {
25
- boolean: ["help", "overwrite", "immediate"],
67
+ boolean: [
68
+ "help",
69
+ "blank",
70
+ "ecom",
71
+ "overwrite",
72
+ "skip-skills",
73
+ "start",
74
+ "yes",
75
+ ],
76
+ string: ["pm", "example"],
26
77
  alias: { h: "help" },
27
78
  });
28
- const argTargetDir = argv._[0]
29
- ? sanitizeTargetDir(String(argv._[0]))
30
- : undefined;
31
- const argOverwrite = argv.overwrite;
32
- const argImmediate = argv.immediate;
33
- const help = argv.help;
34
- if (help) {
35
- console.log(helpMessage);
79
+ if (argv.help) {
80
+ console.log(HELP_MESSAGE);
36
81
  return;
37
82
  }
38
- const interactive = process.stdin.isTTY;
39
- const cancel = () => prompts.cancel("Operation cancelled");
40
- // 1. Get project name and target dir
41
- let targetDir = argTargetDir;
83
+ const { yes } = argv;
84
+ let targetDir = argv._[0] ? sanitizeTargetDir(String(argv._[0])) : undefined;
85
+ if (yes && !targetDir) {
86
+ abort("The target directory is required in non-interactive mode.", "Example: skybridge create my-app --yes");
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;
95
+ let pm = parsePackageManager(argv.pm || "");
96
+ if (argv.pm && !pm) {
97
+ abort(`Invalid --pm value "${argv.pm}". Expected one of: ${PACKAGE_MANAGERS.join(", ")}.`);
98
+ }
99
+ console.log(); // cosmetic line break
100
+ prompts.intro(`\x1b[1;36m⛰ Welcome to Skybridge v${version} \x1b[22m- the fullstack framework for building MCP Apps\x1b[0m`);
101
+ // 1. Target directory
42
102
  if (!targetDir) {
43
- if (interactive) {
44
- const projectName = await prompts.text({
45
- message: "Project name:",
46
- defaultValue: defaultProjectName,
47
- placeholder: defaultProjectName,
48
- validate: (value) => {
49
- return value.length === 0 || sanitizeTargetDir(value).length > 0
50
- ? undefined
51
- : "Invalid project name";
52
- },
103
+ const choice = await prompts.text({
104
+ message: "Project directory:",
105
+ placeholder: DEFAULT_PROJECT_NAME,
106
+ defaultValue: DEFAULT_PROJECT_NAME,
107
+ validate: (value) => !value || sanitizeTargetDir(value).length > 0
108
+ ? undefined
109
+ : "Invalid project name",
110
+ });
111
+ if (prompts.isCancel(choice)) {
112
+ return cancel();
113
+ }
114
+ targetDir = sanitizeTargetDir(choice);
115
+ }
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
+ }
129
+ if (fs.existsSync(targetDir) && !isEmpty(targetDir)) {
130
+ if (argv.overwrite) {
131
+ emptyDir(targetDir);
132
+ }
133
+ else if (yes) {
134
+ prompts.log.error(`Target directory "${targetDir}" is not empty. Use --overwrite to remove existing files.`);
135
+ process.exit(1);
136
+ }
137
+ else {
138
+ const ok = await prompts.confirm({
139
+ message: `Target directory "${targetDir}" is not empty. Remove existing files?`,
140
+ initialValue: true,
53
141
  });
54
- if (prompts.isCancel(projectName)) {
142
+ if (prompts.isCancel(ok) || !ok) {
55
143
  return cancel();
56
144
  }
57
- targetDir = sanitizeTargetDir(projectName);
145
+ Spinner.start(`Cleaning up ${targetDir}`);
146
+ emptyDir(targetDir);
147
+ Spinner.stop(`Cleaned up ${targetDir}`);
58
148
  }
59
- else {
60
- targetDir = defaultProjectName;
149
+ }
150
+ // 3. Template
151
+ let template;
152
+ if (argv.blank) {
153
+ template = "blank";
154
+ }
155
+ if (argv.ecom) {
156
+ if (template) {
157
+ abort("Cannot specify both --blank and --ecom.");
61
158
  }
159
+ template = "ecom";
62
160
  }
63
- // 2. Handle directory if exist and not empty
64
- if (fs.existsSync(targetDir) && !isEmpty(targetDir)) {
65
- let overwrite = argOverwrite ? "yes" : undefined;
66
- if (!overwrite) {
67
- if (interactive) {
68
- const res = await prompts.select({
69
- message: (targetDir === "."
70
- ? "Current directory"
71
- : `Target directory "${targetDir}"`) +
72
- ` is not empty. Please choose how to proceed:`,
73
- options: [
74
- {
75
- label: "Cancel operation",
76
- value: "no",
77
- },
78
- {
79
- label: "Remove existing files and continue",
80
- value: "yes",
81
- },
82
- ],
83
- });
84
- if (prompts.isCancel(res)) {
85
- return cancel();
86
- }
87
- overwrite = res;
88
- }
89
- else {
90
- overwrite = "no";
91
- }
161
+ if (!template && !example) {
162
+ if (yes) {
163
+ template = "demo";
92
164
  }
93
- switch (overwrite) {
94
- case "yes":
95
- emptyDir(targetDir);
96
- break;
97
- case "no":
98
- cancel();
99
- return;
165
+ else {
166
+ const choice = await prompts.select({
167
+ message: "Choose a template:",
168
+ options: [
169
+ {
170
+ value: "demo",
171
+ label: "demo",
172
+ hint: "starter code with tools and UI",
173
+ },
174
+ {
175
+ value: "blank",
176
+ label: "blank",
177
+ hint: "minimal boilerplate without tools",
178
+ },
179
+ {
180
+ value: "ecom",
181
+ label: "ecom",
182
+ hint: "ecommerce template with product search tool and carousel view",
183
+ },
184
+ ],
185
+ initialValue: "demo",
186
+ });
187
+ if (prompts.isCancel(choice)) {
188
+ return cancel();
189
+ }
190
+ template = choice;
100
191
  }
101
192
  }
102
- const root = path.join(process.cwd(), targetDir);
103
- // 3. Copy the repository
104
- prompts.log.step(`Copying template...`);
193
+ // 4. Copy template
194
+ const root = path.resolve(targetDir);
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`);
105
198
  try {
106
- const templateDir = fileURLToPath(new URL("../template", import.meta.url));
107
- // Copy template to target directory
108
- fs.cpSync(templateDir, root, {
199
+ fs.cpSync(source, root, {
109
200
  recursive: true,
110
201
  filter: (src) => [".npmrc"].every((file) => !src.endsWith(file)),
111
202
  });
112
- // Rename _gitignore to .gitignore
113
- fs.renameSync(path.join(root, "_gitignore"), path.join(root, ".gitignore"));
114
- // Update project name in package.json
115
- const name = path.basename(root);
203
+ const gitignore = path.join(root, ".gitignore");
204
+ const gitignoreSource = path.join(root, "_gitignore");
205
+ if (fs.existsSync(gitignoreSource)) {
206
+ fs.renameSync(gitignoreSource, gitignore);
207
+ }
208
+ else if (!fs.existsSync(gitignore)) {
209
+ fs.copyFileSync(path.join(templatesDir, "demo", "_gitignore"), gitignore);
210
+ }
211
+ Spinner.stop(`Copied ${example ?? template} template`);
212
+ }
213
+ catch (error) {
214
+ Spinner.error("Failed to copy template");
215
+ abort(String(error));
216
+ }
217
+ finally {
218
+ downloaded?.cleanup();
219
+ }
220
+ // 5. Set package.json name to the project dir basename
221
+ try {
116
222
  const pkgPath = path.join(root, "package.json");
117
- const pkg = fs.readFileSync(pkgPath, "utf-8");
118
- const fixed = pkg.replace(/apps-sdk-template/g, name);
119
- fs.writeFileSync(pkgPath, fixed);
120
- prompts.log.success(`Project created in ${root}`);
223
+ const projectPkg = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
224
+ projectPkg.name = path.basename(root);
225
+ fs.writeFileSync(pkgPath, `${JSON.stringify(projectPkg, null, 2)}\n`);
121
226
  }
122
227
  catch (error) {
123
- prompts.log.error("Failed to copy repository");
124
- console.error(error);
125
- process.exit(1);
228
+ abort("Failed to update project name in package.json.", String(error));
126
229
  }
127
- const userAgent = process.env.npm_config_user_agent;
128
- const pkgManager = userAgent?.split(" ")[0]?.split("/")[0] || "npm";
129
- // 4. Ask about immediate installation
130
- let immediate = argImmediate;
131
- if (immediate === undefined) {
132
- if (interactive) {
133
- const immediateResult = await prompts.confirm({
134
- message: `Install with ${pkgManager} and start now?`,
230
+ // Async spawn wrapper so a spinner can keep animating during the subprocess
231
+ // (cross-spawn.sync would block the event loop). Captures stdout/stderr to
232
+ // `output` when stdio is "pipe", trimmed to the last OUTPUT_TAIL_LINES lines
233
+ // install errors land at the tail, so we keep that and prefix with an
234
+ // ellipsis when content gets dropped.
235
+ function spawnAsync(command, args) {
236
+ return new Promise((resolve) => {
237
+ let raw = "";
238
+ const child = spawn(command, args, {
239
+ stdio: ["ignore", "pipe", "pipe"],
240
+ cwd: root,
135
241
  });
136
- if (prompts.isCancel(immediateResult)) {
137
- return cancel();
138
- }
139
- immediate = immediateResult;
242
+ child.stdout?.on("data", (chunk) => {
243
+ raw += chunk.toString();
244
+ });
245
+ child.stderr?.on("data", (chunk) => {
246
+ raw += chunk.toString();
247
+ });
248
+ const done = (status) => {
249
+ const tail = [];
250
+ for (const part of raw.split("\n").reverse()) {
251
+ const line = part.trim();
252
+ if (!line) {
253
+ continue;
254
+ }
255
+ if (tail.length >= OUTPUT_TAIL_LINES) {
256
+ tail.push(`… (truncated, showing last ${OUTPUT_TAIL_LINES} lines)`);
257
+ break;
258
+ }
259
+ tail.push(line);
260
+ }
261
+ resolve({ status, output: tail.reverse().join("\n") });
262
+ };
263
+ child.on("close", done);
264
+ child.on("error", () => done(1));
265
+ });
266
+ }
267
+ // 6. Skills install (single Y/n prompt)
268
+ let installSkills;
269
+ if (argv["skip-skills"]) {
270
+ installSkills = false;
271
+ }
272
+ else if (yes) {
273
+ installSkills = true;
274
+ }
275
+ else {
276
+ const choice = await prompts.confirm({
277
+ message: "Install coding agent skills? (recommended)",
278
+ initialValue: true,
279
+ });
280
+ if (prompts.isCancel(choice)) {
281
+ return cancel();
282
+ }
283
+ installSkills = choice;
284
+ }
285
+ if (installSkills) {
286
+ Spinner.start("Installing coding agent skills");
287
+ const { status, output } = await spawnAsync("npx", [
288
+ "--yes",
289
+ "skills",
290
+ "add",
291
+ "alpic-ai/skybridge",
292
+ "--skill",
293
+ "chatgpt-plugin-builder",
294
+ "--agent",
295
+ "universal",
296
+ "claude-code",
297
+ "--copy", // something the symlink fails for some reason
298
+ "--yes",
299
+ ]);
300
+ // skills cli always returns 0 so we look for the success message
301
+ if (status === 0 && output.includes("Done!")) {
302
+ Spinner.stop(`Installed coding agent skills`);
140
303
  }
141
304
  else {
142
- immediate = false;
305
+ Spinner.error(`Failed to install coding agent skills:
306
+ \x1b[2m${output}\x1b[0m`);
307
+ prompts.log.error("Try manually: `npx skills add alpic-ai/skybridge`.");
143
308
  }
144
309
  }
145
- const installCmd = [pkgManager, "install"];
146
- const runCmd = [pkgManager];
147
- switch (pkgManager) {
148
- case "yarn":
149
- case "pnpm":
310
+ // 7. Package manager — autodetect, prompt only if detection fails (interactive)
311
+ if (!pm) {
312
+ pm = detectPackageManager() || "npm";
313
+ }
314
+ if (!yes) {
315
+ const choice = await prompts.select({
316
+ message: "Choose a package manager:",
317
+ options: PACKAGE_MANAGERS.map((value) => ({ value })),
318
+ initialValue: pm,
319
+ });
320
+ if (prompts.isCancel(choice)) {
321
+ return cancel();
322
+ }
323
+ pm = choice;
324
+ }
325
+ // 8. pnpm ≥10 fails installs unless esbuild's build script is allow-listed
326
+ if (pm === "pnpm") {
327
+ fs.writeFileSync(path.join(root, "pnpm-workspace.yaml"), 'packages:\n - "."\nonlyBuiltDependencies:\n - esbuild\nallowBuilds:\n esbuild: true\n');
328
+ }
329
+ // 9. Always install dependencies
330
+ Spinner.start(`Installing dependencies with ${pm}`);
331
+ const { status, output } = await spawnAsync(pm, ["install"]);
332
+ if (status === 0) {
333
+ Spinner.stop(`Installed dependencies with ${pm}`);
334
+ }
335
+ else {
336
+ Spinner.error(`Dependency installation failed:
337
+ \x1b[2m${output}\x1b[0m`);
338
+ abort(`Try manually: cd ${targetDir} && ${pm} install`);
339
+ }
340
+ // 10. Start dev server?
341
+ let start = false;
342
+ if (argv.start) {
343
+ start = true;
344
+ }
345
+ else if (!yes) {
346
+ const choice = await prompts.confirm({
347
+ message: "Start dev server now?",
348
+ initialValue: true,
349
+ });
350
+ if (prompts.isCancel(choice)) {
351
+ return cancel();
352
+ }
353
+ start = choice;
354
+ }
355
+ if (start) {
356
+ prompts.outro(`Starting dev server in ${targetDir}…`);
357
+ const devResult = spawn.sync(pm, scriptArgs(pm, "dev"), {
358
+ stdio: "inherit",
359
+ cwd: root,
360
+ });
361
+ process.exit(devResult.status ?? 0);
362
+ }
363
+ prompts.log.success("All set! Next steps:");
364
+ prompts.log.info(`Start:
365
+ cd ${targetDir}
366
+ ${scriptCommand(pm, "dev")}`);
367
+ prompts.log.info(`Deploy:
368
+ ${scriptCommand(pm, "deploy")}`);
369
+ prompts.outro(`🛟 Need help?
370
+ Chat: https://discord.alpic.ai
371
+ Docs: https://docs.skybridge.tech`);
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
+ }
429
+ function cancel() {
430
+ prompts.cancel("Operation cancelled");
431
+ process.exit(0);
432
+ }
433
+ function abort(...lines) {
434
+ for (const line of lines) {
435
+ prompts.log.error(line);
436
+ }
437
+ prompts.outro("Aborted");
438
+ process.exit(1);
439
+ }
440
+ function parsePackageManager(value) {
441
+ switch (value) {
150
442
  case "bun":
151
- break;
443
+ return "bun";
152
444
  case "deno":
153
- runCmd.push("task");
154
- break;
445
+ return "deno";
446
+ case "npm":
447
+ return "npm";
448
+ case "pnpm":
449
+ return "pnpm";
450
+ case "yarn":
451
+ return "yarn";
155
452
  default:
156
- runCmd.push("run");
157
- }
158
- runCmd.push("dev");
159
- if (!immediate) {
160
- prompts.outro(`Done! Next steps:
161
- cd ${targetDir}
162
- ${installCmd.join(" ")}
163
- ${runCmd.join(" ")}
164
- `);
165
- return;
453
+ return undefined;
166
454
  }
167
- prompts.log.step(`Installing dependencies with ${pkgManager}...`);
168
- run(installCmd, {
169
- stdio: "inherit",
170
- cwd: root,
171
- });
172
- prompts.log.step("Starting dev server...");
173
- run(runCmd, {
174
- stdio: "inherit",
175
- cwd: root,
176
- });
177
455
  }
178
- function run([command, ...args], options) {
179
- const { status, error } = spawnSync(command, args, options);
180
- if (status != null && status > 0) {
181
- process.exit(status);
456
+ function detectPackageManager() {
457
+ const userAgent = process.env.npm_config_user_agent;
458
+ if (!userAgent) {
459
+ return undefined;
182
460
  }
183
- if (error) {
184
- console.error(`\n${command} ${args.join(" ")} error!`);
185
- console.error(error);
186
- process.exit(1);
461
+ const name = userAgent.split(" ")[0]?.split("/")[0];
462
+ return parsePackageManager(name);
463
+ }
464
+ function scriptArgs(pm, script) {
465
+ switch (pm) {
466
+ case "yarn":
467
+ case "pnpm":
468
+ case "bun":
469
+ return [script];
470
+ case "deno":
471
+ return ["task", script];
472
+ case "npm":
473
+ return ["run", script];
187
474
  }
188
475
  }
476
+ function scriptCommand(pm, script) {
477
+ return [pm, ...scriptArgs(pm, script)].join(" ");
478
+ }
189
479
  function sanitizeTargetDir(targetDir) {
190
- return (targetDir
191
- .trim()
192
- // Only keep alphanumeric, dash, underscore, dot, @, /
193
- .replace(/[^a-zA-Z0-9\-_.@/]/g, "")
194
- // Prevent path traversal
195
- .replace(/\.\./g, "")
196
- // Collapse multiple slashes
197
- .replace(/\/+/g, "/")
198
- // Remove leading/trailing slashes
199
- .replace(/^\/+|\/+$/g, ""));
480
+ return targetDir.trim().replace(/\/+$/g, "");
481
+ }
482
+ // Skip user's SPEC.md and IDE/agent preferences (.idea, .claude, etc.)
483
+ function isSkippedEntry(entry) {
484
+ return ((entry.name.startsWith(".") && entry.isDirectory()) ||
485
+ entry.name === "SPEC.md");
200
486
  }
201
- function isEmpty(path) {
202
- const files = fs.readdirSync(path);
203
- return files.length === 0 || (files.length === 1 && files[0] === ".git");
487
+ function isEmpty(dirPath) {
488
+ const entries = fs.readdirSync(dirPath, { withFileTypes: true });
489
+ return entries.every(isSkippedEntry);
204
490
  }
205
491
  function emptyDir(dir) {
206
492
  if (!fs.existsSync(dir)) {
207
493
  return;
208
494
  }
209
- for (const file of fs.readdirSync(dir)) {
210
- if (file === ".git") {
495
+ for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
496
+ if (isSkippedEntry(entry)) {
211
497
  continue;
212
498
  }
213
- fs.rmSync(path.resolve(dir, file), { recursive: true, force: true });
499
+ fs.rmSync(path.join(dir, entry.name), { recursive: true, force: true });
214
500
  }
215
501
  }