81 lines
2.0 KiB
HTML
81 lines
2.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>LangGraph Operator Surface</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: dark;
|
|
--bg: #0d1117;
|
|
--panel: #161b22;
|
|
--text: #e6edf3;
|
|
--muted: #9da7b3;
|
|
--line: #2d333b;
|
|
--accent: #6ed0ff;
|
|
}
|
|
* { box-sizing: border-box; }
|
|
body {
|
|
margin: 0;
|
|
font-family: "SF Pro Text", "Segoe UI", Arial, sans-serif;
|
|
background: radial-gradient(circle at top, #162434 0%, var(--bg) 60%);
|
|
color: var(--text);
|
|
}
|
|
main {
|
|
max-width: 860px;
|
|
margin: 0 auto;
|
|
padding: 32px 18px 48px;
|
|
}
|
|
h1 {
|
|
margin: 0 0 12px;
|
|
font-size: 32px;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
}
|
|
p, li {
|
|
line-height: 1.6;
|
|
color: var(--muted);
|
|
}
|
|
.panel {
|
|
margin-top: 24px;
|
|
padding: 18px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 18px;
|
|
background: rgba(22, 27, 34, 0.92);
|
|
}
|
|
.label {
|
|
color: var(--accent);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
}
|
|
a {
|
|
color: var(--text);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>LangGraph Overlay</h1>
|
|
<p>
|
|
LangGraph stays in scope as the optional orchestration layer around
|
|
ZeroClaw. It is kept visible to operators without becoming the default
|
|
runtime path for Kill_LIFE.
|
|
</p>
|
|
<div class="panel">
|
|
<div class="label">Current posture</div>
|
|
<ul>
|
|
<li>operator-visible and documented</li>
|
|
<li>kept separate from the stable repo-local CI gate</li>
|
|
<li>reactivated as a concrete runtime only when a dedicated graph app exists</li>
|
|
</ul>
|
|
</div>
|
|
<div class="panel">
|
|
<div class="label">Runbook</div>
|
|
<p><a href="/README.md">Open the LangGraph README</a></p>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|