@lacneu/atrium 0.1.0 → 0.1.2

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.
@@ -0,0 +1,38 @@
1
+ <!doctype html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <link
7
+ rel="icon"
8
+ href="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%3E%3Cstyle%3E*%7Bstroke%3A%231c1c1c%7D%40media(prefers-color-scheme%3Adark)%7B*%7Bstroke%3A%23fff%7D%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M24%2015H14V49H24%22%20stroke-width%3D%227.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M40%2015H50V49H40%22%20stroke-width%3D%227.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpolyline%20points%3D%2222%2033%2027%2033%2030%2027%2034%2039%2038%2031%2042%2033%22%20stroke-width%3D%224.4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E"
9
+ />
10
+ <title>Atrium</title>
11
+ <script>
12
+ // Apply the saved theme before first paint to avoid a flash, by toggling
13
+ // the `.dark` class (shadcn convention). "system" (or unset) resolves to
14
+ // the OS preference. Same approach as claude-monitor.
15
+ (function () {
16
+ var t = localStorage.getItem("oc.theme") || "system";
17
+ var dark =
18
+ t === "dark" ||
19
+ (t === "system" &&
20
+ window.matchMedia("(prefers-color-scheme: dark)").matches);
21
+ document.documentElement.classList.toggle("dark", dark);
22
+ })();
23
+ // Reflect the saved UI locale on <html lang> before first paint (a11y),
24
+ // mirror of the theme script above. Paraglide's localStorage strategy
25
+ // persists the locale under PARAGLIDE_LOCALE; useApplyLocale then keeps it
26
+ // in sync with the Convex-resolved value after hydration.
27
+ (function () {
28
+ var l = localStorage.getItem("PARAGLIDE_LOCALE");
29
+ if (l === "fr" || l === "en") document.documentElement.lang = l;
30
+ })();
31
+ </script>
32
+ <script type="module" crossorigin src="/assets/index-CGRbvNA9.js"></script>
33
+ <link rel="stylesheet" crossorigin href="/assets/index-BCx_Unm7.css">
34
+ </head>
35
+ <body>
36
+ <div id="root"></div>
37
+ </body>
38
+ </html>
package/package.json CHANGED
@@ -1,9 +1,17 @@
1
1
  {
2
2
  "name": "@lacneu/atrium",
3
- "version": "0.1.0",
4
- "description": "Atrium — public, self-hostable Convex-backed chat UI for OpenClaw. Ships an origin-agnostic static bundle (Convex URL injected at runtime via /config.json).",
3
+ "version": "0.1.2",
4
+ "description": "Atrium — public, self-hostable, Convex-backed web chat UI for AI agent gateways (OpenClaw today, Hermes next). Ships an origin-agnostic static bundle (Convex URL injected at runtime via /config.json).",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/lacneu/atrium.git"
10
+ },
11
+ "homepage": "https://github.com/lacneu/atrium#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/lacneu/atrium/issues"
14
+ },
7
15
  "files": [
8
16
  "dist",
9
17
  "README.md"