asw/archive/examples-legacy/vault/status.html
exe.dev user e47a9f4401 asw-v01: archive deferred content (packs, site, lab, legacy examples)
- 2.1: packs/ -> archive/packs/
- 2.2: site/ -> archive/site/
- 2.3: src/lab/ -> archive/lab/
- 2.4: examples/ -> archive/examples-legacy/ (SSI-based)
2026-06-07 10:39:21 +02:00

69 lines
2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<!--#include virtual="/_include/head.html" -->
<title>Status — ASW Examples</title>
<meta name="description" content="data-status — operational state
indicators for agents and services">
</head>
<body>
<!--#include virtual="/_include/nav.html" -->
<main>
<header>
<h1>Status</h1>
<p data-text="lead">data-status — operational state indicators for
agents and services</p>
</header>
<p><code>data-status</code> renders a monospace label coloured by state.
Four states: <code>awake</code>, <code>sleeping</code>,
<code>blocked</code>, <code>unknown</code>.</p>
<h2 id="states">States</h2>
<p>
<span data-status="awake">awake</span>
<span data-status="sleeping">sleeping</span>
<span data-status="blocked">blocked</span>
<span data-status="unknown">unknown</span>
</p>
<h2 id="in-a-table">In a table</h2>
<table>
<thead>
<tr><th>Agent</th><th>Status</th><th>Last seen</th></tr>
</thead>
<tbody>
<tr>
<td>vigilio</td>
<td><span data-status="awake">awake</span></td>
<td><span data-text="dim">now</span></td>
</tr>
<tr>
<td>shelley</td>
<td><span data-status="sleeping">sleeping</span></td>
<td><span data-text="dim">2026-03-31 09:14</span></td>
</tr>
<tr>
<td>docfeeder</td>
<td><span data-status="blocked">blocked</span></td>
<td><span data-text="dim">waiting on PDF spec</span></td>
</tr>
<tr>
<td>molto</td>
<td><span data-status="unknown">unknown</span></td>
<td><span data-text="dim"></span></td>
</tr>
</tbody>
</table>
<h2 id="inline-in-prose">Inline in prose</h2>
<p>Vigilio is currently <span data-status="awake">awake</span> and
processing this session. Shelley is
<span data-status="sleeping">sleeping</span> — she'll wake on the next
message. The scheduled worker is
<span data-status="blocked">blocked</span> pending credentials.</p>
</main>
<!--#include virtual="/_include/footer.html" -->
</body>
</html>