feat: legacy import — packs, examples, lab, themes, docs, lineage
Import from agentic-semantic-web/ into restructured repo: - 7 packs (apache, caddy, flask, hugo, nginx, pandoc, python) - shared error pages (403-503) - 17 lab experiments (boilerplate, charts, misc) - 31 example pages (charts, components, content, layout, vault) - 2 themes (garden, trentuna stub) - 4 docs (llms.txt, vocabulary, philosophy, agent-directive) - lineage.md (Pico/Open Props/Charts.css history) - Hugo mounts for lab/ and examples/ All agentic.css references updated to asw.css. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e9895cf90d
commit
86464f3e21
100 changed files with 14700 additions and 4 deletions
69
examples/vault/status.html
Normal file
69
examples/vault/status.html
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue