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:
Ludo 2026-04-11 16:57:39 +02:00
parent e9895cf90d
commit 86464f3e21
Signed by: ludo
GPG key ID: F6E479DEFAB84D6E
100 changed files with 14700 additions and 4 deletions

View file

@ -0,0 +1,121 @@
<!doctype html>
<html lang="en">
<head>
<!--#include virtual="/_include/head.html" -->
<title>Operation Tracker — ASW Examples</title>
<meta name="description" content="Mission planning analytics stacked
column with labels, team performance bar, readiness gauges">
</head>
<body>
<!--#include virtual="/_include/nav.html" -->
<main>
<header>
<h1>Operation Tracker</h1>
<p data-text="lead">Mission planning analytics — stacked column
with labels, team performance bar, readiness gauges</p>
</header>
<div data-callout="note">
<p>"I love it when a plan comes together." — Colonel John H. Smith. The charts don't lie. The team doesn't fold. The exit is always mapped before the entry.</p>
</div>
<div data-layout="stats">
<div>
<span data-stat="value">5</span>
<span data-stat="label">Operations tracked</span>
</div>
<div>
<span data-stat="value">3</span>
<span data-stat="label">Missions active</span>
</div>
<div>
<span data-stat="value">89%</span>
<span data-stat="label">Success rate</span>
</div>
<div>
<span data-stat="value">94%</span>
<span data-stat="label">Team readiness</span>
</div>
</div>
<h2>Operation phase breakdown</h2>
<p>Each operation is divided into three phases: planning, execution, and extraction. Values are normalized — each column sums to 1.0. Leaner planning phases signal higher operational confidence. Op Echo ran hot on execution; that's the jazz.</p>
<table data-chart="column" data-chart-stacked data-chart-labels style="--chart-height: 200px">
<caption>Operation phases — time allocation (normalized)</caption>
<thead>
<tr>
<th scope="col">Op Alpha</th>
<th scope="col">Op Beta</th>
<th scope="col">Op Gamma</th>
<th scope="col">Op Delta</th>
<th scope="col">Op Echo</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Planning</th>
<td style="--size: 0.25">25%</td>
<td style="--size: 0.30">30%</td>
<td style="--size: 0.20">20%</td>
<td style="--size: 0.35">35%</td>
<td style="--size: 0.15">15%</td>
</tr>
<tr>
<th scope="row">Execution</th>
<td style="--size: 0.50">50%</td>
<td style="--size: 0.45">45%</td>
<td style="--size: 0.55">55%</td>
<td style="--size: 0.45">45%</td>
<td style="--size: 0.60">60%</td>
</tr>
<tr>
<th scope="row">Extraction</th>
<td style="--size: 0.25">25%</td>
<td style="--size: 0.25">25%</td>
<td style="--size: 0.25">25%</td>
<td style="--size: 0.20">20%</td>
<td style="--size: 0.25">25%</td>
</tr>
</tbody>
</table>
<p data-text="dim">Five operations — Op Alpha through Op Echo. Phases: planning, execution, extraction. Each column sums to 1.0.</p>
<h2>Mission success rate by operative</h2>
<p>Completed mission outcomes by team member over the last 24 months. Success is defined as: objective met, team extracted, no assets burned. Normalized against the highest performer — 96 missions, all successful.</p>
<table data-chart="bar" data-chart-spacing="3">
<caption>Mission success rate per operative — 24-month window</caption>
<tbody>
<tr><th scope="row">Hannibal</th><td style="--size: 1.000" data-value="96%">96%</td></tr>
<tr><th scope="row">B.A. Baracus</th><td style="--size: 0.948" data-value="91%">91%</td></tr>
<tr><th scope="row">Face</th><td style="--size: 0.917" data-value="88%">88%</td></tr>
<tr><th scope="row">Amy</th><td style="--size: 0.885" data-value="85%">85%</td></tr>
<tr><th scope="row">Murdock</th><td style="--size: 0.854" data-value="82%">82%</td></tr>
</tbody>
</table>
<p data-text="dim">Murdock's figure reflects missions where "unconventional" entry and exit methods were logged as anomalies rather than successes. Adjusting for tactical creativity: 97%.</p>
<h2>Readiness gauges</h2>
<p>Two headline metrics for the current operational cycle: overall mission success rate across all active ops, and aggregate team readiness based on availability, equipment status, and last debrief scores.</p>
<div style="display: flex; gap: var(--size-8); justify-content: center; flex-wrap: wrap; margin-block: var(--size-6)">
<table data-chart="radial" style="--size: 0.89">
<caption>Mission success rate</caption>
<tbody><tr><td><span>89%</span></td></tr></tbody>
</table>
<table data-chart="radial" style="--size: 0.94">
<caption>Team readiness</caption>
<tbody><tr><td><span>94%</span></td></tr></tbody>
</table>
</div>
<p data-text="dim">Gauges represent the current operational cycle. Team readiness accounts for Murdock's current clearance status — provisional, pending psych eval.</p>
</main>
<!--#include virtual="/_include/footer.html" -->
</body>
</html>