-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathawo.html
More file actions
220 lines (197 loc) · 6.85 KB
/
awo.html
File metadata and controls
220 lines (197 loc) · 6.85 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
<!--
---
title: "Aurora Workflow Orchestration · Waveframe Labs"
short_title: "AWO"
version: "1.0.0"
status: "Active"
type: "website"
author: "Waveframe Labs"
maintainer: "Waveframe Labs"
license: "CC-BY-4.0"
policy_version: "ARI-Metadata-2.0.0"
dependencies:
- "Aurora Ecosystem — Unified System Reference v2.0.0"
ai_assisted: "partial"
ai_assistance_details: "AWO page normalized for canonical layer numbering, authority boundaries, and site-wide navigation consistency."
---
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Methodology · Waveframe Labs</title>
<meta name="description" content="Aurora Workflow Orchestration (AWO) defines the methodology layer of the Aurora Ecosystem, structuring reproducible and traceable AI–human research workflows." />
<link rel="icon" type="image/png" href="favicon-32x32.png" />
<link rel="canonical" href="https://waveframelabs.org/awo.html" />
<meta property="og:title" content="Aurora Workflow Orchestration (AWO)" />
<meta property="og:description" content="Methodology layer of the Aurora Ecosystem." />
<meta property="og:type" content="website" />
<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,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
a{color:inherit;text-decoration:none;transition:color .2s;}
a:hover{color:var(--accent);}
.wrap{max-width:var(--maxw);margin:0 auto;padding:14px 20px 0;}
/* --- Header (normalized) --- */
.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;
border-left:1px solid var(--edge); border-right:1px solid var(--edge);
border-radius:0 0 12px 12px;
}
.brand{display:flex;align-items:center;gap:12px;}
.brand-text{font-size:1.2rem;font-weight:700;letter-spacing:-.02em;}
.topnav{display:flex;gap:24px;font-size:.9rem;font-weight:500;}
.topnav a{opacity:.7;}
.topnav a:hover{opacity:1;color:var(--accent);}
.active-link{opacity:1!important;color:var(--accent)!important;}
@media(max-width:850px){
.hdr{flex-direction:column;align-items:flex-start;gap:14px;}
.topnav{flex-wrap:wrap;gap:18px;}
}
/* --- Typography --- */
h2{margin:0 0 10px;font-size:1.5rem;}
h3{margin:0 0 .55rem;font-size:1.15rem;}
p{line-height:1.65;color:var(--muted); margin-bottom:1rem;}
p strong{color:var(--ink);}
.kicker{
color:var(--accent);
font-size:.75rem;
font-weight:700;
text-transform:uppercase;
letter-spacing:1px;
margin-bottom:8px;
display:block;
}
.card{
background:var(--card);
border:1px solid var(--edge);
border-radius:var(--rad);
padding:24px;
}
/* --- Footer --- */
footer{
margin-top:60px;
border-top:1px solid var(--edge);
padding-top:18px;
color:var(--muted);
font-size:.85rem;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:10px;
}
</style>
</head>
<body>
<div class="wrap">
<!-- HEADER -->
<header class="hdr">
<div class="brand">
<img src="waveframe-logo-mark.png" width="28" height="28" style="border-radius:4px;">
<div class="brand-text">Waveframe Labs</div>
</div>
<nav class="topnav">
<a href="index.html">Home</a>
<a href="hierarchy.html">Hierarchy</a>
<a href="doctrine.html">Doctrine</a>
<a class="active-link" href="awo.html">Methodology</a>
<a href="tools.html">Tools</a>
<a href="updates.html">Updates</a>
</nav>
</header>
<!-- HERO -->
<section class="card" style="margin-bottom:28px;">
<span class="kicker">Layer 1 — Method</span>
<h2>Aurora Workflow Orchestration (AWO)</h2>
<p>
Aurora Workflow Orchestration defines how research conducted under the Aurora Ecosystem
is <strong>structured and recorded</strong> so that it remains traceable, reconstructible,
and reviewable over time.
</p>
</section>
<!-- WHAT IS AWO -->
<section style="margin-bottom:32px;">
<h2 style="color:var(--accent);">What AWO Defines</h2>
<p>
AWO translates epistemic and governance requirements into a repeatable methodology.
It specifies workflow phases, artifact classes, and role boundaries without enforcing
correctness or legitimacy.
</p>
<p>
AWO is procedural, not normative. It does not define truth, authority, or compliance outcomes.
</p>
</section>
<!-- CORE RESPONSIBILITIES -->
<section style="margin-bottom:32px;">
<h2 style="color:var(--accent);">Core Responsibilities</h2>
<div class="card">
<ul style="color:var(--muted); line-height:1.65;">
<li>Define workflow phases and valid transitions</li>
<li>Specify required artifact classes and minimum structure</li>
<li>Encode role separation boundaries (e.g., no self-approval)</li>
<li>Integrate Neurotransparency requirements at defined workflow points</li>
<li>Produce deterministic inputs for downstream validation and enforcement</li>
</ul>
</div>
</section>
<!-- POSITION IN STACK -->
<section style="margin-bottom:32px;">
<h2 style="color:var(--accent);">Position in the Aurora Stack</h2>
<p>
AWO sits between governance and enforcement. It structures research <em>before</em>
any validation or execution occurs.
</p>
<div class="card">
<ul style="color:var(--muted); line-height:1.6;">
<li><strong>L0 — Governance & Epistemics:</strong> ARI, NTD, NTS define authority and necessity</li>
<li><strong>L1 — Method:</strong> AWO structures workflows and artifacts</li>
<li><strong>L4 — Enforcement:</strong> CRI-CORE validates artifacts against upstream contracts</li>
<li><strong>L6 — Research Outputs:</strong> Case studies demonstrate AWO in practice</li>
</ul>
</div>
</section>
<!-- REFERENCES -->
<section style="margin-bottom:32px;">
<h2 style="color:var(--accent);">Specification & Archive</h2>
<div class="card">
<ul style="color:var(--muted); line-height:1.6;">
<li>
<strong>Concept DOI (Zenodo):</strong>
<a href="https://doi.org/10.5281/zenodo.17013612" target="_blank">
10.5281/zenodo.17013612
</a>
</li>
<li>
<strong>Repository:</strong>
<a href="https://github.com/Waveframe-Labs/Aurora-Workflow-Orchestration" target="_blank">
Waveframe-Labs/Aurora-Workflow-Orchestration
</a>
</li>
</ul>
</div>
</section>
</div>
<!-- FOOTER -->
<footer>
<span>© <span id="year"></span> Waveframe Labs</span>
<span>Governed under the Aurora Research Initiative (ARI)</span>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>