-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhierarchy.html
More file actions
227 lines (196 loc) · 5.31 KB
/
hierarchy.html
File metadata and controls
227 lines (196 loc) · 5.31 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
<!--
---
title: "How It Works · Waveframe Labs"
short_title: "How It Works"
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"
dependencies:
- "Aurora Ecosystem — Unified System Reference v2.0.0"
ai_assisted: "partial"
---
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>How It Works · Waveframe Labs</title>
<meta name="description" content="How actions are evaluated before execution in AI-driven systems." />
<link rel="icon" type="image/png" href="favicon-32x32.png" />
<link rel="canonical" href="https://waveframelabs.org/hierarchy.html" />
<style>
:root{
--bg:#0b0c10; --card:#14161b; --ink:#e7eaef; --muted:#9aa3b2;
--edge:#22242b; --accent:#ff7a18; --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,-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:14px 20px 72px;}
.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-size:1.2rem;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:12px;
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:12px;
padding:18px;
margin-top:14px;
}
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;
margin-bottom:8px;
display:block;
}
.result-allow{color:#4cd964;}
.result-block{color:#ff3b30;}
footer{
margin-top:48px;
border-top:1px solid var(--edge);
padding-top:18px;
color:var(--muted);
font-size:.85rem;
display:flex; justify-content:space-between;
}
</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 class="active-link" 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>
<!-- HERO -->
<section class="hero">
<span class="kicker">Execution Pipeline</span>
<h1>What happens when an AI tries to take an action?</h1>
<p>
When an AI proposes something — move money, deploy code, approve a decision —
that action should not execute immediately.
</p>
<p>
It must pass through a control layer that decides:
</p>
<p>
<span class="result-allow">✓ allow the action</span><br>
<span class="result-block">✗ block it before execution</span>
</p>
</section>
<!-- PIPELINE -->
<section>
<h2>The Execution Pipeline</h2>
<div class="card">
<h3>1. Define constraints</h3>
<p>
Rules are defined as enforceable contracts:
required roles, approvals, and constraints.
</p>
<p>
These rules determine what must be true before an action is allowed.
</p>
</div>
<div class="card">
<h3>2. Normalize the action</h3>
<p>
The proposed action is converted into a structured format:
who initiated it, what it changes, and what evidence supports it.
</p>
</div>
<div class="card">
<h3>3. Evaluate</h3>
<p>
The action is passed into CRI-CORE.
</p>
<p>
It checks:
roles, approvals, integrity, and required artifacts.
</p>
</div>
<div class="card">
<h3>4. Decide</h3>
<p>
The system returns a single result:
</p>
<p>
<span class="result-allow">✓ allowed</span><br>
<span class="result-block">✗ blocked</span>
</p>
<p>
If blocked, the action never executes.
</p>
</div>
</section>
<!-- POSITIONING -->
<section>
<h2>Where this sits</h2>
<p>
This pipeline sits directly at the execution boundary —
the moment a decision becomes a real-world action.
</p>
<p>
Everything upstream can recommend, generate, or suggest.
</p>
<p>
This layer decides whether anything actually happens.
</p>
</section>
<!-- COMPONENTS -->
<section>
<h2>Components</h2>
<div class="card">
<p><strong>Contract Compiler</strong> → defines enforceable rules</p>
<p><strong>Proposal Normalizer</strong> → structures actions</p>
<p><strong>CRI-CORE</strong> → evaluates and decides</p>
</div>
</section>
<footer>
<span>© <span id="year"></span> Waveframe Labs</span>
<span>Execution control for AI systems</span>
</footer>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>