-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcase-studies.html
More file actions
190 lines (159 loc) · 4.49 KB
/
case-studies.html
File metadata and controls
190 lines (159 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Examples · Waveframe Labs</title>
<meta name="description" content="Real examples of how AI-generated actions are evaluated and either allowed or blocked before execution." />
<link rel="icon" type="image/png" href="favicon-32x32.png" />
<link rel="canonical" href="https://waveframelabs.org/case-studies.html" />
<style>
:root{
--bg:#0b0c10; --card:#14161b; --ink:#e7eaef; --muted:#9aa3b2;
--edge:#22242b; --accent:#ff7a18; --maxw:1080px; --rad:18px;
}
*{box-sizing:border-box}
html,body{
margin:0; padding:0;
background:var(--bg); color:var(--ink);
font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
a{color:inherit;text-decoration:none;}
a:hover{color:var(--accent);}
.wrap{max-width:var(--maxw);margin:0 auto;padding:20px 20px 72px}
/* Header (aligned with index) */
.hdr{
padding:18px 24px;
border-bottom:1px solid var(--edge);
background:rgba(20,22,27,.88);
backdrop-filter:blur(12px);
display:flex; justify-content:space-between; align-items:center;
position:sticky; top:0; z-index:100; margin-bottom:28px;
}
.brand{display:flex;align-items:center;gap:12px;}
.brand-text{font-weight:700;}
.topnav{display:flex;gap:24px;font-size:.9rem;}
.topnav a{opacity:.7;}
.active-link{opacity:1!important;color:var(--accent)!important;}
.hero{
margin-bottom:22px;
padding:22px;
border:1px solid var(--edge);
border-radius:18px;
background:linear-gradient(180deg,rgba(255,122,24,.10),rgba(0,0,0,0));
}
.card{
background:var(--card);
border:1px solid var(--edge);
border-radius:18px;
padding:18px;
margin-top:16px;
}
h1{margin:0 0 .6rem;}
h2{margin-top:24px;}
p{color:var(--muted); line-height:1.6;}
.kicker{
color:var(--accent);
font-size:.75rem;
text-transform:uppercase;
}
.result-allow{color:#4cd964;}
.result-block{color:#ff3b30;}
footer{
margin-top:40px;
color:var(--muted);
font-size:.9rem;
}
</style>
</head>
<body>
<div class="wrap">
<header class="hdr">
<div class="brand">
<img src="waveframe-logo-mark.png" width="28">
<div class="brand-text">Waveframe Labs</div>
</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 class="active-link" href="case-studies.html">Examples</a>
<a href="updates.html">Updates</a>
</nav>
</header>
<!-- HERO -->
<section class="hero">
<span class="kicker">Real Behavior</span>
<h1>Examples</h1>
<p>
These examples show what happens when AI-generated actions reach the execution boundary.
</p>
<p>
Each action is evaluated and either allowed to execute or blocked before it happens.
</p>
</section>
<!-- EXAMPLE 1 -->
<section>
<h2>Example: Budget Reallocation</h2>
<div class="card">
<p><strong>Proposed action:</strong></p>
<p>
AI suggests reallocating $2M from Marketing to Operations.
</p>
<p><strong>Declared roles:</strong></p>
<p class="muted">
Proposer (AI) · Responsible (Finance Manager) · Accountable (CFO)
</p>
<p><strong>Evaluation:</strong></p>
<p class="muted">
Required approval missing. Separation of duties violated.
</p>
<p><strong>Result:</strong></p>
<p class="result-block">✗ Blocked before execution</p>
</div>
<div class="card">
<p><strong>Same action (corrected):</strong></p>
<p>
CFO approval added. All required roles satisfied.
</p>
<p><strong>Result:</strong></p>
<p class="result-allow">✓ Allowed to execute</p>
</div>
</section>
<!-- EXAMPLE 2 -->
<section>
<h2>Example: Code Deployment</h2>
<div class="card">
<p><strong>Proposed action:</strong></p>
<p>
AI attempts to deploy production code.
</p>
<p><strong>Evaluation:</strong></p>
<p class="muted">
Missing validation artifacts and approval.
</p>
<p><strong>Result:</strong></p>
<p class="result-block">✗ Blocked before execution</p>
</div>
</section>
<!-- CTA -->
<section style="margin-top:28px;">
<h2>Try it</h2>
<p>
These examples are implemented using CRI-CORE.
</p>
<p>
<a href="tools.html" style="color:var(--accent); font-weight:600;">
View tools →
</a>
</p>
</section>
<footer>
<span>© <span id="year"></span> Waveframe Labs</span>
</footer>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>