-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (156 loc) · 5.88 KB
/
Copy pathindex.html
File metadata and controls
165 lines (156 loc) · 5.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Operate and inspect Clawsembly's browser-local OpenClaw kernel contract."
/>
<title>Clawsembly · Kernel console</title>
</head>
<body>
<div class="shell">
<header class="topbar">
<a class="wordmark" href="/" aria-label="Clawsembly home">
<span class="wordmark-mark" aria-hidden="true">C/</span>
<span>Clawsembly</span>
</a>
<div class="runtime-label">
<span class="signal" aria-hidden="true"></span>
browser-local kernel
</div>
<nav class="topbar-actions" aria-label="Primary">
<a class="source-link" href="/onboard.html">Use OpenClaw →</a>
<a
class="source-link"
href="https://github.com/haya-inc/clawsembly-kernel"
>Source ↗</a>
</nav>
</header>
<aside class="rail" aria-label="Kernel layers">
<span class="rail-label">Execution stack</span>
<ol>
<li data-layer="active"><span>01</span> Browser</li>
<li data-layer="active"><span>02</span> WASIX</li>
<li data-layer="active"><span>03</span> Node personality</li>
<li><span>04</span> OpenClaw</li>
</ol>
<p class="rail-note">
No remote VM.<br />
No patched OpenClaw.
</p>
</aside>
<main>
<section class="intro" aria-labelledby="console-title">
<p class="eyebrow">Kernel console / contract surface</p>
<h1 id="console-title">
OpenClaw,<br />
<span>inside the browser.</span>
</h1>
<p class="lede">
This local console runs the artifact-derived SQLite contract
against official SQLite Wasm, crosses a fresh Worker boundary,
and verifies the surviving OPFS state.
</p>
</section>
<section class="probe-panel" aria-labelledby="probe-title">
<div class="panel-heading">
<div>
<p class="section-index">01 / Local proof</p>
<h2 id="probe-title">State persistence contract</h2>
</div>
<output id="status" data-state="idle">
<span class="status-dot" aria-hidden="true"></span>
Idle
</output>
</div>
<div class="metrics" aria-label="Probe results">
<div>
<span class="metric-label">Worker generations</span>
<strong id="worker-count">—</strong>
</div>
<div>
<span class="metric-label">Schema objects</span>
<strong id="schema-count">—</strong>
</div>
<div>
<span class="metric-label">OPFS recovery</span>
<strong id="persistence-state">unverified</strong>
</div>
</div>
<div class="probe-actions">
<button id="run" class="primary-action" type="button">
<span>Run contract</span>
<span aria-hidden="true">→</span>
</button>
<button id="download" class="quiet-action" type="button" disabled>
Download evidence
</button>
</div>
<details class="evidence">
<summary>
<span>Raw evidence</span>
<span class="summary-hint">JSON / version-bound</span>
</summary>
<pre id="result" aria-live="polite"></pre>
</details>
</section>
<section class="boundary-section" aria-labelledby="boundary-title">
<div class="section-heading">
<p class="section-index">02 / Authority model</p>
<h2 id="boundary-title">What crosses the boundary</h2>
</div>
<div class="boundary-grid">
<article>
<span class="boundary-state allowed">guest</span>
<h3>Operation capability</h3>
<p>
Exact endpoint, exact model, bounded request, short TTL, and
host-controlled revocation.
</p>
</article>
<article>
<span class="boundary-state denied">host only</span>
<h3>Provider credential</h3>
<p>
The model API key, inference process, and model weights never
enter either browser guest.
</p>
</article>
<article>
<span class="boundary-state allowed">OPFS</span>
<h3>Mutable workspace</h3>
<p>
Generation-addressed commits verify the manifest and every
file hash before mounting restored state.
</p>
</article>
</div>
</section>
<section class="handoff" aria-labelledby="handoff-title">
<p class="section-index">03 / Reproduce</p>
<h2 id="handoff-title">Bring the entire proof home.</h2>
<p>
The public source-build lane pins OpenClaw, Edge.js, Wasmer,
SQLite, llama.cpp, and Qwen. For local operation, start with the
self-host guide and verify every digest before launch.
</p>
<div class="handoff-links">
<a
href="https://github.com/haya-inc/clawsembly-kernel/blob/main/docs/self-host.md"
>Self-host guide <span>→</span></a>
<a
href="https://github.com/haya-inc/clawsembly-kernel/blob/main/NORTH_STAR.md"
>Definition of done <span>→</span></a>
</div>
</section>
</main>
<footer>
<span>Clawsembly Kernel</span>
<span>MIT · experimental</span>
</footer>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>