relmio 0.2.1 → 0.2.3

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,21 @@ checks the registry separately after publication.
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## [0.2.3] - 2026-07-31
11
+
12
+ ### Added
13
+
14
+ - Add sanitized GPT-5.6 Sol and Luna AI Agent examples, a model-selector
15
+ compatibility preview, and the completed Docker sidecar state to both the
16
+ GitHub and npm README experiences.
17
+
18
+ ## [0.2.2] - 2026-07-30
19
+
20
+ ### Added
21
+
22
+ - Add aligned npm keywords and GitHub repository topics for Relmio, GPT model
23
+ variants, n8n, AI agents, and API-key discovery.
24
+
10
25
  ## [0.2.1] - 2026-07-30
11
26
 
12
27
  ### Added
package/README.md CHANGED
@@ -13,6 +13,25 @@
13
13
  </p>
14
14
  </div>
15
15
 
16
+ ## See it working first
17
+
18
+ Before setup, this sample n8n configuration shows GPT-5.6 model aliases in the
19
+ OpenAI Chat Model selector. The exact model list depends on the signed-in
20
+ ChatGPT account and can change over time.
21
+
22
+ <figure>
23
+ <img src="https://cdn.jsdelivr.net/npm/relmio@latest/docs/images/examples/gpt-56-model-selector.png" alt="Model selector listing GPT-5.6 Sol, Luna, and Terra model aliases" width="480">
24
+ <figcaption>Compatibility preview: the model selector includes <code>gpt-5.6-sol</code>, <code>gpt-5.6-luna</code>, and <code>gpt-5.6-terra</code>.</figcaption>
25
+ </figure>
26
+
27
+ After Relmio completes the installation, Docker shows the existing n8n stack
28
+ and the new private OAuth sidecar running together.
29
+
30
+ <figure>
31
+ <img src="https://cdn.jsdelivr.net/npm/relmio@latest/docs/images/examples/sidecar-docker-containers-running.png" alt="Docker Desktop showing the n8n and n8n-openai-oauth containers running" width="960">
32
+ <figcaption>Completed setup: the existing <code>n8n</code> stack and the <code>n8n-openai-oauth</code> sidecar are both running.</figcaption>
33
+ </figure>
34
+
16
35
  Relmio is a local browser wizard that installs a private
17
36
  [openai-oauth](https://github.com/EvanZhouDev/openai-oauth) Docker sidecar
18
37
  beside an existing self-hosted n8n instance. It guides you through local
@@ -21,6 +40,15 @@ exact change plan, and the final n8n credential settings.
21
40
 
22
41
  The existing n8n image, Compose file, container, and workflows stay untouched.
23
42
 
43
+ A sidecar is a small helper program that runs beside a larger program. Relmio's
44
+ private sidecar adds ChatGPT/Codex sign-in and request translation while your
45
+ existing n8n stays unchanged. This follows the sidecar pattern described in
46
+ [Justin Rice's beginner-friendly overview](https://medium.com/@justinricedev/what-is-a-software-sidecar-8f89feff09f9).
47
+
48
+ Think of it like a motorcycle gaining a sidecar: together they become a
49
+ tricycle with extra seats. n8n is the motorcycle; Relmio is the sidecar that
50
+ adds the missing capability without changing n8n.
51
+
24
52
  Try the hosted browser demo at
25
53
  [relmio.vercel.app](https://relmio.vercel.app/). It is a separate
26
54
  request-bound ChatGPT experience; the npm package remains the local wizard for
package/package.json CHANGED
@@ -1,7 +1,21 @@
1
1
  {
2
2
  "name": "relmio",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Turn a supported ChatGPT/Codex OAuth sign-in into a private OpenAI-compatible endpoint, starting with self-hosted n8n.",
5
+ "keywords": [
6
+ "relmio",
7
+ "gpt-5-6-sol",
8
+ "gpt-5-6-terra",
9
+ "gpt-5-6-luna",
10
+ "gpt-2-0-image",
11
+ "n8n",
12
+ "ai-agent",
13
+ "api-key",
14
+ "ai",
15
+ "chatgpt",
16
+ "codex",
17
+ "openai"
18
+ ],
5
19
  "type": "module",
6
20
  "license": "Apache-2.0",
7
21
  "repository": {