create-skybridge 0.0.0-dev.ecf87cf → 0.0.0-dev.ed005a8

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 (140) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.d.ts +1 -1
  3. package/dist/index.js +462 -117
  4. package/index.js +6 -1
  5. package/package.json +16 -12
  6. package/templates/blank/.dockerignore +4 -0
  7. package/templates/blank/AGENTS.md +1 -0
  8. package/templates/blank/Dockerfile +53 -0
  9. package/templates/blank/README.md +93 -0
  10. package/templates/blank/_gitignore +7 -0
  11. package/templates/blank/alpic.json +3 -0
  12. package/templates/blank/node_modules/.bin/alpic +21 -0
  13. package/templates/blank/node_modules/.bin/sb +21 -0
  14. package/templates/blank/node_modules/.bin/skybridge +21 -0
  15. package/templates/blank/node_modules/.bin/tsc +21 -0
  16. package/templates/blank/node_modules/.bin/tsserver +21 -0
  17. package/templates/blank/node_modules/.bin/tsx +21 -0
  18. package/templates/blank/node_modules/.bin/vite +21 -0
  19. package/templates/blank/package.json +30 -0
  20. package/templates/blank/src/helpers.ts +4 -0
  21. package/templates/blank/src/index.ts +3 -0
  22. package/templates/blank/src/server.ts +12 -0
  23. package/templates/blank/tsconfig.json +5 -0
  24. package/templates/blank/vite.config.ts +12 -0
  25. package/templates/demo/.dockerignore +4 -0
  26. package/templates/demo/AGENTS.md +1 -0
  27. package/templates/demo/Dockerfile +53 -0
  28. package/templates/demo/README.md +97 -0
  29. package/templates/demo/_gitignore +7 -0
  30. package/templates/demo/alpic.json +3 -0
  31. package/templates/demo/evals/start.eval.ts +11 -0
  32. package/templates/demo/node_modules/.bin/alpic +21 -0
  33. package/templates/demo/node_modules/.bin/sb +21 -0
  34. package/templates/demo/node_modules/.bin/skybridge +21 -0
  35. package/templates/demo/node_modules/.bin/tsc +21 -0
  36. package/templates/demo/node_modules/.bin/tsserver +21 -0
  37. package/templates/demo/node_modules/.bin/tsx +21 -0
  38. package/templates/demo/node_modules/.bin/vite +21 -0
  39. package/templates/demo/node_modules/.bin/vitest +21 -0
  40. package/templates/demo/package.json +47 -0
  41. package/templates/demo/src/helpers.ts +4 -0
  42. package/templates/demo/src/index.css +59 -0
  43. package/templates/demo/src/index.ts +3 -0
  44. package/templates/demo/src/server.ts +92 -0
  45. package/templates/demo/src/views/components/doc-link.tsx +22 -0
  46. package/templates/demo/src/views/components/doc.tsx +21 -0
  47. package/templates/demo/src/views/components/nav.tsx +31 -0
  48. package/templates/demo/src/views/components/progress.tsx +35 -0
  49. package/templates/demo/src/views/components/steps/outro.tsx +68 -0
  50. package/templates/demo/src/views/components/steps/state.tsx +47 -0
  51. package/templates/demo/src/views/components/steps/tool-call.tsx +53 -0
  52. package/templates/demo/src/views/components/steps/tool-output.tsx +40 -0
  53. package/templates/demo/src/views/images/mascot/beret.png +0 -0
  54. package/templates/demo/src/views/images/mascot/chapka.png +0 -0
  55. package/templates/demo/src/views/images/mascot/cowboy-hat.png +0 -0
  56. package/templates/demo/src/views/images/mascot/fez.png +0 -0
  57. package/templates/demo/src/views/images/mascot/jester-hat.png +0 -0
  58. package/templates/demo/src/views/images/mascot/mitre.png +0 -0
  59. package/templates/demo/src/views/images/mascot/non-la.png +0 -0
  60. package/templates/demo/src/views/images/mascot/original.png +0 -0
  61. package/templates/demo/src/views/images/mascot/propeller-beanie.png +0 -0
  62. package/templates/demo/src/views/images/mascot/ski-mask.png +0 -0
  63. package/templates/demo/src/views/images/mascot/sombrero.png +0 -0
  64. package/templates/demo/src/views/images/mascot/top-hat.png +0 -0
  65. package/templates/demo/src/views/images/mascot/viking-helmet.png +0 -0
  66. package/templates/demo/src/views/onboarding.tsx +63 -0
  67. package/templates/demo/src/views/use-mascot.ts +60 -0
  68. package/templates/demo/tsconfig.evals.json +11 -0
  69. package/templates/demo/tsconfig.json +11 -0
  70. package/templates/demo/vite.config.ts +20 -0
  71. package/templates/ecom/.dockerignore +4 -0
  72. package/templates/ecom/.env.template +7 -0
  73. package/templates/ecom/.ladle/components.tsx +26 -0
  74. package/templates/ecom/.ladle/config.mjs +11 -0
  75. package/templates/ecom/.ladle/vite.config.ts +11 -0
  76. package/templates/ecom/AGENTS.md +2 -0
  77. package/templates/ecom/Dockerfile +53 -0
  78. package/templates/ecom/README.md +93 -0
  79. package/templates/ecom/_gitignore +9 -0
  80. package/templates/ecom/alpic.json +3 -0
  81. package/templates/ecom/node_modules/.bin/alpic +21 -0
  82. package/templates/ecom/node_modules/.bin/ladle +21 -0
  83. package/templates/ecom/node_modules/.bin/sb +21 -0
  84. package/templates/ecom/node_modules/.bin/skybridge +21 -0
  85. package/templates/ecom/node_modules/.bin/tsc +21 -0
  86. package/templates/ecom/node_modules/.bin/tsserver +21 -0
  87. package/templates/ecom/node_modules/.bin/tsx +21 -0
  88. package/templates/ecom/node_modules/.bin/vite +21 -0
  89. package/templates/ecom/package.json +42 -0
  90. package/templates/ecom/src/catalog/index.ts +19 -0
  91. package/templates/ecom/src/catalog/mock.ts +134 -0
  92. package/templates/ecom/src/catalog/shopify.ts +264 -0
  93. package/templates/ecom/src/components/chip.css.ts +63 -0
  94. package/templates/ecom/src/components/chip.stories.tsx +27 -0
  95. package/templates/ecom/src/components/chip.tsx +49 -0
  96. package/templates/ecom/src/components/empty-state.stories.tsx +3 -0
  97. package/templates/ecom/src/components/empty-state.tsx +12 -0
  98. package/templates/ecom/src/components/expandable-text.css.ts +49 -0
  99. package/templates/ecom/src/components/expandable-text.stories.tsx +20 -0
  100. package/templates/ecom/src/components/expandable-text.tsx +53 -0
  101. package/templates/ecom/src/components/image-gallery.css.ts +172 -0
  102. package/templates/ecom/src/components/image-gallery.stories.tsx +30 -0
  103. package/templates/ecom/src/components/image-gallery.tsx +163 -0
  104. package/templates/ecom/src/components/product-card.css.ts +159 -0
  105. package/templates/ecom/src/components/product-card.stories.tsx +58 -0
  106. package/templates/ecom/src/components/product-card.tsx +102 -0
  107. package/templates/ecom/src/components/product-carousel.css.ts +134 -0
  108. package/templates/ecom/src/components/product-carousel.stories.tsx +64 -0
  109. package/templates/ecom/src/components/product-carousel.tsx +202 -0
  110. package/templates/ecom/src/components/variant-picker.css.ts +27 -0
  111. package/templates/ecom/src/components/variant-picker.stories.tsx +67 -0
  112. package/templates/ecom/src/components/variant-picker.tsx +70 -0
  113. package/templates/ecom/src/components/view-frame.css.ts +22 -0
  114. package/templates/ecom/src/components/view-frame.tsx +27 -0
  115. package/templates/ecom/src/config.ts +12 -0
  116. package/templates/ecom/src/design/contract.css.ts +39 -0
  117. package/templates/ecom/src/design/fonts.css +15 -0
  118. package/templates/ecom/src/design/primitives.css.ts +101 -0
  119. package/templates/ecom/src/design/recipes/typography.css.ts +75 -0
  120. package/templates/ecom/src/design/sprinkles.css.ts +128 -0
  121. package/templates/ecom/src/design/themes/dark.css.ts +36 -0
  122. package/templates/ecom/src/design/themes/light.css.ts +36 -0
  123. package/templates/ecom/src/design/tokens.ts +8 -0
  124. package/templates/ecom/src/helpers.ts +4 -0
  125. package/templates/ecom/src/i18n.ts +35 -0
  126. package/templates/ecom/src/index.css +9 -0
  127. package/templates/ecom/src/index.ts +3 -0
  128. package/templates/ecom/src/lib/cx.ts +9 -0
  129. package/templates/ecom/src/lib/format.ts +9 -0
  130. package/templates/ecom/src/lib/variants.ts +150 -0
  131. package/templates/ecom/src/server.ts +39 -0
  132. package/templates/ecom/src/tools/render-carousel.ts +161 -0
  133. package/templates/ecom/src/tools/search-products.ts +196 -0
  134. package/templates/ecom/src/types.ts +87 -0
  135. package/templates/ecom/src/views/carousel/detail/detail.css.ts +115 -0
  136. package/templates/ecom/src/views/carousel/detail/detail.stories.tsx +133 -0
  137. package/templates/ecom/src/views/carousel/detail/index.tsx +254 -0
  138. package/templates/ecom/src/views/carousel/index.tsx +233 -0
  139. package/templates/ecom/tsconfig.json +11 -0
  140. package/templates/ecom/vite.config.ts +8 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Alpic
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export {};
1
+ export declare function init(args?: string[]): Promise<void>;
package/dist/index.js CHANGED
@@ -1,156 +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
+ import { fileURLToPath } from "node:url";
4
5
  import * as prompts from "@clack/prompts";
6
+ import spawn from "cross-spawn";
5
7
  import mri from "mri";
6
- const argv = mri(process.argv.slice(2), {
7
- boolean: ["help", "overwrite"],
8
- alias: { h: "help" },
9
- });
10
- const cwd = process.cwd();
11
- const TEMPLATE_REPO = "https://github.com/alpic-ai/apps-sdk-template";
12
- const defaultProjectName = "skybridge-project";
13
- // prettier-ignore
14
- const helpMessage = `\
15
- 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]
16
16
 
17
- Create a new Skybridge project by cloning 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.
18
21
 
19
22
  Options:
20
- -h, --help show this help message
21
- --overwrite remove existing files in target directory
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
22
32
 
23
- Examples:
24
- create-skybridge my-app
25
- create-skybridge . --overwrite
26
- `;
27
- function run([command, ...args], options) {
28
- if (!command) {
29
- throw new Error("Command is required");
30
- }
31
- const { status, error } = spawnSync(command, args, options);
32
- if (status != null && status > 0) {
33
- process.exit(status);
34
- }
35
- if (error) {
36
- console.error(`\n${command} ${args.join(" ")} error!`);
37
- console.error(error);
38
- process.exit(1);
39
- }
40
- }
41
- async function init() {
42
- const argTargetDir = argv._[0]
43
- ? formatTargetDir(String(argv._[0]))
44
- : undefined;
45
- const argOverwrite = argv.overwrite;
46
- const help = argv.help;
47
- if (help) {
48
- console.log(helpMessage);
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
+ };
65
+ export async function init(args = process.argv.slice(2)) {
66
+ const argv = mri(args, {
67
+ boolean: [
68
+ "help",
69
+ "blank",
70
+ "ecom",
71
+ "overwrite",
72
+ "skip-skills",
73
+ "start",
74
+ "yes",
75
+ ],
76
+ string: ["pm", "example"],
77
+ alias: { h: "help" },
78
+ });
79
+ if (argv.help) {
80
+ console.log(HELP_MESSAGE);
49
81
  return;
50
82
  }
51
- const interactive = process.stdin.isTTY;
52
- const cancel = () => prompts.cancel("Operation cancelled");
53
- // 1. Get project name and target dir
54
- 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
55
102
  if (!targetDir) {
56
- if (interactive) {
57
- const projectName = await prompts.text({
58
- message: "Project name:",
59
- defaultValue: defaultProjectName,
60
- placeholder: defaultProjectName,
61
- validate: (value) => {
62
- return value.length === 0 || formatTargetDir(value).length > 0
63
- ? undefined
64
- : "Invalid project name";
65
- },
66
- });
67
- if (prompts.isCancel(projectName))
68
- return cancel();
69
- targetDir = formatTargetDir(projectName);
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();
70
113
  }
71
- else {
72
- targetDir = defaultProjectName;
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));
73
127
  }
74
128
  }
75
- // 2. Handle directory if exist and not empty
76
129
  if (fs.existsSync(targetDir) && !isEmpty(targetDir)) {
77
- let overwrite = argOverwrite ? "yes" : undefined;
78
- if (!overwrite) {
79
- if (interactive) {
80
- const res = await prompts.select({
81
- message: (targetDir === "."
82
- ? "Current directory"
83
- : `Target directory "${targetDir}"`) +
84
- ` is not empty. Please choose how to proceed:`,
85
- options: [
86
- {
87
- label: "Cancel operation",
88
- value: "no",
89
- },
90
- {
91
- label: "Remove existing files and continue",
92
- value: "yes",
93
- },
94
- ],
95
- });
96
- if (prompts.isCancel(res))
97
- return cancel();
98
- overwrite = res;
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,
141
+ });
142
+ if (prompts.isCancel(ok) || !ok) {
143
+ return cancel();
99
144
  }
100
- else {
101
- overwrite = "no";
145
+ Spinner.start(`Cleaning up ${targetDir}`);
146
+ emptyDir(targetDir);
147
+ Spinner.stop(`Cleaned up ${targetDir}`);
148
+ }
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.");
158
+ }
159
+ template = "ecom";
160
+ }
161
+ if (!template && !example) {
162
+ if (yes) {
163
+ template = "demo";
164
+ }
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();
102
189
  }
190
+ template = choice;
103
191
  }
104
- switch (overwrite) {
105
- case "yes":
106
- emptyDir(targetDir);
107
- break;
108
- case "no":
109
- cancel();
110
- return;
192
+ }
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`);
198
+ try {
199
+ fs.cpSync(source, root, {
200
+ recursive: true,
201
+ filter: (src) => [".npmrc"].every((file) => !src.endsWith(file)),
202
+ });
203
+ const gitignore = path.join(root, ".gitignore");
204
+ const gitignoreSource = path.join(root, "_gitignore");
205
+ if (fs.existsSync(gitignoreSource)) {
206
+ fs.renameSync(gitignoreSource, gitignore);
111
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));
112
216
  }
113
- const root = path.join(cwd, targetDir);
114
- // 3. Clone the repository
115
- prompts.log.step(`Cloning template from ${TEMPLATE_REPO}...`);
217
+ finally {
218
+ downloaded?.cleanup();
219
+ }
220
+ // 5. Set package.json name to the project dir basename
116
221
  try {
117
- // Clone directly to target directory
118
- run(["git", "clone", "--depth", "1", TEMPLATE_REPO, root], {
222
+ const pkgPath = path.join(root, "package.json");
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`);
226
+ }
227
+ catch (error) {
228
+ abort("Failed to update project name in package.json.", String(error));
229
+ }
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,
241
+ });
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-app-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`);
303
+ }
304
+ else {
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`.");
308
+ }
309
+ }
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"), {
119
358
  stdio: "inherit",
359
+ cwd: root,
120
360
  });
121
- // Remove .git directory to start fresh
122
- const gitDir = path.join(root, ".git");
123
- if (fs.existsSync(gitDir)) {
124
- fs.rmSync(gitDir, { recursive: true, force: true });
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.");
125
421
  }
126
- prompts.log.success(`Project created in ${root}`);
127
- prompts.outro(`Done! Next steps:\n\n cd ${targetDir}\n pnpm install\n pnpm dev`);
422
+ return { source: path.join(tmp, extracted, "examples", name), cleanup };
128
423
  }
129
424
  catch (error) {
130
- prompts.log.error("Failed to clone repository");
131
- console.error(error);
132
- process.exit(1);
425
+ cleanup();
426
+ throw error;
133
427
  }
134
428
  }
135
- function formatTargetDir(targetDir) {
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) {
442
+ case "bun":
443
+ return "bun";
444
+ case "deno":
445
+ return "deno";
446
+ case "npm":
447
+ return "npm";
448
+ case "pnpm":
449
+ return "pnpm";
450
+ case "yarn":
451
+ return "yarn";
452
+ default:
453
+ return undefined;
454
+ }
455
+ }
456
+ function detectPackageManager() {
457
+ const userAgent = process.env.npm_config_user_agent;
458
+ if (!userAgent) {
459
+ return undefined;
460
+ }
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];
474
+ }
475
+ }
476
+ function scriptCommand(pm, script) {
477
+ return [pm, ...scriptArgs(pm, script)].join(" ");
478
+ }
479
+ function sanitizeTargetDir(targetDir) {
136
480
  return targetDir.trim().replace(/\/+$/g, "");
137
481
  }
138
- function isEmpty(path) {
139
- const files = fs.readdirSync(path);
140
- return files.length === 0 || (files.length === 1 && files[0] === ".git");
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");
486
+ }
487
+ function isEmpty(dirPath) {
488
+ const entries = fs.readdirSync(dirPath, { withFileTypes: true });
489
+ return entries.every(isSkippedEntry);
141
490
  }
142
491
  function emptyDir(dir) {
143
492
  if (!fs.existsSync(dir)) {
144
493
  return;
145
494
  }
146
- for (const file of fs.readdirSync(dir)) {
147
- if (file === ".git") {
495
+ for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
496
+ if (isSkippedEntry(entry)) {
148
497
  continue;
149
498
  }
150
- fs.rmSync(path.resolve(dir, file), { recursive: true, force: true });
499
+ fs.rmSync(path.join(dir, entry.name), { recursive: true, force: true });
151
500
  }
152
501
  }
153
- init().catch((e) => {
154
- console.error(e);
155
- process.exit(1);
156
- });
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
+ });