vercel-vm-factory 0.15.8 → 0.16.8
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/README.md +3 -3
- package/config.mjs +21 -0
- package/deploy-vm.mjs +68 -38
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Run without flags for prompts:
|
|
|
29
29
|
npx vercel-vm-factory create
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
The prompt walks through VM image, project, shell, optional preinstalled tools, and authentication. For list prompts, enter either names or numbers; tool choices can be comma-separated, for example `1,3` or `nodejs,claude-code`.
|
|
32
|
+
The prompt walks through VM image, Vercel team, project, shell, optional preinstalled tools, and authentication. Teams are loaded from `vercel teams list --format json`; choose `Default` to use the current Vercel CLI scope. For list prompts, enter either names or numbers; tool choices can be comma-separated, for example `1,3` or `nodejs,claude-code`.
|
|
33
33
|
|
|
34
34
|
Check local setup:
|
|
35
35
|
|
|
@@ -47,7 +47,7 @@ Common flags:
|
|
|
47
47
|
- `--shell /bin/bash|/bin/zsh|/bin/sh`
|
|
48
48
|
- `--tools nodejs,codex,claude-code`
|
|
49
49
|
- `--project NAME`
|
|
50
|
-
- `--scope TEAM_SLUG`
|
|
50
|
+
- `--scope TEAM_SLUG` to skip team selection
|
|
51
51
|
- `--auth-mode basic|github|both|none`
|
|
52
52
|
- `--dry-run`
|
|
53
53
|
|
|
@@ -57,7 +57,7 @@ The generated project contains only `Dockerfile.vercel`.
|
|
|
57
57
|
|
|
58
58
|
CLI mapping:
|
|
59
59
|
|
|
60
|
-
- Vercel Team ->
|
|
60
|
+
- Vercel Team -> loaded from `vercel teams list --format json`; `--scope TEAM_SLUG` skips the selector
|
|
61
61
|
- Project Name -> `--project x-shell`
|
|
62
62
|
- Application Preset -> patched through Vercel API as `framework=container`
|
|
63
63
|
- Root Directory -> generated project directory
|
package/config.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export const defaultWsShellImage = "ghcr.io/v1xingyue/ws-shell:v1.8.alpine";
|
|
2
|
+
|
|
3
|
+
export const vmImages = {
|
|
4
|
+
alpine: "alpine:3.23",
|
|
5
|
+
ubuntu: "ubuntu:24.04",
|
|
6
|
+
debian: "debian:13-slim",
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const shells = ["/bin/bash", "/bin/zsh", "/bin/sh"];
|
|
10
|
+
|
|
11
|
+
export const toolChoices = {
|
|
12
|
+
nodejs: "Node.js + npm",
|
|
13
|
+
codex: "OpenAI Codex CLI",
|
|
14
|
+
"claude-code": "Claude Code",
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export const codeDefaults = {
|
|
18
|
+
"vm-image": "alpine",
|
|
19
|
+
from: defaultWsShellImage,
|
|
20
|
+
shell: "/bin/sh",
|
|
21
|
+
};
|
package/deploy-vm.mjs
CHANGED
|
@@ -6,32 +6,21 @@ import { homedir } from "node:os";
|
|
|
6
6
|
import path from "node:path";
|
|
7
7
|
import { fileURLToPath } from "node:url";
|
|
8
8
|
import * as p from "@clack/prompts";
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
};
|
|
17
|
-
const shells = ["/bin/bash", "/bin/zsh", "/bin/sh"];
|
|
18
|
-
const toolChoices = {
|
|
19
|
-
nodejs: "Node.js + npm",
|
|
20
|
-
codex: "OpenAI Codex CLI",
|
|
21
|
-
"claude-code": "Claude Code",
|
|
22
|
-
};
|
|
9
|
+
import {
|
|
10
|
+
codeDefaults,
|
|
11
|
+
defaultWsShellImage,
|
|
12
|
+
shells,
|
|
13
|
+
toolChoices,
|
|
14
|
+
vmImages,
|
|
15
|
+
} from "./config.mjs";
|
|
23
16
|
|
|
24
17
|
const { command, args } = parseCommand(process.argv.slice(2));
|
|
25
|
-
const
|
|
18
|
+
const scriptFile = fileURLToPath(import.meta.url);
|
|
19
|
+
const scriptRoot = path.dirname(scriptFile);
|
|
26
20
|
const workspaceRoot = process.cwd();
|
|
27
21
|
const stateRoot = path.join(homedir(), ".vercel-vm-factory");
|
|
28
22
|
const defaultsPath = path.join(stateRoot, "defaults.json");
|
|
29
23
|
const legacyDefaultsPath = path.join(scriptRoot, ".defaults.json");
|
|
30
|
-
const codeDefaults = {
|
|
31
|
-
"vm-image": "alpine",
|
|
32
|
-
from: defaultWsShellImage,
|
|
33
|
-
shell: "/bin/sh",
|
|
34
|
-
};
|
|
35
24
|
const packagedDefaults = {
|
|
36
25
|
...(await readDefaults(legacyDefaultsPath)),
|
|
37
26
|
...codeDefaults,
|
|
@@ -86,11 +75,7 @@ async function main() {
|
|
|
86
75
|
args["vm-image"] ?? args.base ?? defaults["vm-image"] ?? "alpine",
|
|
87
76
|
);
|
|
88
77
|
const vmImage = vmImages[vmImageName] ?? vmImageName;
|
|
89
|
-
const scope = await
|
|
90
|
-
"scope",
|
|
91
|
-
"Vercel team/scope",
|
|
92
|
-
defaults.scope,
|
|
93
|
-
);
|
|
78
|
+
const scope = await chooseVercelScope(defaults.scope);
|
|
94
79
|
const project = await value(
|
|
95
80
|
"project",
|
|
96
81
|
"Vercel project name",
|
|
@@ -494,17 +479,6 @@ async function secret(name, question, fallback) {
|
|
|
494
479
|
return answer || fallback || "";
|
|
495
480
|
}
|
|
496
481
|
|
|
497
|
-
async function optionalValue(name, question, fallback) {
|
|
498
|
-
if (args[name] !== undefined) return args[name];
|
|
499
|
-
if (!input.isTTY) return "";
|
|
500
|
-
|
|
501
|
-
const answer = await askText(
|
|
502
|
-
question,
|
|
503
|
-
fallback ? `${fallback}; Enter to skip` : "skip",
|
|
504
|
-
);
|
|
505
|
-
return answer;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
482
|
function defaultAuthMode() {
|
|
509
483
|
if (args["auth-mode"]) return args["auth-mode"];
|
|
510
484
|
const hasBasic = Boolean(
|
|
@@ -622,6 +596,62 @@ async function chooseTools(fallback) {
|
|
|
622
596
|
return selected.join(",");
|
|
623
597
|
}
|
|
624
598
|
|
|
599
|
+
async function chooseVercelScope(fallback) {
|
|
600
|
+
if (args.scope !== undefined) return args.scope;
|
|
601
|
+
if (!input.isTTY) return fallback || "";
|
|
602
|
+
|
|
603
|
+
const teams = await getVercelTeams();
|
|
604
|
+
const options = [
|
|
605
|
+
{ value: "", label: "Default", hint: "current Vercel CLI scope" },
|
|
606
|
+
...teams.map((team) => ({
|
|
607
|
+
value: team.slug,
|
|
608
|
+
label: team.name || team.slug,
|
|
609
|
+
hint: team.slug,
|
|
610
|
+
})),
|
|
611
|
+
];
|
|
612
|
+
|
|
613
|
+
return promptResult(
|
|
614
|
+
p.select({
|
|
615
|
+
message: "Vercel team",
|
|
616
|
+
initialValue: teams.some((team) => team.slug === fallback)
|
|
617
|
+
? fallback
|
|
618
|
+
: "",
|
|
619
|
+
options,
|
|
620
|
+
}),
|
|
621
|
+
);
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
async function getVercelTeams() {
|
|
625
|
+
try {
|
|
626
|
+
const commandArgs = ["teams", "list", "--format", "json"];
|
|
627
|
+
if (args.token) commandArgs.push("--token", args.token);
|
|
628
|
+
const text = await runCapture("vercel", commandArgs);
|
|
629
|
+
return extractVercelTeams(text);
|
|
630
|
+
} catch {
|
|
631
|
+
warn("could not load Vercel teams; using default scope");
|
|
632
|
+
return [];
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
function extractVercelTeams(text) {
|
|
637
|
+
const start = text.indexOf("[");
|
|
638
|
+
const end = text.lastIndexOf("]");
|
|
639
|
+
if (start === -1 || end === -1 || end < start) return [];
|
|
640
|
+
|
|
641
|
+
try {
|
|
642
|
+
const data = JSON.parse(text.slice(start, end + 1));
|
|
643
|
+
const teams = Array.isArray(data) ? data : data.teams || [];
|
|
644
|
+
return teams
|
|
645
|
+
.map((team) => ({
|
|
646
|
+
name: team.name || team.slug || "",
|
|
647
|
+
slug: team.slug || "",
|
|
648
|
+
}))
|
|
649
|
+
.filter((team) => team.slug);
|
|
650
|
+
} catch {
|
|
651
|
+
return [];
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
|
|
625
655
|
function parseTools(value) {
|
|
626
656
|
const names = Object.keys(toolChoices);
|
|
627
657
|
const selected = String(value || "")
|
|
@@ -648,7 +678,7 @@ async function readDefaults(file) {
|
|
|
648
678
|
async function syncDefaults() {
|
|
649
679
|
const current = await readDefaults(defaultsPath);
|
|
650
680
|
const codeMtime = Math.max(
|
|
651
|
-
await readMtime(
|
|
681
|
+
await readMtime(scriptFile),
|
|
652
682
|
await readMtime(legacyDefaultsPath),
|
|
653
683
|
);
|
|
654
684
|
const homeMtime = await readMtime(defaultsPath);
|
|
@@ -935,7 +965,7 @@ Options:
|
|
|
935
965
|
--vm-image NAME alpine, ubuntu, debian, or a custom VM image
|
|
936
966
|
--base NAME Alias for --vm-image
|
|
937
967
|
--project NAME Vercel project name
|
|
938
|
-
--scope SLUG
|
|
968
|
+
--scope SLUG Vercel team/user scope slug; skips team selector
|
|
939
969
|
--from IMAGE Source image for /app/bin/wsterm
|
|
940
970
|
--shell PATH /bin/bash, /bin/zsh, or /bin/sh
|
|
941
971
|
--tools LIST nodejs,codex,claude-code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vercel-vm-factory",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.8",
|
|
4
4
|
"description": "Create Vercel Container deployments for ws-shell from selectable VM images.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"bin/",
|
|
12
|
+
"config.mjs",
|
|
12
13
|
"deploy-vm.mjs",
|
|
13
14
|
"README.md"
|
|
14
15
|
],
|