@neuroverseos/governance 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{build-UTVDGHB3.js → build-EGBGZFIJ.js} +2 -2
- package/dist/chunk-AEVT7DSZ.js +1208 -0
- package/dist/chunk-VGFDMPVB.js +436 -0
- package/dist/cli/neuroverse.cjs +2288 -211
- package/dist/cli/neuroverse.js +41 -90
- package/dist/cli/radiant.cjs +2058 -0
- package/dist/cli/radiant.d.cts +25 -0
- package/dist/cli/radiant.d.ts +25 -0
- package/dist/cli/radiant.js +422 -0
- package/dist/{derive-42IJW7JI.js → derive-7Y7YWVLU.js} +2 -2
- package/dist/index.js +28 -28
- package/dist/lenses-K5FVSALR.js +13 -0
- package/dist/radiant/index.cjs +1700 -0
- package/dist/radiant/index.d.cts +1163 -0
- package/dist/radiant/index.d.ts +1163 -0
- package/dist/radiant/index.js +75 -0
- package/dist/worlds/behavioral-demo.nv-world.md +50 -3
- package/package.json +7 -2
- package/dist/{chunk-735Z3HA4.js → chunk-FHXXD2TI.js} +3 -3
- package/dist/{configure-ai-5MP5DWTT.js → configure-ai-LL3VAPQW.js} +3 -3
|
@@ -0,0 +1,436 @@
|
|
|
1
|
+
// src/radiant/lenses/auki-builder.ts
|
|
2
|
+
var AUKI_VANGUARD_FRAME = {
|
|
3
|
+
domains: [
|
|
4
|
+
"future-foresight",
|
|
5
|
+
"narrative-dynamics",
|
|
6
|
+
"shared-prosperity"
|
|
7
|
+
],
|
|
8
|
+
overlaps: [
|
|
9
|
+
{
|
|
10
|
+
domains: ["future-foresight", "narrative-dynamics"],
|
|
11
|
+
emergent_state: "Inspiration",
|
|
12
|
+
description: "Visionary leaders inspire action by painting a vivid picture of a better future, helping people understand how to get there together. Emerges when long-range thinking meets language that rallies."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
domains: ["narrative-dynamics", "shared-prosperity"],
|
|
16
|
+
emergent_state: "Trust",
|
|
17
|
+
description: "Built through authentic storytelling and consistent delivery on promises, creating a community where contributors feel secure in their contributions. Emerges when clear intent meets fair distribution \u2014 coalitions form here."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
domains: ["shared-prosperity", "future-foresight"],
|
|
21
|
+
emergent_state: "Hope",
|
|
22
|
+
description: "Propels decentralized communities toward a collective future where resources are equitably distributed and success is shared by all. Emerges when long-term infrastructure is architected for collective benefit \u2014 the DePIN / Intercognitive posture."
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
center_identity: "Collective Vanguard Leader",
|
|
26
|
+
evaluation_questions: [
|
|
27
|
+
"What long-range architectural thinking is present? Systems design, scenario planning, critical thinking, ethical judgment \u2014 which of these is visible, which is weak?",
|
|
28
|
+
"What communication and meaning-making is happening? Storytelling, cultural sensitivity, audience engagement, persuasive writing \u2014 who is telling the story of how the pieces connect?",
|
|
29
|
+
"What collaborative and fairness work is happening? Stakeholder management, partnership development, incentive alignment, community building \u2014 who is building coalitions and making sure value flows equitably?",
|
|
30
|
+
"Which overlap states surface \u2014 Inspiration (vision + narrative), Trust (narrative + fairness), Hope (fairness + long-term thinking)?",
|
|
31
|
+
"Is the integration complete (Collective Vanguard Leader manifests across all three dimensions) or is one dimension absent / weak?",
|
|
32
|
+
"If one dimension is weak, what specific skill inside it is the lowest-friction activation point?"
|
|
33
|
+
],
|
|
34
|
+
scoring_rubric: `For any Auki activity, identify which specific skills are strongly present, which are weak, which are absent. Cite specific evidence for each. Name the overlap emergent states that surface using their plain-English names (Inspiration, Trust, Hope). Do not surface the bucket names (Future Foresight, Narrative Dynamics, Shared Prosperity) in the output \u2014 those are internal reasoning scaffolds, not reader-facing labels. Translate bucket-level findings into skill-level observations: not "Future Foresight is present" but "the architectural thinking is strong \u2014 the systems design is clear"; not "Shared Prosperity is weak" but "partnership development is missing" or "incentive alignment hasn't been established." Center identity (Collective Vanguard Leader) may be named sparingly, only when all three dimensions fully integrate.`,
|
|
35
|
+
/**
|
|
36
|
+
* The skills inside each domain. These are the OUTPUT-FACING vocabulary —
|
|
37
|
+
* the observable behaviors and capabilities readers understand. When the
|
|
38
|
+
* AI renders findings, it uses these skill names, not the bucket names.
|
|
39
|
+
*
|
|
40
|
+
* From Kirsten\'s original vanguard diagram (see exemplars/vanguard-diagram).
|
|
41
|
+
*/
|
|
42
|
+
domain_skills: {
|
|
43
|
+
"future-foresight": [
|
|
44
|
+
"strategic thinking",
|
|
45
|
+
"systems design",
|
|
46
|
+
"scenario planning",
|
|
47
|
+
"futurism and trend analysis",
|
|
48
|
+
"critical thinking",
|
|
49
|
+
"innovative problem-solving",
|
|
50
|
+
"data-driven decision-making",
|
|
51
|
+
"ethical judgment and governance",
|
|
52
|
+
"risk assessment and mitigation",
|
|
53
|
+
"curiosity and open-mindedness"
|
|
54
|
+
],
|
|
55
|
+
"narrative-dynamics": [
|
|
56
|
+
"storytelling and narrative crafting",
|
|
57
|
+
"behavioral psychology and memetics",
|
|
58
|
+
"emotional intelligence",
|
|
59
|
+
"communication and presentation skills",
|
|
60
|
+
"cultural sensitivity and adaptation",
|
|
61
|
+
"social media and viral messaging strategy",
|
|
62
|
+
"brand building and positioning",
|
|
63
|
+
"persuasive writing",
|
|
64
|
+
"visualization and design thinking",
|
|
65
|
+
"audience analysis and engagement"
|
|
66
|
+
],
|
|
67
|
+
"shared-prosperity": [
|
|
68
|
+
"stakeholder management",
|
|
69
|
+
"collaborative leadership",
|
|
70
|
+
"conflict resolution and mediation",
|
|
71
|
+
"economic and tokenomic design",
|
|
72
|
+
"incentive alignment",
|
|
73
|
+
"community building and management",
|
|
74
|
+
"inclusivity and equity advocacy",
|
|
75
|
+
"partnership development",
|
|
76
|
+
"transparency and accountability",
|
|
77
|
+
"negotiation and diplomacy"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
/**
|
|
81
|
+
* The translation rule: bucket names stay internal; skills + overlap
|
|
82
|
+
* state names surface in output. This is enforced by both the
|
|
83
|
+
* output-directive (guidance to the AI) and the forbidden-phrases list
|
|
84
|
+
* (renderer-level rejection of any output leaking bucket names).
|
|
85
|
+
*/
|
|
86
|
+
output_translation: {
|
|
87
|
+
never_surface_in_output: [
|
|
88
|
+
"Future Foresight",
|
|
89
|
+
"Narrative Dynamics",
|
|
90
|
+
"Shared Prosperity"
|
|
91
|
+
],
|
|
92
|
+
surface_freely: [
|
|
93
|
+
"Inspiration",
|
|
94
|
+
"Trust",
|
|
95
|
+
"Hope"
|
|
96
|
+
// plus any specific skill name from domain_skills above
|
|
97
|
+
],
|
|
98
|
+
surface_sparingly: ["Collective Vanguard Leader"],
|
|
99
|
+
translation_examples: [
|
|
100
|
+
{
|
|
101
|
+
internal_reasoning: "Future Foresight is strong",
|
|
102
|
+
external_expression: "the architectural thinking is strong; the systems design is clear"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
internal_reasoning: "Shared Prosperity is weak",
|
|
106
|
+
external_expression: "partnership development is missing; no one has established incentive alignment across teams"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
internal_reasoning: "Narrative Dynamics is absent",
|
|
110
|
+
external_expression: "no one is telling the story of how these pieces connect; the audience does not see the shared vision yet"
|
|
111
|
+
}
|
|
112
|
+
]
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
var AUKI_VOCABULARY = {
|
|
116
|
+
proper_nouns: [
|
|
117
|
+
"$AUKI",
|
|
118
|
+
"Posemesh",
|
|
119
|
+
"Auki Labs",
|
|
120
|
+
"Posemesh Foundation",
|
|
121
|
+
"Intercognitive Foundation",
|
|
122
|
+
"Intercognitive",
|
|
123
|
+
"Sixth Protocol",
|
|
124
|
+
"Fifth Protocol",
|
|
125
|
+
"DePIN",
|
|
126
|
+
"Cactus",
|
|
127
|
+
"Terri",
|
|
128
|
+
"Mech Jagger",
|
|
129
|
+
"peaq",
|
|
130
|
+
"Mawari",
|
|
131
|
+
"GEODNET",
|
|
132
|
+
"Nine Pillars of AI Accessibility",
|
|
133
|
+
"the real world web",
|
|
134
|
+
"the posemesh"
|
|
135
|
+
],
|
|
136
|
+
// Generic term → Auki-native replacement
|
|
137
|
+
preferred: {
|
|
138
|
+
device: "participant",
|
|
139
|
+
client: "participant",
|
|
140
|
+
"coordinate system": "domain",
|
|
141
|
+
"QR code for calibration": "portal",
|
|
142
|
+
"work request": "task",
|
|
143
|
+
"location alignment": "calibrate",
|
|
144
|
+
"sensor reading": "observation",
|
|
145
|
+
"physical environment": "environment",
|
|
146
|
+
"the network (public-facing)": "the real world web",
|
|
147
|
+
"the network (technical)": "the posemesh",
|
|
148
|
+
"coordination between devices": "spatial orchestration",
|
|
149
|
+
"buying services": "burning tokens for credits",
|
|
150
|
+
"full autonomy": "the full stack",
|
|
151
|
+
"non-GPS environments": "GPS-denied environments",
|
|
152
|
+
"our partners": "the Intercognitive coalition (Auki, peaq, Mawari, GEODNET)"
|
|
153
|
+
},
|
|
154
|
+
architecture: [
|
|
155
|
+
"domain",
|
|
156
|
+
"domain cluster",
|
|
157
|
+
"domain manager",
|
|
158
|
+
"domain owner",
|
|
159
|
+
"semantic layer",
|
|
160
|
+
"topography layer",
|
|
161
|
+
"rendering layer",
|
|
162
|
+
"partitions",
|
|
163
|
+
"observations",
|
|
164
|
+
"portals",
|
|
165
|
+
"participant",
|
|
166
|
+
"supply participant",
|
|
167
|
+
"demand participant",
|
|
168
|
+
"capabilities",
|
|
169
|
+
"tasks",
|
|
170
|
+
"discovery service",
|
|
171
|
+
"DHT",
|
|
172
|
+
"substrate",
|
|
173
|
+
"spatial orchestration",
|
|
174
|
+
"app-free navigation",
|
|
175
|
+
"marker-free VPS",
|
|
176
|
+
"spatially aware",
|
|
177
|
+
"the stack",
|
|
178
|
+
"the robotics stack",
|
|
179
|
+
"GPS-denied",
|
|
180
|
+
"locomotion",
|
|
181
|
+
"manipulation",
|
|
182
|
+
"spatio-semantic perception",
|
|
183
|
+
"mapping",
|
|
184
|
+
"positioning",
|
|
185
|
+
"hybrid robotics",
|
|
186
|
+
"AI copilot",
|
|
187
|
+
"shared spatial layer"
|
|
188
|
+
],
|
|
189
|
+
economic: [
|
|
190
|
+
"burn",
|
|
191
|
+
"credit",
|
|
192
|
+
"deflationary mint",
|
|
193
|
+
"reputation",
|
|
194
|
+
"vacancy",
|
|
195
|
+
"treasury",
|
|
196
|
+
"utilization rate",
|
|
197
|
+
"initial supply",
|
|
198
|
+
"total supply",
|
|
199
|
+
"organization",
|
|
200
|
+
"trustless",
|
|
201
|
+
"peer-to-peer transactions",
|
|
202
|
+
"machine passports",
|
|
203
|
+
"machine economy"
|
|
204
|
+
],
|
|
205
|
+
framing: [
|
|
206
|
+
"machine perception",
|
|
207
|
+
"spatial computing",
|
|
208
|
+
"collaborative perception",
|
|
209
|
+
"cognitive liberty",
|
|
210
|
+
"perception-first",
|
|
211
|
+
"protocol-not-product",
|
|
212
|
+
"sovereignty",
|
|
213
|
+
"decentralization",
|
|
214
|
+
"territory capture",
|
|
215
|
+
"foundations-before-execution",
|
|
216
|
+
"make the world machine-readable",
|
|
217
|
+
"connective tissue between digital and physical",
|
|
218
|
+
"open, permissionless, interoperable, private",
|
|
219
|
+
"skip the bottleneck, ship the leverage",
|
|
220
|
+
"coalition before standard",
|
|
221
|
+
"hybrid over pure",
|
|
222
|
+
"augmentation without surveillance",
|
|
223
|
+
"civilization-scale infrastructure",
|
|
224
|
+
"public good, not proprietary asset",
|
|
225
|
+
"Inspiration",
|
|
226
|
+
"Trust",
|
|
227
|
+
"Hope",
|
|
228
|
+
"Collective Vanguard Leader"
|
|
229
|
+
],
|
|
230
|
+
// System-internal concepts → plain English for output.
|
|
231
|
+
// Readers don't know Radiant's vocabulary. Speaking it to them is jargon.
|
|
232
|
+
jargon_translations: {
|
|
233
|
+
"worldmodel": "your strategy file",
|
|
234
|
+
"canonical pattern": "something Radiant tracks by name over time",
|
|
235
|
+
"candidate pattern": "something Radiant noticed but hasn't been told to watch for",
|
|
236
|
+
"evidence gate": "how much activity Radiant needs before it speaks",
|
|
237
|
+
"invariant": "a rule you declared non-negotiable",
|
|
238
|
+
"signal extraction": "reading the activity",
|
|
239
|
+
"alignment score": "how aligned the work is with what you said matters",
|
|
240
|
+
"actor domain": "who did the work (a person, an AI, or both together)",
|
|
241
|
+
"presence-based averaging": "only counts what actually happened",
|
|
242
|
+
"drift detection": "noticing when things are shifting from what you said you wanted",
|
|
243
|
+
"lens rewrite": "framing adjustment before output",
|
|
244
|
+
"INSUFFICIENT_EVIDENCE": "not enough to say confidently",
|
|
245
|
+
"UNAVAILABLE": "we can't measure this yet"
|
|
246
|
+
}
|
|
247
|
+
};
|
|
248
|
+
var AUKI_VOICE = {
|
|
249
|
+
register: 'diagnosis mode \u2014 compressed, strategic, builder-direct. Closer to the closing paragraph of an Auki year-recap ("2025 was foundations. 2026 is execution.") than to its month-by-month celebration.',
|
|
250
|
+
active_voice: "required",
|
|
251
|
+
specificity: "required",
|
|
252
|
+
hype_vocabulary: "forbidden",
|
|
253
|
+
hedging: "forbidden",
|
|
254
|
+
playfulness: "rare",
|
|
255
|
+
close_with_strategic_frame: "preferred",
|
|
256
|
+
punchline_move: "sparing",
|
|
257
|
+
honesty_about_failure: "required",
|
|
258
|
+
output_translation: `Reason internally through the three-domain frame (Future Foresight, Narrative Dynamics, Shared Prosperity) \u2014 that is the analytical scaffold. Express findings externally in the skills vocabulary INSIDE each domain (e.g. "strategic thinking," "partnership development," "storytelling," "incentive alignment"). Use the overlap state names (Inspiration, Trust, Hope) as plain-English emergent feelings. Do NOT surface the bucket names themselves (Future Foresight, Narrative Dynamics, Shared Prosperity) as labels in output \u2014 they are the model-maker's scaffold, not reader vocabulary. Readers understand skills, not buckets. The bucket names are in the forbidden_phrases list; the renderer will fail output that leaks them. Collective Vanguard Leader may be named sparingly when all three dimensions are fully integrated.`
|
|
259
|
+
};
|
|
260
|
+
var AUKI_FORBIDDEN_PHRASES = Object.freeze([
|
|
261
|
+
// Domain bucket names — never surface to readers; translate to skills
|
|
262
|
+
"future foresight",
|
|
263
|
+
"narrative dynamics",
|
|
264
|
+
"shared prosperity",
|
|
265
|
+
// AI-assistant hedging
|
|
266
|
+
"it may be beneficial to consider",
|
|
267
|
+
"there appears to be",
|
|
268
|
+
"one possible interpretation",
|
|
269
|
+
"it might be worth exploring",
|
|
270
|
+
"it might be worth considering",
|
|
271
|
+
"consider whether",
|
|
272
|
+
"it is worth noting",
|
|
273
|
+
"please note that",
|
|
274
|
+
"it should be noted",
|
|
275
|
+
"in conclusion",
|
|
276
|
+
// Corporate / marketing
|
|
277
|
+
"unparalleled",
|
|
278
|
+
"best-in-class",
|
|
279
|
+
"industry-leading",
|
|
280
|
+
"revolutionary",
|
|
281
|
+
"cutting-edge",
|
|
282
|
+
"state-of-the-art",
|
|
283
|
+
"thrilled to announce",
|
|
284
|
+
"excited to share",
|
|
285
|
+
"game-changing",
|
|
286
|
+
"synergy",
|
|
287
|
+
"synergies",
|
|
288
|
+
"stakeholders",
|
|
289
|
+
// too corporate; prefer named actors
|
|
290
|
+
"end-users",
|
|
291
|
+
"value proposition",
|
|
292
|
+
"paradigm shift",
|
|
293
|
+
// Generic motion
|
|
294
|
+
"going forward",
|
|
295
|
+
"moving forward",
|
|
296
|
+
"at the end of the day",
|
|
297
|
+
"touching base",
|
|
298
|
+
"circle back",
|
|
299
|
+
"deep dive",
|
|
300
|
+
"level set",
|
|
301
|
+
"low-hanging fruit"
|
|
302
|
+
]);
|
|
303
|
+
var AUKI_PREFERRED_PATTERNS = Object.freeze([
|
|
304
|
+
// Direct declarative observation
|
|
305
|
+
"[Specific skill] is strong here. [Named evidence].",
|
|
306
|
+
"[Specific skill] is breaking here. [Named evidence].",
|
|
307
|
+
"[Specific skill] is missing. [Named consequence].",
|
|
308
|
+
// Skills-level diagnosis (replaces the bucket-speak pattern)
|
|
309
|
+
"The [specific skill] is clear \u2014 [specific evidence]. But [another specific skill] is missing \u2014 [specific effect]. [Imperative move].",
|
|
310
|
+
"What is missing is [specific skill], not effort.",
|
|
311
|
+
"[Trust | Inspiration | Hope] won't emerge until [skill-A] and [skill-B] happen together.",
|
|
312
|
+
// Imperative move
|
|
313
|
+
"Force [action] or [consequence].",
|
|
314
|
+
"Tighten this or it fragments.",
|
|
315
|
+
"Skip the bottleneck, ship the leverage.",
|
|
316
|
+
"Coalition before standard.",
|
|
317
|
+
// Strategic close — list-becomes-argument (from year-recap)
|
|
318
|
+
"Combine [A, B, C] and suddenly [strategic implication].",
|
|
319
|
+
"[Phase A] was [what you built]. [Phase B] is [what you execute].",
|
|
320
|
+
// Binary stakes (from Intercognitive)
|
|
321
|
+
"[Centralize X in the hands of a few] or [build a decentralized alternative].",
|
|
322
|
+
// Short thesis compression (from glossary)
|
|
323
|
+
"[Subject] is [essential-function] \u2014 [one-line precision].",
|
|
324
|
+
// Named specificity
|
|
325
|
+
"[Named partner/place/number] is the one that matters here.",
|
|
326
|
+
// Honest texture (from year-recap)
|
|
327
|
+
"[Specific thing] is not yet [state] \u2014 [honest qualifier].",
|
|
328
|
+
// Pivot to reality before solution (from hybrid robotics)
|
|
329
|
+
"The truth is [current reality]. [Better approach] is [the move].",
|
|
330
|
+
// Overlap-state compression (surfacing the emergent feel, not the buckets)
|
|
331
|
+
"Trust is not emerging because [specific narrative skill] and [specific coalition skill] are not happening together.",
|
|
332
|
+
"Inspiration is landing here \u2014 [specific evidence of vision + rally].",
|
|
333
|
+
"Hope is present \u2014 [specific evidence of long-term thinking meeting fair distribution]."
|
|
334
|
+
]);
|
|
335
|
+
var AUKI_STRATEGIC_PATTERNS = Object.freeze([
|
|
336
|
+
"Skip the bottleneck, ship the leverage \u2014 identify the hard layers in the stack, build on the layers that deliver value now.",
|
|
337
|
+
"Coalition before standard \u2014 form the group that will set the rules before the rules need to exist.",
|
|
338
|
+
"Foundations before execution \u2014 build the infrastructure that makes the thing possible; then scale.",
|
|
339
|
+
"Hybrid over pure \u2014 augment humans with AI where full autonomy is not ready; transition later.",
|
|
340
|
+
"Decentralized > proprietary \u2014 when choosing architecture, prefer open / community-governed / interoperable over closed / owned / siloed.",
|
|
341
|
+
"Layered analysis first, strategic move second \u2014 decompose before deciding.",
|
|
342
|
+
'Named specificity over abstractions \u2014 cite people, places, partners, numbers; never "stakeholders" or "the industry."',
|
|
343
|
+
"Community deployment before public release \u2014 validate with a small group of operators before opening the door.",
|
|
344
|
+
"Cognitive liberty as inviolable constraint \u2014 block any move that violates sovereignty over spatial/sensor data, regardless of other benefits.",
|
|
345
|
+
"Compress mission to one sentence \u2014 one memorable thesis carries more weight than a manifesto."
|
|
346
|
+
]);
|
|
347
|
+
var AUKI_EXEMPLARS = Object.freeze([
|
|
348
|
+
{
|
|
349
|
+
path: "intercognitive-foundation.md",
|
|
350
|
+
title: "The Intercognitive Foundation",
|
|
351
|
+
exhibits: ["future-foresight", "narrative-dynamics", "shared-prosperity"],
|
|
352
|
+
integration_quality: "full \u2014 all three domains integrated; Collective Vanguard Leader manifests through the coalition itself",
|
|
353
|
+
notes: 'The perfect vanguard exemplar. Future Foresight: inflection-point framing, Nine Pillars architecture. Narrative Dynamics: "the physical world cannot remain a blind spot," rally language, invitation to join. Shared Prosperity: coalition of four founding members, "no single entity should own," community governance, public good framing. When Radiant outputs something that feels vanguard-complete, it should resemble this in structure and tone.'
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
path: "hybrid-robotics-essay.md",
|
|
357
|
+
title: "The Case for Hybrid Robotics",
|
|
358
|
+
exhibits: ["future-foresight", "shared-prosperity"],
|
|
359
|
+
integration_quality: "partial \u2014 Future Foresight dominant, Shared Prosperity secondary, Narrative Dynamics present but informing rather than rallying. Overlap: Hope emerges (long-horizon infrastructure for collective benefit).",
|
|
360
|
+
notes: 'Auki teaching how it thinks. The stack-analysis \u2192 bottleneck-identification \u2192 skip-and-ship pattern is a reusable Auki reasoning move. When the AI applies "systems-first" and "leverage-oriented" thinking, it should resemble this essay \u2014 structured, honest about current reality, pivoting to a better approach via layered reasoning.'
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
path: "glossary.md",
|
|
364
|
+
title: "Auki Glossary",
|
|
365
|
+
exhibits: ["future-foresight"],
|
|
366
|
+
integration_quality: 'primary-dominant \u2014 Future Foresight dominant (precise technical definitions as long-range conceptual infrastructure). Shared Prosperity implicit (glossary is open, cross-referenced, serves the ecosystem). Narrative Dynamics flashes once ("a mesh of machines reasoning about pose") but is not primary.',
|
|
367
|
+
notes: 'Source of the vocabulary map. Also teaches compression style: one-line precision definitions, cross-reference density, occasional poetic compression. When the renderer produces short thesis sentences, aim for the "mesh of machines reasoning about pose" level of compression.'
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
path: "year-recap-2025.md",
|
|
371
|
+
title: "Auki 2025 Year-End Recap",
|
|
372
|
+
exhibits: ["narrative-dynamics", "shared-prosperity"],
|
|
373
|
+
integration_quality: "partial \u2014 Narrative Dynamics dominant, Shared Prosperity strong, Future Foresight arrives only in the closing paragraph. Overlap: Trust emerges (stakeholders can see their place in the collective progress).",
|
|
374
|
+
notes: 'The celebration register \u2014 warm, specific, named. Not the diagnosis register the lens primarily enforces, but the same DNA. Use this exemplar when calibrating how Auki names specifics (Pepito in Bali, Mika Haak at HQ, the HK web3 robotics cabal) and how the "\u2014 literally" punchline move lands. Do NOT mimic the celebration warmth in diagnosis outputs.'
|
|
375
|
+
}
|
|
376
|
+
]);
|
|
377
|
+
function aukiBuilderRewrite(pattern) {
|
|
378
|
+
if (pattern.evidence.cited_invariant) {
|
|
379
|
+
return {
|
|
380
|
+
...pattern,
|
|
381
|
+
framing: "invariant pressure",
|
|
382
|
+
emphasis: "worldmodel invariant cited by this observation \u2014 surface the cross-reference",
|
|
383
|
+
compress: true
|
|
384
|
+
};
|
|
385
|
+
}
|
|
386
|
+
if (pattern.type === "candidate") {
|
|
387
|
+
return {
|
|
388
|
+
...pattern,
|
|
389
|
+
framing: "emergent observation (not yet in worldmodel)",
|
|
390
|
+
emphasis: "candidate pattern \u2014 surface the vanguard-domain analysis (which domain activated this?)",
|
|
391
|
+
compress: true
|
|
392
|
+
};
|
|
393
|
+
}
|
|
394
|
+
return {
|
|
395
|
+
...pattern,
|
|
396
|
+
framing: "system-level consequence",
|
|
397
|
+
emphasis: "coordination + leverage",
|
|
398
|
+
compress: true
|
|
399
|
+
};
|
|
400
|
+
}
|
|
401
|
+
var aukiBuilderLens = {
|
|
402
|
+
name: "auki-builder",
|
|
403
|
+
description: "Renders behavioral interpretation through the vanguard leadership model \u2014 Future Foresight, Narrative Dynamics, Shared Prosperity. Role-based, not personal. Encodes how Auki-grade builders think and speak when the vanguard model is running. Companion to auki-vanguard.worldmodel.md (the abstract DNA) and the exemplars at src/radiant/examples/auki/exemplars/ (worked implementations).",
|
|
404
|
+
primary_frame: {
|
|
405
|
+
domains: AUKI_VANGUARD_FRAME.domains,
|
|
406
|
+
overlaps: AUKI_VANGUARD_FRAME.overlaps,
|
|
407
|
+
center_identity: AUKI_VANGUARD_FRAME.center_identity,
|
|
408
|
+
evaluation_questions: AUKI_VANGUARD_FRAME.evaluation_questions,
|
|
409
|
+
scoring_rubric: AUKI_VANGUARD_FRAME.scoring_rubric
|
|
410
|
+
},
|
|
411
|
+
vocabulary: AUKI_VOCABULARY,
|
|
412
|
+
voice: AUKI_VOICE,
|
|
413
|
+
forbidden_phrases: AUKI_FORBIDDEN_PHRASES,
|
|
414
|
+
preferred_patterns: AUKI_PREFERRED_PATTERNS,
|
|
415
|
+
strategic_patterns: AUKI_STRATEGIC_PATTERNS,
|
|
416
|
+
exemplar_refs: AUKI_EXEMPLARS,
|
|
417
|
+
rewrite: aukiBuilderRewrite
|
|
418
|
+
};
|
|
419
|
+
|
|
420
|
+
// src/radiant/lenses/index.ts
|
|
421
|
+
var LENSES = Object.freeze({
|
|
422
|
+
"auki-builder": aukiBuilderLens
|
|
423
|
+
});
|
|
424
|
+
function getLens(id) {
|
|
425
|
+
return LENSES[id];
|
|
426
|
+
}
|
|
427
|
+
function listLenses() {
|
|
428
|
+
return Object.freeze(Object.keys(LENSES));
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
export {
|
|
432
|
+
aukiBuilderLens,
|
|
433
|
+
LENSES,
|
|
434
|
+
getLens,
|
|
435
|
+
listLenses
|
|
436
|
+
};
|