-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
320 lines (271 loc) · 6.87 KB
/
index.html
File metadata and controls
320 lines (271 loc) · 6.87 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<!--
---
title: "Waveframe Labs — Canonical Entry"
short_title: "Waveframe Labs"
version: "2.1.0"
status: "Active"
type: "website"
author: "Waveframe Labs"
maintainer: "Waveframe Labs"
license: "CC-BY-4.0"
policy_version: "ARI-Metadata-3.0.2"
ai_assisted: "partial"
---
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Waveframe Labs</title>
<meta name="description" content="Stop AI actions before they execute." />
<link rel="icon" type="image/png" href="favicon-32x32.png" />
<style>
:root{
--bg:#0b0c10; --card:#14161b; --ink:#e7eaef; --muted:#9aa3b2;
--edge:#22242b; --accent:#ff7a18; --accent-hover:#e56b12;
--maxw:1080px; --rad:12px;
}
*{box-sizing:border-box}
html,body{
margin:0;padding:0;
background:var(--bg);color:var(--ink);
font-family:ui-sans-serif,system-ui;
}
.wrap{max-width:var(--maxw);margin:0 auto;padding:14px 20px;}
a{text-decoration:none;color:inherit;}
a:hover{color:var(--accent);}
/* HEADER */
.hdr{
padding:18px 24px;
border-bottom:1px solid var(--edge);
background:rgba(20,22,27,.9);
display:flex;justify-content:space-between;align-items:center;
position:sticky;top:0;z-index:100;
}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;}
.topnav{display:flex;gap:24px;font-size:.9rem;}
.topnav a{opacity:.7;}
.topnav a:hover{opacity:1;color:var(--accent);}
/* HERO */
.hero-banner{
width:100%;
margin:24px 0;
border-radius:12px;
border:1px solid var(--edge);
}
/* CARD */
.card{
background:var(--card);
border:1px solid var(--edge);
border-radius:var(--rad);
padding:24px;
margin-bottom:28px;
}
/* TYPO */
h1{font-size:2rem;margin-bottom:12px;}
h2{margin-bottom:10px;}
p{color:var(--muted);line-height:1.6;}
/* INSTALL BLOCK */
.install{
background:#0f1116;
border:1px solid var(--edge);
padding:16px;
border-radius:10px;
margin-top:16px;
font-family:monospace;
}
/* BUTTONS */
.btn{
display:inline-block;
margin-top:12px;
margin-right:10px;
padding:10px 16px;
border-radius:6px;
background:var(--accent);
color:#fff;
font-weight:600;
}
.btn.secondary{
background:transparent;
border:1px solid var(--edge);
}
/* GRID */
.grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
}
.decision{
background:#0f1116;
border:1px solid var(--edge);
padding:16px;
border-radius:10px;
}
.bad{color:#ff4d4d;}
.good{color:#3ddc84;}
@media(max-width:800px){
.grid{grid-template-columns:1fr;}
}
/* FOOTER */
footer{
margin-top:60px;
border-top:1px solid var(--edge);
background:var(--card);
padding:40px 20px 20px;
}
.footer-grid{
display:grid;
grid-template-columns:1.5fr 1fr 1fr;
gap:32px;
max-width:var(--maxw);
margin:0 auto;
}
.ft-links a{display:block;color:var(--muted);margin-bottom:10px;}
.ft-links a:hover{color:var(--accent);}
.ft-bottom{
max-width:var(--maxw);
margin:40px auto 0;
padding-top:20px;
border-top:1px solid var(--edge);
display:flex;
justify-content:space-between;
color:var(--muted);
font-size:0.8rem;
}
</style>
</head>
<body>
<div class="wrap">
<header class="hdr">
<div class="brand">
<img src="waveframe-logo-mark.png" width="28">
Waveframe Labs
</div>
<nav class="topnav">
<a href="index.html">Home</a>
<a href="hierarchy.html">How It Works</a>
<a href="tools.html">Tools</a>
<a href="case-studies.html">Examples</a>
<a href="updates.html">Updates</a>
</nav>
</header>
<img src="master-banner-v2.PNG" class="hero-banner">
<!-- HERO -->
<section class="card">
<h1>Stop AI actions before they execute</h1>
<p>
Execution control for AI systems.
</p>
<p>
AI systems can:
<br>• move money
<br>• deploy code
<br>• approve decisions
<br><br>
If those actions are wrong — they execute anyway.
</p>
<p>
This system decides:
<br>✓ allowed
<br>✗ blocked before execution
</p>
<div class="install">
pip install cricore
<br><span style="color:#9aa3b2;">Latest version: 0.12.0</span>
</div>
<a class="btn" href="https://github.com/Waveframe-Labs/governed-finance-mutation-demo" target="_blank">View demo</a>
<a class="btn secondary" href="https://github.com/Waveframe-Labs/CRI-CORE" target="_blank">View kernel</a>
</section>
<!-- PRIMARY SCENARIO -->
<section class="card">
<h2>Example: Financial action</h2>
<div class="grid">
<div class="decision">
<p><strong>Action</strong><br>
Reallocate $2M from Marketing → Operations</p>
<p class="bad"><strong>Result:</strong> ❌ BLOCKED</p>
<p>Reason:<br>
Role separation violation</p>
<p>Status:<br>
Never executed</p>
</div>
<div class="decision">
<p><strong>Same action (valid approval)</strong></p>
<p class="good"><strong>Result:</strong> ✔ ALLOWED</p>
<p>Reason:<br>
All requirements satisfied</p>
<p>Status:<br>
Executed</p>
</div>
</div>
</section>
<!-- MULTI SCENARIOS -->
<section class="card">
<h2>Other outcomes</h2>
<div class="grid">
<div class="decision">
<p><strong>Deploy production build</strong></p>
<p class="bad">❌ BLOCKED</p>
<p>Missing approval</p>
</div>
<div class="decision">
<p><strong>Modify permissions</strong></p>
<p class="bad">❌ BLOCKED</p>
<p>Insufficient authority</p>
</div>
<div class="decision">
<p><strong>Update billing plan</strong></p>
<p class="good">✔ ALLOWED</p>
<p>Valid authorization</p>
</div>
<div class="decision">
<p><strong>Replay approval</strong></p>
<p class="bad">❌ BLOCKED</p>
<p>Integrity violation</p>
</div>
</div>
</section>
<!-- WHERE IT RUNS -->
<section class="card">
<h2>Where this runs</h2>
<p>CI/CD pipelines → block unsafe deploys</p>
<p>Finance systems → block unauthorized transactions</p>
<p>Agent frameworks → block invalid actions</p>
</section>
</div>
<footer>
<div class="footer-grid">
<div>
<img src="waveframe-logo-mark.png" width="24">
<div style="font-weight:700;margin:8px 0;">Waveframe Labs</div>
<p style="font-size:0.9rem;">
Execution control for AI systems.
</p>
</div>
<div>
<h4>Product</h4>
<div class="ft-links">
<a href="hierarchy.html">How It Works</a>
<a href="tools.html">Tools</a>
<a href="case-studies.html">Examples</a>
</div>
</div>
<div>
<h4>Connect</h4>
<div class="ft-links">
<a href="mailto:swright@waveframelabs.org">Email</a>
<a href="https://github.com/Waveframe-Labs" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="ft-bottom">
<span>© <span id="year"></span> Waveframe Labs</span>
<span>Execution control for AI systems</span>
</div>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>