relmio 0.2.4 → 0.2.5
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 +11 -0
- package/README.md +17 -0
- package/docs/images/examples/hosted-chat-connected.png +0 -0
- package/docs/troubleshooting.md +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ checks the registry separately after publication.
|
|
|
7
7
|
|
|
8
8
|
## Unreleased
|
|
9
9
|
|
|
10
|
+
## [0.2.5] - 2026-07-31
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add a sanitized successful hosted-chat screenshot and a visible guide to the
|
|
15
|
+
required Sign in with ChatGPT browser extension across the website, GitHub
|
|
16
|
+
README, npm README, and troubleshooting documentation.
|
|
17
|
+
- Explain that the hosted extension requirement is separate from the local
|
|
18
|
+
npm wizard callback, where a callback-capturing extension may need to be
|
|
19
|
+
disabled temporarily during sign-in.
|
|
20
|
+
|
|
10
21
|
## [0.2.4] - 2026-07-31
|
|
11
22
|
|
|
12
23
|
### Changed
|
package/README.md
CHANGED
|
@@ -54,6 +54,23 @@ Try the hosted browser demo at
|
|
|
54
54
|
request-bound ChatGPT experience; the npm package remains the local wizard for
|
|
55
55
|
installing the private n8n sidecar.
|
|
56
56
|
|
|
57
|
+
> **Warning — Hosted chat requires the browser extension.** Install the
|
|
58
|
+
> open-source [Sign in with ChatGPT extension for
|
|
59
|
+
> Chrome](https://chromewebstore.google.com/detail/sign-in-with-chatgpt/odbgboachaefbbbdiffcefhpkekhfcna)
|
|
60
|
+
> or [Firefox](https://addons.mozilla.org/firefox/addon/sign-in-with-chatgpt/)
|
|
61
|
+
> before connecting. If the hosted chat stays disconnected, confirm the
|
|
62
|
+
> extension is installed and enabled, reload the page, and select **Connect
|
|
63
|
+
> ChatGPT** again.
|
|
64
|
+
|
|
65
|
+
> The local npm wizard uses its own `localhost:1455` callback instead. If an
|
|
66
|
+
> OAuth extension captures that callback, temporarily disable it during local sign-in,
|
|
67
|
+
> complete the wizard sign-in, and then re-enable it.
|
|
68
|
+
|
|
69
|
+
<figure>
|
|
70
|
+
<img src="https://cdn.jsdelivr.net/npm/relmio@latest/docs/images/examples/hosted-chat-connected.png" alt="Relmio hosted chat showing a connected ChatGPT session and a ready prompt field" width="720">
|
|
71
|
+
<figcaption>Successful hosted-chat state: the browser extension completed the OAuth handoff and Relmio shows the ChatGPT session as connected.</figcaption>
|
|
72
|
+
</figure>
|
|
73
|
+
|
|
57
74
|
Use the site's [Install wizard](https://relmio.vercel.app/install) page for a
|
|
58
75
|
copyable command tailored to the current self-hosted n8n and Hostinger VPS
|
|
59
76
|
setup path.
|
|
Binary file
|
package/docs/troubleshooting.md
CHANGED
|
@@ -9,6 +9,25 @@ wizard or any manual VPS command. The documented commands are sidecar-only and
|
|
|
9
9
|
do not delete, restart, or rebuild n8n, but they still access your VPS and write
|
|
10
10
|
files there.
|
|
11
11
|
|
|
12
|
+
## Hosted chat browser extension
|
|
13
|
+
|
|
14
|
+
The hosted demo at [relmio.vercel.app](https://relmio.vercel.app/) needs the
|
|
15
|
+
open-source **Sign in with ChatGPT** extension to complete the OAuth handoff:
|
|
16
|
+
|
|
17
|
+
- [Install for Chrome](https://chromewebstore.google.com/detail/sign-in-with-chatgpt/odbgboachaefbbbdiffcefhpkekhfcna)
|
|
18
|
+
- [Install for Firefox](https://addons.mozilla.org/firefox/addon/sign-in-with-chatgpt/)
|
|
19
|
+
|
|
20
|
+
After installation, reload Relmio and select **Connect ChatGPT** again. If the
|
|
21
|
+
chat still shows **Not connected**, confirm the extension is enabled, close
|
|
22
|
+
stale ChatGPT authorization tabs, and start one fresh connection from Relmio.
|
|
23
|
+
The hosted sign-in component also displays its extension install screen when
|
|
24
|
+
it detects that the extension is missing.
|
|
25
|
+
|
|
26
|
+
This requirement applies to the hosted chat, not the local npm wizard. The
|
|
27
|
+
wizard listens directly on `localhost:1455`; if an OAuth extension captures
|
|
28
|
+
that local callback, temporarily disable it during local sign-in and re-enable
|
|
29
|
+
it after the wizard saves the credential.
|
|
30
|
+
|
|
12
31
|
## Confirm the local package first
|
|
13
32
|
|
|
14
33
|
Run these commands on your own computer, not on the VPS:
|