New standalone page /builds.html consolidating rebuild queue, meta
inputs, and build log history into one place, with a new 'Builds' home
tile linking to it. Addresses mara's request: new sub-page with a new
home tile, all three items moved there.
Changes:
- builds.html: new page with three sub-tabs: R3BU1LD QU3U3, M3T4 1NPUTS,
BUILD L0GS. Same minimal-chrome header + createTabStrip pattern as core
and logs pages.
- builds.js: new bundle combining rebuild queue renderer (from core.js),
meta inputs renderer (from core.js), rebuild-live-log renderer (from
core.js), and build log history renderer (from logs.js). Deep-links to
/builds.html?id=N#buildlogs. Count pill id: builds-tab-count-rebuild.
BUILD L0GS tab lazy-loads on first activation.
- builds.css: @imports system-sections.css (rebuild queue + meta inputs +
live-log styles) and logs.css (build-logs-* component styles).
- build.mjs: register builds.js, builds.css, builds.html.
- core.html: remove R3BU1LD QU3U3 + M3T4 1NPUTS tabs (now on builds.html).
Default tab changes to K3PT ST4T3.
- core.js: remove renderMetaInputs, renderRebuildQueue + helpers,
renderRebuildLiveLog + live-log state, elapsed-time tickers,
updateRebuildCount, and the rebuild_queue/meta_inputs SSE handlers.
Remove openBuildLogStream + util imports no longer needed.
- core.css: remove .rebuild-live-log-* rules (moved to system-sections.css
so builds.css can share them via @import).
- system-sections.css: add .rebuild-live-log-* styles (moved from core.css);
update comment to mention builds.html.
- logs.html: remove BUILD tab + pane (moved to builds.html).
- logs.js: remove fetchBuild(), fmtTs, fmtDuration, openBuildLogStream
import, and rebuild_queue_changed SSE debounce. Default tab: 'agent'.
SSE stream retained for audit_entry_added live-appends.
- index.html: add Builds tile (🔨, rebuild queue · meta inputs · build
logs); update Core tile desc to 'kept state · container load'; update
Logs tile desc to remove 'build'.
131 lines
5.5 KiB
HTML
131 lines
5.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>hyperhive // h0m3</title>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
<link rel="stylesheet" href="/static/colors.css">
|
|
<link rel="stylesheet" href="/static/theme.css">
|
|
<link rel="stylesheet" href="/static/common.css">
|
|
<link rel="stylesheet" href="/static/home.css">
|
|
</head>
|
|
<body class="home-shell">
|
|
|
|
<!-- Decorative matrix-rain backdrop: a dimmed full-viewport canvas of
|
|
falling glyphs behind everything (home.js drives it). aria-hidden +
|
|
pointer-events:none so it's purely cosmetic; glyph/bg colours are
|
|
read from the stylix palette at runtime so a theme swap re-colours
|
|
it, and it's disabled under prefers-reduced-motion. -->
|
|
<canvas id="matrix-rain" aria-hidden="true"></canvas>
|
|
|
|
<!-- H0M3: the menu hub. A plain grid of links to every top-level
|
|
surface. This is the page served at `/` — the landing page — with
|
|
the dashboard relocated to /dashboard.html. No tabbar / SSE —
|
|
it's a static portal. -->
|
|
<!-- Padded content wrapper: carries the 1.5em side gutter
|
|
(.page-content, common.css) while <body> stays full-bleed so the
|
|
server-warnings banner spans the full width. -->
|
|
<div class="page-content">
|
|
<header class="home-header">
|
|
<p class="banner-thin" id="hive-identity" hidden></p>
|
|
<pre class="banner">░▒▓█▓▒░ ░▒▓█▓▒░ H Y P E R H I V E · H0M3 ░▒▓█▓▒░ ░▒▓█▓▒░</pre>
|
|
</header>
|
|
|
|
<main class="home-main">
|
|
<nav class="home-menu" aria-label="hyperhive surfaces">
|
|
|
|
<a class="home-tile" href="/dashboard.html">
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">🖥</span>
|
|
<span class="home-tile-label">Dashboard</span>
|
|
</span>
|
|
<span class="home-tile-desc">containers · approvals · permissions · schedules · system</span>
|
|
</a>
|
|
|
|
<a class="home-tile" href="/flow.html">
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">📡</span>
|
|
<span class="home-tile-label">Flow</span>
|
|
</span>
|
|
<span class="home-tile-desc">live all-agents message firehose</span>
|
|
</a>
|
|
|
|
<a class="home-tile" href="/builds.html">
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">🔨</span>
|
|
<span class="home-tile-label">Builds</span>
|
|
</span>
|
|
<span class="home-tile-desc">rebuild queue · meta inputs · build logs</span>
|
|
</a>
|
|
|
|
<a class="home-tile" href="/logs.html">
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">📜</span>
|
|
<span class="home-tile-label">Logs</span>
|
|
</span>
|
|
<span class="home-tile-desc">agent · system logs · privileged-action audit</span>
|
|
</a>
|
|
|
|
<a class="home-tile" href="/stats.html">
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">📊</span>
|
|
<span class="home-tile-label">Stats</span>
|
|
</span>
|
|
<span class="home-tile-desc">hive-wide turn stats · cost · model mix</span>
|
|
</a>
|
|
|
|
<a class="home-tile" href="/settings.html">
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">⚙</span>
|
|
<span class="home-tile-label">Settings</span>
|
|
</span>
|
|
<span class="home-tile-desc">operator-local prefs · browser notifications</span>
|
|
</a>
|
|
|
|
<a class="home-tile" href="/core.html">
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">⬡</span>
|
|
<span class="home-tile-label">Core</span>
|
|
</span>
|
|
<span class="home-tile-desc">kept state · container load</span>
|
|
</a>
|
|
|
|
<a class="home-tile" href="/matrix-accounts.html">
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">🔑</span>
|
|
<span class="home-tile-label">Matrix accounts</span>
|
|
</span>
|
|
<span class="home-tile-desc">provision · log in · store per-agent matrix tokens</span>
|
|
</a>
|
|
|
|
<!-- Forge tile: hidden until home.js confirms the hive-forge
|
|
container is up (state.forge_present); home.js also fills the
|
|
href from state.forge_public_url (or the :3000 fallback), so
|
|
operators without a forge never see a dead link. -->
|
|
<a class="home-tile" id="home-tile-forge" href="#" target="_blank" rel="noopener" hidden>
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">⚒</span>
|
|
<span class="home-tile-label">Forge</span>
|
|
</span>
|
|
<span class="home-tile-desc">issues · pull requests · agent-config repos</span>
|
|
</a>
|
|
|
|
<!-- Matrix tile: hidden until home.js confirms the matrix GUI is
|
|
enabled (state.matrix_gui_enabled), mirroring the dashboard
|
|
tab gating so operators without it don't see a dead link. -->
|
|
<a class="home-tile" id="home-tile-matrix" href="/matrix/" hidden>
|
|
<span class="home-tile-head">
|
|
<span class="home-tile-icon" aria-hidden="true">💬</span>
|
|
<span class="home-tile-label">Matrix</span>
|
|
</span>
|
|
<span class="home-tile-desc">matrix chat client</span>
|
|
</a>
|
|
|
|
</nav>
|
|
</main>
|
|
</div><!-- /.page-content -->
|
|
|
|
<script type="module" src="/static/home.js" defer></script>
|
|
</body>
|
|
</html>
|