relmio 0.2.10 → 0.2.11

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/CHANGELOG.md CHANGED
@@ -7,6 +7,24 @@ checks the registry separately after publication.
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## [0.2.11] - 2026-08-04
11
+
12
+ ### Fixed
13
+
14
+ - Open the private Windows wizard URL through the documented default-browser
15
+ association instead of asking Explorer to treat the URL as a folder, while
16
+ retaining the printed URL and Enter-to-retry fallback.
17
+ - Make the Command Prompt installer copy call the system Windows PowerShell
18
+ executable directly, avoiding ambiguous `powershell` command resolution.
19
+ - Parse the supported `openai-oauth@2.0.0` login line across Windows terminal
20
+ control sequences and chunk boundaries, and report a sanitized, actionable
21
+ callback-port conflict instead of a generic missing-link error.
22
+
23
+ ### Security
24
+
25
+ - Pin the hosted web tooling to `brace-expansion` 5.0.9, which includes the
26
+ upstream denial-of-service fix required by the release audit.
27
+
10
28
  ## [0.2.10] - 2026-08-03
11
29
 
12
30
  ### Fixed
package/README.md CHANGED
@@ -105,7 +105,7 @@ irm https://relmio.vercel.app/install.ps1 | iex
105
105
  ### Windows Command Prompt
106
106
 
107
107
  ```bat
108
- powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://relmio.vercel.app/install.ps1 | iex"
108
+ "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "irm https://relmio.vercel.app/install.ps1 | iex"
109
109
  ```
110
110
 
111
111
  No Node.js or Git Bash installation is required first. The
@@ -49,7 +49,7 @@ irm https://relmio.vercel.app/install.ps1 | iex
49
49
  Windows Command Prompt:
50
50
 
51
51
  ```bat
52
- powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://relmio.vercel.app/install.ps1 | iex"
52
+ "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "irm https://relmio.vercel.app/install.ps1 | iex"
53
53
  ```
54
54
 
55
55
  These commands do not require Node.js to be installed. The Windows options do
@@ -71,6 +71,11 @@ Enter to ask it to open the browser again. Otherwise, copy the newest printed
71
71
  `http://127.0.0.1:...` URL into the browser. That URL contains a temporary setup
72
72
  token: do not post it in an issue or screenshot.
73
73
 
74
+ The local wizard may be displayed in a VS Code embedded browser. Its validated
75
+ manual link, **Open fresh ChatGPT sign-in**, remains available if that embedded
76
+ browser blocks the popup or no new tab opens. Use that link only from the active
77
+ wizard attempt; it points to the fresh `auth.openai.com` authorization URL.
78
+
74
79
  You do not need to sign in to npm, configure npm 2FA, or own this package to
75
80
  run any public command. npm authentication is required only for the
76
81
  maintainer who publishes a release.
@@ -112,7 +117,7 @@ bypassed.
112
117
  | Symptom | Meaning | Fix |
113
118
  |---|---|---|
114
119
  | `node: command not found`, `node is not recognized`, or Node is older than 22 | The NPX fallback cannot use the local runtime. | Use the macOS/Linux curl command or the native Windows PowerShell/Command Prompt command above. Either can run with a verified temporary runtime. Do not install Node.js on the VPS for the wizard. |
115
- | `curl` or `sh` is not recognized on Windows | The macOS/Linux command was pasted into a native Windows terminal. | Use the PowerShell command in PowerShell, or the longer `powershell -NoProfile ...` command in Command Prompt. Git Bash is not required. |
120
+ | `curl` or `sh` is not recognized on Windows | The macOS/Linux command was pasted into a native Windows terminal. | Use the PowerShell command in PowerShell, or the `"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile ...` command in Command Prompt. Git Bash is not required. |
116
121
  | A bootstrap reports a checksum mismatch | The Node.js download did not match the official SHA-256 manifest, so it was not executed. | Retry on a trusted connection. Do not bypass the check. If it repeats, use an existing Node.js 22+ installation and report the sanitized error. |
117
122
  | Windows PowerShell shows `[eval]:1` before the wizard starts | An older bootstrap passed a JavaScript expression through `node -p`; PowerShell native-argument handling can alter that expression. | Update to the latest `relmio@latest` and rerun the same PowerShell or Command Prompt command. The current bootstrap parses the literal `node --version` output and reuses Node.js 22 or newer. |
118
123
  | Windows reports `spawn EINVAL` when starting ChatGPT sign-in | An older wizard tried to execute `npx.cmd` directly; Windows requires the current Node runtime to launch npm's JavaScript CLI. | Update to the latest `relmio@latest` release and restart the setup command. The current wizard keeps the macOS/Linux/WSL/Git Bash `npx` path unchanged. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "relmio",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Turn a supported ChatGPT/Codex OAuth sign-in into a private OpenAI-compatible endpoint, starting with self-hosted n8n.",
5
5
  "keywords": [
6
6
  "relmio",
package/src/browser.js CHANGED
@@ -5,15 +5,47 @@ export function browserCommand(url, platform = process.platform) {
5
5
  return { file: "open", args: [url] };
6
6
  }
7
7
  if (platform === "win32") {
8
- return { file: "explorer.exe", args: [url] };
8
+ return {
9
+ file: "cmd.exe",
10
+ args: ["/d", "/c", "start", "Relmio local wizard", url],
11
+ };
9
12
  }
10
13
  return { file: "xdg-open", args: [url] };
11
14
  }
12
15
 
16
+ function isPrivateWizardUrl(value) {
17
+ if (typeof value !== "string" || /[\u0000-\u001F\u007F]/u.test(value)) {
18
+ return false;
19
+ }
20
+
21
+ try {
22
+ const url = new URL(value);
23
+ const session = url.searchParams.get("session");
24
+ return (
25
+ url.protocol === "http:" &&
26
+ url.hostname === "127.0.0.1" &&
27
+ url.port !== "" &&
28
+ Number(url.port) > 0 &&
29
+ url.pathname === "/" &&
30
+ url.username === "" &&
31
+ url.password === "" &&
32
+ url.hash === "" &&
33
+ typeof session === "string" &&
34
+ /^[A-Za-z0-9_-]{43}$/u.test(session) &&
35
+ url.search === `?session=${session}`
36
+ );
37
+ } catch {
38
+ return false;
39
+ }
40
+ }
41
+
13
42
  export function openBrowser(
14
43
  url,
15
44
  { platform = process.platform, spawnProcess = spawn } = {},
16
45
  ) {
46
+ if (!isPrivateWizardUrl(url)) {
47
+ return false;
48
+ }
17
49
  const command = browserCommand(url, platform);
18
50
  let child;
19
51
  try {
@@ -12,6 +12,11 @@ const PROCESS_TIMEOUT_MS = LOGIN_TIMEOUT_MS + 15_000;
12
12
  const CREDENTIAL_POLL_INTERVAL_MS = 100;
13
13
  const LOGIN_URL_PREFIX = "OpenAI OAuth login URL: ";
14
14
  const OPENAI_AUTH_ORIGIN = "https://auth.openai.com";
15
+ const SUPPORTED_LOOPBACK_REDIRECT_HOSTNAMES = new Set([
16
+ "localhost",
17
+ "127.0.0.1",
18
+ "[::1]",
19
+ ]);
15
20
 
16
21
  const wait = (milliseconds) =>
17
22
  new Promise((resolvePromise) => setTimeout(resolvePromise, milliseconds));
@@ -124,6 +129,10 @@ function validateAuthorizationUrl(value) {
124
129
 
125
130
  if (
126
131
  url.origin !== OPENAI_AUTH_ORIGIN ||
132
+ url.username !== "" ||
133
+ url.password !== "" ||
134
+ url.hash !== "" ||
135
+ url.href.includes("#") ||
127
136
  url.pathname !== "/oauth/authorize" ||
128
137
  url.searchParams.get("response_type") !== "code" ||
129
138
  !url.searchParams.get("state") ||
@@ -139,7 +148,14 @@ function validateAuthorizationUrl(value) {
139
148
  throw new Error("The sign-in command returned an invalid callback.");
140
149
  }
141
150
  if (
142
- !["localhost", "127.0.0.1", "::1"].includes(redirect.hostname) ||
151
+ redirect.protocol !== "http:" ||
152
+ redirect.username !== "" ||
153
+ redirect.password !== "" ||
154
+ redirect.search !== "" ||
155
+ redirect.hash !== "" ||
156
+ redirect.href.includes("?") ||
157
+ redirect.href.includes("#") ||
158
+ !SUPPORTED_LOOPBACK_REDIRECT_HOSTNAMES.has(redirect.hostname) ||
143
159
  redirect.port !== "1455" ||
144
160
  redirect.pathname !== "/auth/callback"
145
161
  ) {
@@ -149,15 +165,38 @@ function validateAuthorizationUrl(value) {
149
165
  return url.toString();
150
166
  }
151
167
 
152
- function extractAuthorizationUrl(output) {
153
- for (const line of output.split(/\r?\n/u)) {
154
- if (line.startsWith(LOGIN_URL_PREFIX)) {
155
- return validateAuthorizationUrl(line.slice(LOGIN_URL_PREFIX.length));
168
+ function stripTerminalControlSequences(value) {
169
+ return value
170
+ .replace(/\u001B\][^\u0007]*(?:\u0007|\u001B\\)/gu, "")
171
+ .replace(/\u001B\[[0-?]*[ -/]*[@-~]/gu, "")
172
+ .replace(/[\u0000-\u0009\u000B-\u001F\u007F-\u009F]/gu, "");
173
+ }
174
+
175
+ function extractAuthorizationUrl(output, { includeFinalLine = false } = {}) {
176
+ const lines = stripTerminalControlSequences(output).split("\n");
177
+ const lineCount = includeFinalLine ? lines.length : lines.length - 1;
178
+ for (const line of lines.slice(0, lineCount)) {
179
+ const markerIndex = line.indexOf(LOGIN_URL_PREFIX);
180
+ if (markerIndex >= 0) {
181
+ return validateAuthorizationUrl(
182
+ line.slice(markerIndex + LOGIN_URL_PREFIX.length).trim(),
183
+ );
156
184
  }
157
185
  }
158
186
  return null;
159
187
  }
160
188
 
189
+ function loginStartupError(stderr) {
190
+ const callbackPortConflict =
191
+ "OpenAI OAuth login needs http://localhost:1455/auth/callback, but port 1455 is already in use.";
192
+ if (stripTerminalControlSequences(stderr).includes(callbackPortConflict)) {
193
+ return new Error(
194
+ `${callbackPortConflict} Stop the process using that port and try again.`,
195
+ );
196
+ }
197
+ return new Error("The sign-in command did not return an authorization URL.");
198
+ }
199
+
161
200
  export async function startOAuthLogin({
162
201
  fileSystem = defaultFileSystem,
163
202
  env = process.env,
@@ -205,9 +244,8 @@ export async function startOAuthLogin({
205
244
  { cause: error },
206
245
  );
207
246
  }
208
- child.stderr?.resume();
209
-
210
- let loginOutput = "";
247
+ const loginOutput = { stdout: "", stderr: "" };
248
+ let loginOutputBytes = 0;
211
249
  let resolveAuthorizationUrl;
212
250
  let rejectAuthorizationUrl;
213
251
  let authorizationUrlSettled = false;
@@ -227,20 +265,25 @@ export async function startOAuthLogin({
227
265
  }
228
266
  };
229
267
 
230
- child.stdout?.on("data", (chunk) => {
268
+ const captureLoginOutput = (stream, chunk) => {
231
269
  if (authorizationUrlSettled) {
232
270
  return;
233
271
  }
234
- loginOutput += Buffer.from(chunk).toString("utf8");
235
- if (Buffer.byteLength(loginOutput) > MAX_LOGIN_OUTPUT_BYTES) {
272
+ const output = Buffer.from(chunk).toString("utf8");
273
+ loginOutputBytes += Buffer.byteLength(output);
274
+ if (loginOutputBytes > MAX_LOGIN_OUTPUT_BYTES) {
236
275
  settleAuthorizationUrl(
237
276
  new Error("The sign-in command returned too much output."),
238
277
  );
239
278
  child.kill?.("SIGTERM");
240
279
  return;
241
280
  }
281
+ loginOutput[stream] += output;
282
+ if (stream !== "stdout") {
283
+ return;
284
+ }
242
285
  try {
243
- const authorizationUrl = extractAuthorizationUrl(loginOutput);
286
+ const authorizationUrl = extractAuthorizationUrl(loginOutput.stdout);
244
287
  if (authorizationUrl) {
245
288
  settleAuthorizationUrl(null, authorizationUrl);
246
289
  }
@@ -248,24 +291,27 @@ export async function startOAuthLogin({
248
291
  settleAuthorizationUrl(error);
249
292
  child.kill?.("SIGTERM");
250
293
  }
251
- });
294
+ };
252
295
 
253
- let resolveExit;
254
- let rejectExit;
255
- let exitSettled = false;
256
- const exitPromise = new Promise((resolvePromise, rejectPromise) => {
257
- resolveExit = resolvePromise;
258
- rejectExit = rejectPromise;
296
+ child.stdout?.on?.("data", (chunk) => captureLoginOutput("stdout", chunk));
297
+ child.stderr?.on?.("data", (chunk) => captureLoginOutput("stderr", chunk));
298
+
299
+ let resolveProcessClose;
300
+ let rejectProcessClose;
301
+ let processCloseSettled = false;
302
+ const processClosePromise = new Promise((resolvePromise, rejectPromise) => {
303
+ resolveProcessClose = resolvePromise;
304
+ rejectProcessClose = rejectPromise;
259
305
  });
260
- const settleExit = (error, code) => {
261
- if (exitSettled) {
306
+ const settleProcessClose = (error, code) => {
307
+ if (processCloseSettled) {
262
308
  return;
263
309
  }
264
- exitSettled = true;
310
+ processCloseSettled = true;
265
311
  if (error) {
266
- rejectExit(error);
312
+ rejectProcessClose(error);
267
313
  } else {
268
- resolveExit(code);
314
+ resolveProcessClose(code);
269
315
  }
270
316
  };
271
317
 
@@ -274,15 +320,24 @@ export async function startOAuthLogin({
274
320
  "The local sign-in command could not start. Install Node.js 22 and try again.",
275
321
  );
276
322
  settleAuthorizationUrl(error);
277
- settleExit(error);
323
+ settleProcessClose(error);
278
324
  });
279
- child.once("exit", (code) => {
325
+ child.once("close", (code) => {
280
326
  if (!authorizationUrlSettled) {
281
- settleAuthorizationUrl(
282
- new Error("The sign-in command did not return an authorization URL."),
283
- );
327
+ try {
328
+ const authorizationUrl = extractAuthorizationUrl(loginOutput.stdout, {
329
+ includeFinalLine: true,
330
+ });
331
+ if (authorizationUrl) {
332
+ settleAuthorizationUrl(null, authorizationUrl);
333
+ } else {
334
+ settleAuthorizationUrl(loginStartupError(loginOutput.stderr));
335
+ }
336
+ } catch (error) {
337
+ settleAuthorizationUrl(error);
338
+ }
284
339
  }
285
- settleExit(null, code);
340
+ settleProcessClose(null, code);
286
341
  });
287
342
 
288
343
  const loginUrlTimeout = setTimeout(() => {
@@ -326,7 +381,7 @@ export async function startOAuthLogin({
326
381
  try {
327
382
  return await Promise.race([
328
383
  pendingCredentialPromise,
329
- exitPromise.then(async (code) => {
384
+ processClosePromise.then(async (code) => {
330
385
  if (code !== 0) {
331
386
  throw new Error(
332
387
  "ChatGPT sign-in did not finish. Start a fresh login.",
@@ -348,7 +403,7 @@ export async function startOAuthLogin({
348
403
  keepPollingForCredential = false;
349
404
  clearTimeout(processTimeout);
350
405
  clearTimeout(loginUrlTimeout);
351
- if (!exitSettled) {
406
+ if (!processCloseSettled) {
352
407
  child.kill?.("SIGTERM");
353
408
  }
354
409
  try {