oikos-web: extract the client stack from dtoro/oikos
Some checks failed
ci / web (push) Has been cancelled
Desktop App / Build Linux (amd64) (push) Has been cancelled
Desktop App / Attach to Release (push) Has been cancelled

Phase 1 of the hexagonal-architecture plan (dtoro/oikos
plans/2026-08-15-hexagonal-architecture.md). Moves the delivery stack
for the control-room UI into its own repo with its own pipeline:

- web/ — Svelte 5 SPA, verbatim (vendor/ included)
- desktop/ — Wails v3 wrapper, updateURL repointed to
  dtoro/oikos-web releases
- compose/ — Dockerfile + Caddyfile, verbatim (the /wails/* 404 and
  asset no-fallback quirks are load-bearing)
- docker-compose.yml — single web service, same 8091:80 publish,
  mem/cpu limits, and restart policy as the oikos stack's web service
- scripts/deploy.sh — mirrors oikos deploy essentials: CI-green gate,
  TOCTOU guard, version-tagged oikos-web:v$VERSION, prune to 3
- cmd/webhook + scripts/install-webhook.sh — standalone push-to-deploy
  receiver on :9798 (env-only secrets, no Infisical dependency)
- CI: the web job from oikos's ci.yml + the desktop build/release
  workflow, path-adjusted

Own VERSION (0.33.0) with the same bump-on-main rule; starts above
oikos's 0.32.x so the desktop updater sees an upgrade.
This commit is contained in:
dtoro
2026-08-15 22:20:54 +02:00
commit ed8a3145b3
365 changed files with 61308 additions and 0 deletions

50
web/vendor/examples/canvas.html vendored Normal file
View File

@@ -0,0 +1,50 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Orby · Canvas example</title>
<link rel="stylesheet" href="./example.css" />
</head>
<body>
<main>
<h1>Native canvas</h1>
<p>
One long-lived engine instance moves between semantic states while
preserving its seeded visual identity.
</p>
<div class="glyph-stage">
<canvas id="aiGlyph" width="440" height="440" aria-label="Animated AI state"></canvas>
</div>
<div class="actions" role="group" aria-label="Choose a semantic state">
<button type="button" data-sprite="ai.idle">Ready</button>
<button type="button" data-sprite="ai.thinking">Thinking</button>
<button type="button" data-sprite="ai.progress">Progress</button>
<button type="button" data-sprite="status.success">Done</button>
</div>
<p id="stateStatus" role="status">Current state: ai.idle</p>
</main>
<script type="module">
import { createGlyph } from "../src/joan-engine.js";
const glyph = createGlyph("#aiGlyph", {
sprite: "ai.idle",
seed: "self-service-example",
gridSize: 68,
});
const status = document.querySelector("#stateStatus");
document.querySelectorAll("[data-sprite]").forEach((button) => {
button.addEventListener("click", async () => {
const sprite = button.dataset.sprite;
status.textContent = `Transitioning to ${sprite}`;
await glyph.transitionTo(sprite);
status.textContent = `Current state: ${sprite}`;
});
});
window.addEventListener("pagehide", () => glyph.destroy(), { once: true });
</script>
</body>
</html>