oryon-framework 1.0.0
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/.claude/CLAUDE.md +387 -0
- package/.claude/commands/ORYON/agents/build.md +630 -0
- package/.claude/commands/ORYON/agents/check.md +511 -0
- package/.claude/commands/ORYON/agents/plan.md +502 -0
- package/.claude/commands/ORYON/agents/research.md +642 -0
- package/.claude/commands/ORYON/agents/ship.md +527 -0
- package/.claude/commands/ORYON/ask.md +48 -0
- package/.claude/commands/ORYON/conclave.md +256 -0
- package/.claude/commands/ORYON/start.md +166 -0
- package/.claude/commands/ORYON/status.md +42 -0
- package/.claude/hooks/README.md +194 -0
- package/.claude/hooks/code-intel-pretool.cjs +107 -0
- package/.claude/hooks/precompact-session-digest.cjs +106 -0
- package/.claude/hooks/synapse-engine.cjs +113 -0
- package/.claude/rules/agent-memory-imports.md +15 -0
- package/.claude/rules/coderabbit-integration.md +101 -0
- package/.claude/rules/ids-principles.md +119 -0
- package/.claude/rules/mcp-usage.md +176 -0
- package/.claude/rules/story-lifecycle.md +145 -0
- package/.claude/rules/token-efficiency.md +28 -0
- package/.claude/rules/tool-response-filtering.md +57 -0
- package/.claude/rules/vault-protocol.md +107 -0
- package/.claude/settings.json +3 -0
- package/.claude/settings.local.json +47 -0
- package/.gitignore +29 -0
- package/.knowledge/INDEX.md +67 -0
- package/.knowledge/dossiers/DOSSIER-AGENTES-IA.md +122 -0
- package/.knowledge/dossiers/DOSSIER-AI-OPERATING-SYSTEMS.md +209 -0
- package/.knowledge/dossiers/DOSSIER-CHATGPT-FERRAMENTAS.md +386 -0
- package/.knowledge/dossiers/DOSSIER-CLAUDE-CODE-DEV.md +209 -0
- package/.knowledge/dossiers/DOSSIER-CONCURSOS-EDUCACAO.md +233 -0
- package/.knowledge/dossiers/DOSSIER-COPYWRITING-FOUNDATION.md +283 -0
- package/.knowledge/dossiers/DOSSIER-ENTREGAVEIS-IA.md +180 -0
- package/.knowledge/dossiers/DOSSIER-GOOGLE-ADS.md +365 -0
- package/.knowledge/dossiers/DOSSIER-IA-CRIATIVOS-AUTOMACAO.md +568 -0
- package/.knowledge/dossiers/DOSSIER-LOW-TICKET-INFOPRODUTO.md +198 -0
- package/.knowledge/dossiers/DOSSIER-MARKETING-GERAL.md +347 -0
- package/.knowledge/dossiers/DOSSIER-META-ADS-TRAFFIC.md +570 -0
- package/.knowledge/dossiers/DOSSIER-META-PIXEL-TRACKING.md +240 -0
- package/.knowledge/dossiers/DOSSIER-OFERTAS-LOWTICKET.md +357 -0
- package/.knowledge/dossiers/DOSSIER-OFERTAS-LP.md +306 -0
- package/.knowledge/dossiers/DOSSIER-OFERTAS-MINERADAS.md +935 -0
- package/.knowledge/dossiers/DOSSIER-PROMPT-ENGINEERING.md +542 -0
- package/.knowledge/dossiers/DOSSIER-PSICOLOGIA-PERSUASAO.md +259 -0
- package/.knowledge/dossiers/DOSSIER-QUIZ-FUNNEL.md +325 -0
- package/.knowledge/dossiers/DOSSIER-VENDAS-SCRIPTS.md +285 -0
- package/.knowledge/dossiers/DOSSIER-WHATSAPP-CHATBOT.md +165 -0
- package/bin/oryon.js +23 -0
- package/package.json +31 -0
- package/src/init.js +276 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# DOSSIER-AGENTES-IA
|
|
2
|
+
## Agentes de IA: Arquitetura, Criação e Aplicações Práticas
|
|
3
|
+
|
|
4
|
+
> **Versão:** 1.0.0
|
|
5
|
+
> **Criado:** 2026-03-26
|
|
6
|
+
> **Fontes:** EP038
|
|
7
|
+
> **Aplicação:** Criação de agentes de IA especializados sem programação
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## VISÃO GERAL
|
|
12
|
+
|
|
13
|
+
Este dossier consolida o conhecimento sobre **criação e uso de agentes de IA especializados**. Foco em abordagem no-code: como criar agentes que agem como especialistas em domínios específicos, coletam dados via formulários automatizados, e analisam resultados com contexto do negócio.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 1. ARQUITETURA DE AGENTES
|
|
18
|
+
|
|
19
|
+
### 1.1 Dual-Role Architecture
|
|
20
|
+
|
|
21
|
+
**FW-EP038-001: Arquitetura Pesquisador + SuperAgente**
|
|
22
|
+
```
|
|
23
|
+
PAPEL 1: PESQUISADOR (humano)
|
|
24
|
+
├── Faz perguntas e define escopo
|
|
25
|
+
├── Valida outputs
|
|
26
|
+
└── Direciona o agente para próximos passos
|
|
27
|
+
|
|
28
|
+
PAPEL 2: SUPERAGENTE (ChatGPT configurado)
|
|
29
|
+
├── Responde como especialista nos dados do negócio
|
|
30
|
+
├── Acessa contexto injetado (documentos, dados)
|
|
31
|
+
├── Gera estruturas automatizadas (formulários, relatórios)
|
|
32
|
+
└── Analisa dados coletados com lente especialista
|
|
33
|
+
|
|
34
|
+
SEPARAÇÃO CRÍTICA:
|
|
35
|
+
└── Misturar papéis = degradação de qualidade
|
|
36
|
+
└── Pesquisador pergunta, SuperAgente responde
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 1.2 Geração Automática de Google Forms
|
|
40
|
+
|
|
41
|
+
**FW-EP038-002:**
|
|
42
|
+
```
|
|
43
|
+
INPUT:
|
|
44
|
+
├── Objetivo da pesquisa
|
|
45
|
+
├── Público-alvo
|
|
46
|
+
└── Informações que precisa coletar
|
|
47
|
+
|
|
48
|
+
OUTPUT DO SUPERAGENTE:
|
|
49
|
+
├── Estrutura completa do Google Form
|
|
50
|
+
├── Perguntas ordenadas por prioridade
|
|
51
|
+
├── Tipos de resposta adequados
|
|
52
|
+
└── Lógica de fluxo condicional
|
|
53
|
+
|
|
54
|
+
CICLO COMPLETO:
|
|
55
|
+
1. ChatGPT gera estrutura do formulário
|
|
56
|
+
2. Humano implementa no Google Forms
|
|
57
|
+
3. Respostas coletadas
|
|
58
|
+
4. ChatGPT analisa respostas como IA especialista
|
|
59
|
+
5. Insights acionáveis gerados
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## 2. PRINCÍPIOS DE CRIAÇÃO DE AGENTES
|
|
65
|
+
|
|
66
|
+
### Context Quality = Agent Quality
|
|
67
|
+
|
|
68
|
+
O agente é tão bom quanto o contexto que recebe:
|
|
69
|
+
|
|
70
|
+
| Contexto Injetado | Qualidade das Respostas |
|
|
71
|
+
|-----------------|------------------------|
|
|
72
|
+
| Genérico ("empresa de marketing") | Respostas genéricas e previsíveis |
|
|
73
|
+
| Específico (docs, dados, histórico, ICP) | Insights acionáveis e específicos |
|
|
74
|
+
| Incompleto (informações parciais) | Respostas com lacunas e premissas erradas |
|
|
75
|
+
|
|
76
|
+
### Especialização vs Generalização
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
AGENTE GENERALISTA:
|
|
80
|
+
├── Responde sobre tudo
|
|
81
|
+
├── Superficial em tudo
|
|
82
|
+
└── Pouco valor prático
|
|
83
|
+
|
|
84
|
+
AGENTE ESPECIALISTA:
|
|
85
|
+
├── Responde profundamente sobre um domínio
|
|
86
|
+
├── Contexto rico injetado
|
|
87
|
+
└── Alto valor prático
|
|
88
|
+
|
|
89
|
+
REGRA: 1 agente por domínio > 1 agente para tudo
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## 3. HEURÍSTICAS
|
|
95
|
+
|
|
96
|
+
**HEUR-EP038-001:** Sem programação não significa sem estratégia — a qualidade do agente depende da qualidade do contexto injetado.
|
|
97
|
+
|
|
98
|
+
**HEUR-EP038-002:** Google Forms gerado por IA tem melhor estrutura — ChatGPT considera viés, sequência lógica e tipos de resposta.
|
|
99
|
+
|
|
100
|
+
**HEUR-EP038-003:** Dois papéis distintos evitam confusão — Pesquisador pergunta, SuperAgente responde. Misturar degrada qualidade.
|
|
101
|
+
|
|
102
|
+
**HEUR-EP038-004:** Especialização por domínio é mais poderosa que generalização — um agente especialista em atendimento > um agente que "faz tudo".
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## 4. CASOS DE USO
|
|
107
|
+
|
|
108
|
+
| Domínio | Agente Especialista | Output |
|
|
109
|
+
|--------|---------------------|--------|
|
|
110
|
+
| Pesquisa de mercado | SuperAgente pesquisador | Google Form + análise de respostas |
|
|
111
|
+
| Atendimento | Bot especialista em produto | Respostas sem necessidade humana |
|
|
112
|
+
| RH | Agente de triagem | Análise de candidatos + scoring |
|
|
113
|
+
| Marketing | Agente de ICP | Personas + copy baseado em dados |
|
|
114
|
+
| Vendas | Agente de objeções | Scripts personalizados por perfil |
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## CONEXÕES
|
|
119
|
+
|
|
120
|
+
- **Agentes enriquecidos:** CMO, CRO, CLOSER
|
|
121
|
+
- **Sources:** EP038
|
|
122
|
+
- **Relacionado:** DOSSIER-WHATSAPP-CHATBOT.md, DOSSIER-CHATGPT-FERRAMENTAS.md
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
# DOSSIER: AI OPERATING SYSTEMS (AIOS)
|
|
2
|
+
|
|
3
|
+
> **Version:** 1.0.0
|
|
4
|
+
> **Created:** 2026-03-12
|
|
5
|
+
> **Last Updated:** 2026-03-12
|
|
6
|
+
> **Primary Source:** Liam Ottley (LO-001, LO-002, LO-003)
|
|
7
|
+
> **Contributing Sources:** (Pending — cross-reference as more sources are processed)
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## DEFINITION
|
|
12
|
+
|
|
13
|
+
An AI Operating System (AIOS) is a comprehensive AI-powered layer that wraps around an
|
|
14
|
+
existing business model to automate operations, augment decision-making, and free founder
|
|
15
|
+
bandwidth. It is NOT a chatbot, NOT a single automation tool, and NOT a workflow builder.
|
|
16
|
+
It is an integrated system that understands the business fully (context), connects to all
|
|
17
|
+
data sources (data), synthesizes information (intelligence), takes action (automate), and
|
|
18
|
+
creates new capabilities (build).
|
|
19
|
+
|
|
20
|
+
The term was coined and popularized by **Liam Ottley** of Morningside AI, who describes
|
|
21
|
+
AIOS as "the third major shift" in business history:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
Industrial Revolution → changed how we MAKE
|
|
25
|
+
Internet → changed how we REACH
|
|
26
|
+
AIOS → changes how we RUN
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## THE 5-LAYER ARCHITECTURE
|
|
32
|
+
|
|
33
|
+
The AIOS is built in 5 concentric layers. Each layer wraps around the business model and
|
|
34
|
+
compounds on the previous layer. The order is critical — skipping layers creates fragile systems.
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
┌─────────────────────────────────────────┐
|
|
38
|
+
│ LAYER 5: BUILD │
|
|
39
|
+
│ Create new capabilities │
|
|
40
|
+
│ ┌─────────────────────────────────┐ │
|
|
41
|
+
│ │ LAYER 4: AUTOMATE │ │
|
|
42
|
+
│ │ Act on intelligence │ │
|
|
43
|
+
│ │ ┌─────────────────────────┐ │ │
|
|
44
|
+
│ │ │ LAYER 3: INTELLIGENCE │ │ │
|
|
45
|
+
│ │ │ Make sense of data │ │ │
|
|
46
|
+
│ │ │ ┌───────────────────┐ │ │ │
|
|
47
|
+
│ │ │ │ LAYER 2: DATA │ │ │ │
|
|
48
|
+
│ │ │ │ Connect sources │ │ │ │
|
|
49
|
+
│ │ │ │ ┌─────────────┐ │ │ │ │
|
|
50
|
+
│ │ │ │ │ L1: CONTEXT │ │ │ │ │
|
|
51
|
+
│ │ │ │ │ Understand │ │ │ │ │
|
|
52
|
+
│ │ │ │ │ the biz │ │ │ │ │
|
|
53
|
+
│ │ │ │ └─────────────┘ │ │ │ │
|
|
54
|
+
│ │ │ └───────────────────┘ │ │ │
|
|
55
|
+
│ │ └─────────────────────────┘ │ │
|
|
56
|
+
│ └─────────────────────────────────┘ │
|
|
57
|
+
└─────────────────────────────────────────┘
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Layer Details
|
|
61
|
+
|
|
62
|
+
| Layer | Name | Purpose | Implementation | Failure Mode |
|
|
63
|
+
|-------|------|---------|---------------|-------------|
|
|
64
|
+
| L1 | **Context** | System understands the business | CLAUDE.md, context files, SOPs, team docs | AI gives generic, wrong answers |
|
|
65
|
+
| L2 | **Data** | System connects to reality | MCP servers, APIs, database connections | AI is blind to what is happening |
|
|
66
|
+
| L3 | **Intelligence** | System synthesizes understanding | RAG pipeline, knowledge graph, analytics | AI has data but no insight |
|
|
67
|
+
| L4 | **Automate** | System takes action | Skills, cron jobs, webhooks, agent actions | AI understands but cannot act |
|
|
68
|
+
| L5 | **Build** | System creates new capabilities | Epic cycles, development pipeline, self-improvement | System is static, cannot evolve |
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## THREE KPIs OF AIOS
|
|
73
|
+
|
|
74
|
+
An AIOS is measured by exactly three KPIs. If all three are improving month over month,
|
|
75
|
+
the system is working. If any is flat or declining, there is a specific layer failure.
|
|
76
|
+
|
|
77
|
+
| KPI | What It Measures | Target | Diagnostic |
|
|
78
|
+
|-----|-----------------|--------|------------|
|
|
79
|
+
| **Away-From-Desk Autonomy** | Can the business run without the founder physically present? | Full day from phone | If NO: Layer 4 (Automate) or Layer 6 (Mobile Bridge) has gaps |
|
|
80
|
+
| **Task Automation %** | What fraction of operational tasks are handled by AI? | 60-70% within 30 days | If LOW: Layer 1 (Context) incomplete or Task Audit not done |
|
|
81
|
+
| **Revenue Per Employee** | How much output does each human produce with AI leverage? | Increasing month/month | If FLAT: AI workforce not deployed effectively |
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## CLAUDE CODE AIOS STACK
|
|
86
|
+
|
|
87
|
+
Liam's specific technology stack for AIOS implementation:
|
|
88
|
+
|
|
89
|
+
```
|
|
90
|
+
┌──────────────────────────────────────────────────────────────────────────────┐
|
|
91
|
+
│ CLAUDE CODE AIOS STACK │
|
|
92
|
+
├──────────────────────────────────────────────────────────────────────────────┤
|
|
93
|
+
│ │
|
|
94
|
+
│ ENGINE: Claude Code │
|
|
95
|
+
│ AI reasoning + execution layer │
|
|
96
|
+
│ Complex multi-step tasks, code gen, file management │
|
|
97
|
+
│ │
|
|
98
|
+
│ CONTEXT: CLAUDE.md + structured context files │
|
|
99
|
+
│ Business rules, SOPs, team info, product details │
|
|
100
|
+
│ Loaded at session start, referenced throughout │
|
|
101
|
+
│ │
|
|
102
|
+
│ DATA: MCP servers │
|
|
103
|
+
│ Typed interfaces to external systems │
|
|
104
|
+
│ CRM, email, calendar, analytics, databases │
|
|
105
|
+
│ │
|
|
106
|
+
│ SKILLS: Claude Code skills │
|
|
107
|
+
│ Reusable capabilities triggered by keywords/commands │
|
|
108
|
+
│ /daily-brief, /process-inbox, /source-sync │
|
|
109
|
+
│ │
|
|
110
|
+
│ CRON: Scheduled tasks │
|
|
111
|
+
│ Automated recurring actions on schedule │
|
|
112
|
+
│ Daily briefs, weekly reports, inbox processing │
|
|
113
|
+
│ │
|
|
114
|
+
│ MOBILE: Telegram bot │
|
|
115
|
+
│ Mobile command interface (away-from-desk bridge) │
|
|
116
|
+
│ Send commands, receive updates, approve decisions │
|
|
117
|
+
│ │
|
|
118
|
+
└──────────────────────────────────────────────────────────────────────────────┘
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## MAPPING TO MEGA BRAIN
|
|
124
|
+
|
|
125
|
+
Mega Brain has independently built an AIOS that maps almost 1:1 to Liam's architecture.
|
|
126
|
+
This table documents the equivalences:
|
|
127
|
+
|
|
128
|
+
| Liam's Layer | Liam's Implementation | Mega Brain Equivalent | Status |
|
|
129
|
+
|-------------|----------------------|----------------------|--------|
|
|
130
|
+
| **L1 Context** | CLAUDE.md + context files | `CLAUDE.md` + `.claude/rules/` (30 rules, 6 rule groups) + `system/` (JARVIS identity) | BUILT |
|
|
131
|
+
| **L2 Data** | MCP servers | `n8n-mcp` (automation) + `read-ai` (meetings) + `mega-brain-knowledge` (RAG) + Fireflies integration | BUILT |
|
|
132
|
+
| **L3 Intelligence** | RAG + knowledge graph | `core/intelligence/rag/` (BM25 + hybrid + graph) + `core/intelligence/pipeline/` (MCE) + knowledge graph (1,302 entities) | BUILT |
|
|
133
|
+
| **L4 Automate** | Skills + cron | `.claude/skills/` (20+ skills) + `.claude/hooks/` (20+ hooks) + LaunchAgents (Fireflies cron) | BUILT |
|
|
134
|
+
| **L5 Build** | Epic cycles | GSD workflow (`.planning/`) + development pipeline + epic cycles + this very session | BUILT |
|
|
135
|
+
| **Mobile** | Telegram bot | NOT YET BUILT — identified gap | PENDING |
|
|
136
|
+
|
|
137
|
+
### Identified Gaps from Liam's Framework
|
|
138
|
+
|
|
139
|
+
| Gap | Liam's Approach | Mega Brain Status | Priority |
|
|
140
|
+
|-----|----------------|-------------------|----------|
|
|
141
|
+
| **Mobile Bridge** | Telegram bot for away-from-desk command | Not implemented | MEDIUM |
|
|
142
|
+
| **Task Audit Formalization** | Structured task audit matrix as first step | Informal (not documented) | LOW |
|
|
143
|
+
| **Daily Brief Automation** | Automated morning brief as first AIOS milestone | `/jarvis-briefing` exists but not automated via cron | MEDIUM |
|
|
144
|
+
| **AI Workforce Packaging** | Package AIOS components for sale ($3K-$10K+) | Not applicable (internal system) | N/A |
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## AI WORKFORCE CONCEPT
|
|
149
|
+
|
|
150
|
+
Beyond individual AIOS, Liam describes **AI Workforces** — digital teams that replace
|
|
151
|
+
entire departments. This is the second-order application of AIOS principles.
|
|
152
|
+
|
|
153
|
+
| Department | AI Team Roles | Coordinator |
|
|
154
|
+
|-----------|--------------|-------------|
|
|
155
|
+
| **Marketing** | Content creator, distributor, analytics, SEO, social media | Marketing coordinator agent |
|
|
156
|
+
| **Sales** | Lead qualifier, outreach, follow-up, proposal | Sales coordinator agent |
|
|
157
|
+
| **Operations** | Task router, scheduler, documentation, QA | Ops coordinator agent |
|
|
158
|
+
| **Creative** | Design, copywriting, video editing, brand consistency | Creative coordinator agent |
|
|
159
|
+
|
|
160
|
+
In Mega Brain terms, this maps to the **agents/cargo/** architecture where functional role
|
|
161
|
+
agents (CLOSER, CRO, CFO, CMO) serve as the equivalent of Liam's department-level AI teams.
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
## KEY PREDICTIONS
|
|
166
|
+
|
|
167
|
+
| Prediction | Source | Timeframe |
|
|
168
|
+
|-----------|--------|-----------|
|
|
169
|
+
| 15% of day-to-day work decisions made by agentic AI | Gartner (cited by Liam) | By 2028 |
|
|
170
|
+
| First one-person billion-dollar company | Sam Altman (cited by Liam) | Near-term |
|
|
171
|
+
| "Bloodbath" for small businesses that don't adopt AI workforces | Liam Ottley | Already happening |
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
## CROSS-REFERENCES
|
|
176
|
+
|
|
177
|
+
| Theme | Related Dossiers | Connection |
|
|
178
|
+
|-------|-----------------|-----------|
|
|
179
|
+
| Automation | (pending DOSSIER-AUTOMATION) | AIOS Layer 4 = automation layer |
|
|
180
|
+
| Sales Operations | DOSSIER-SALES (if exists) | AI workforce for sales department |
|
|
181
|
+
| Founder Productivity | (pending) | Bandwidth inversion (80/20 → 20/80) |
|
|
182
|
+
| Revenue Efficiency | (pending) | Revenue per employee as primary metric |
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## SOURCE MATERIAL
|
|
187
|
+
|
|
188
|
+
| ID | Title | Type | Key Contribution |
|
|
189
|
+
|----|-------|------|-----------------|
|
|
190
|
+
| LO-001 | The AI Operating System — What It Is and Why You Need One | YouTube | 5-layer architecture, AIOS definition, implementation sequence |
|
|
191
|
+
| LO-002 | I Built an AI Workforce — Here's What Happened | YouTube | AI workforce concept, department replacement, $3K-$10K pricing |
|
|
192
|
+
| LO-003 | How I Made $1M in 7 Days Using AI | YouTube | 7-day sprint methodology, proof of AIOS capability |
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
|
|
196
|
+
## METADATA
|
|
197
|
+
|
|
198
|
+
| Field | Value |
|
|
199
|
+
|-------|-------|
|
|
200
|
+
| Theme Slug | `ai-operating-systems` |
|
|
201
|
+
| DNA Path | `knowledge/external/dna/persons/liam-ottley/` |
|
|
202
|
+
| Dossier Path | `knowledge/external/dossiers/themes/DOSSIER-AI-OPERATING-SYSTEMS.md` |
|
|
203
|
+
| Primary Expert | Liam Ottley |
|
|
204
|
+
| Contributing Experts | (none yet — update as more sources contribute) |
|
|
205
|
+
| Total DNA Elements | 27 (from Liam Ottley) |
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
*Dossier compiled by Pickle Rick (The Resourceful Builder) -- 2026-03-12*
|