File size: 20,542 Bytes
e1624f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
# OncoAgent β€” Brand Guidelines

> **Version:** 1.0 Β· **Date:** 2026-05-05 Β· **AMD Developer Hackathon 2026**

---

## 1. Brand Essence

### 1.1 Mission Statement

**OncoAgent democratizes clinical oncology intelligence.** We build open-source, privacy-first AI systems that empower primary care physicians with evidence-based oncological triage β€” grounded in NCCN/ESMO guidelines, running locally on AMD Instinctβ„’ MI300X hardware.

### 1.2 Brand Promise

> *"In medicine, saying 'I don't know' is safer than guessing."*

Every recommendation is traceable. Every source is cited. Every hallucination is blocked. OncoAgent delivers **radical transparency** in clinical AI.

### 1.3 Brand Pillars

| Pillar | Description |
|--------|-------------|
| **Clinical Safety** | Zero-hallucination policy. Anti-fabrication gates at every node. |
| **Radical Transparency** | Every recommendation shows its source, page, and confidence score. |
| **Open Source** | 100% open-source. Life-saving intelligence belongs to humanity. |
| **Privacy First** | Runs locally on AMD MI300X. Zero patient data leaves the hospital. |
| **Evidence-Based** | Grounded exclusively in NCCN/ESMO peer-reviewed clinical guidelines. |

### 1.4 Brand Personality

OncoAgent speaks as a **trusted clinical colleague** β€” not a chatbot, not a search engine.

- **Authoritative** β€” Backed by peer-reviewed oncology guidelines
- **Transparent** β€” Always shows its work and admits uncertainty
- **Precise** β€” Clinical-grade language, zero ambiguity
- **Humble** β€” Refuses to answer when evidence is insufficient
- **Compassionate** β€” Ultimately serves patient outcomes

### 1.5 Tagline Options

| Context | Tagline |
|---------|---------|
| Primary | **"Clinical Intelligence. Open Source. Zero Hallucinations."** |
| Technical | **"SOTA RAG. Local Inference. Evidence-Grounded Oncology."** |
| Emotional | **"Because every hour counts in oncology."** |
| Hackathon | **"Democratizing Oncology with AMD Instinctβ„’"** |

---

## 2. Visual Identity

### 2.1 Logo Concept

The OncoAgent logo combines three symbolic elements:

1. **DNA Helix** β€” Represents the biological/oncological domain
2. **Neural Network Nodes** β€” Represents the multi-agent AI architecture
3. **Shield Outline** β€” Represents clinical safety and patient protection

**Logo Mark:** A stylized double-helix merging into interconnected neural nodes, enclosed within a subtle shield silhouette.

**Wordmark:** "OncoAgent" set in **Outfit Bold**, with "Onco" in Primary Teal and "Agent" in Midnight Navy.

### 2.2 Logo Usage Rules

| βœ… Do | ❌ Don't |
|-------|----------|
| Use on solid backgrounds (white, navy, dark) | Stretch, rotate, or skew the logo |
| Maintain minimum clear space (1x logo height) | Place on busy photographic backgrounds |
| Use the monochrome version on dark backgrounds | Change the logo colors arbitrarily |
| Scale proportionally | Add drop shadows or effects |

### 2.3 Logo Variants

| Variant | Use Case |
|---------|----------|
| **Full Color** | Primary usage on light backgrounds |
| **Dark Mode** | White wordmark + teal icon on dark backgrounds |
| **Monochrome** | Single-color contexts (printing, embossing) |
| **Icon Only** | Favicons, app icons, social media avatars |

---

## 3. Color System

### 3.1 Primary Palette

```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  PRIMARY TEAL        β”‚  DARK TEAL          β”‚  LIGHT TEAL        β”‚
β”‚  #0D9488             β”‚  #0F766E            β”‚  #5EEAD4           β”‚
β”‚  rgb(13, 148, 136)   β”‚  rgb(15, 118, 110)  β”‚  rgb(94, 234, 212) β”‚
β”‚  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ          β”‚  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ         β”‚  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ        β”‚
β”‚  Buttons, links,     β”‚  Hover states,      β”‚  Highlights,       β”‚
β”‚  active states       β”‚  headers            β”‚  badges, tags      β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
```

### 3.2 Secondary Palette

```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  MIDNIGHT NAVY       β”‚  SLATE               β”‚  STEEL             β”‚
β”‚  #0F172A             β”‚  #334155             β”‚  #64748B           β”‚
β”‚  rgb(15, 23, 42)     β”‚  rgb(51, 65, 85)     β”‚  rgb(100, 116, 139)β”‚
β”‚  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ          β”‚  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ          β”‚  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ        β”‚
β”‚  Backgrounds, text,  β”‚  Secondary text,     β”‚  Captions,         β”‚
β”‚  headers             β”‚  borders             β”‚  placeholders      β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
```

### 3.3 Accent & Semantic Colors

```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  AMBER HOPE   β”‚  SUCCESS      β”‚  ERROR        β”‚  WARNING        β”‚
β”‚  #F59E0B      β”‚  #22C55E      β”‚  #EF4444      β”‚  #F97316        β”‚
β”‚  Highlights,  β”‚  Validated βœ… β”‚  Rejected ❌  β”‚  Low Conf. ⚠️   β”‚
β”‚  CTAs, hope   β”‚  Safe results β”‚  Hallucinationβ”‚  Needs review   β”‚
β”‚               β”‚               β”‚  detected     β”‚                 β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
```

### 3.4 Neutral Scale

| Token | Hex | Usage |
|-------|-----|-------|
| `--white` | `#FFFFFF` | Page backgrounds |
| `--gray-50` | `#F8FAFC` | Subtle backgrounds |
| `--gray-100` | `#F1F5F9` | Card backgrounds |
| `--gray-300` | `#CBD5E1` | Borders, dividers |
| `--gray-500` | `#64748B` | Secondary text |
| `--gray-700` | `#334155` | Primary body text |
| `--gray-900` | `#0F172A` | Headings, emphasis |

### 3.5 Color Accessibility

All color combinations must meet **WCAG 2.1 AA** contrast ratios:
- **Normal text:** Minimum 4.5:1
- **Large text:** Minimum 3:1
- **UI components:** Minimum 3:1

| Combination | Ratio | Pass? |
|-------------|-------|-------|
| White text on Primary Teal (#0D9488) | 4.6:1 | βœ… AA |
| White text on Midnight Navy (#0F172A) | 17.1:1 | βœ… AAA |
| Midnight Navy on White | 17.1:1 | βœ… AAA |
| Primary Teal on Gray-50 | 4.5:1 | βœ… AA |

---

## 4. Typography

### 4.1 Font Stack

| Role | Font Family | Weight | Fallback |
|------|-------------|--------|----------|
| **Headings** | Outfit | Bold (700), SemiBold (600) | system-ui, sans-serif |
| **Body** | Inter | Regular (400), Medium (500) | system-ui, sans-serif |
| **Monospace** | JetBrains Mono | Regular (400) | monospace |
| **Medical Terms** | Inter | Medium Italic (500i) | system-ui, sans-serif |

### 4.2 Type Scale

| Level | Size | Weight | Line Height | Usage |
|-------|------|--------|-------------|-------|
| H1 | 48px / 3rem | Outfit Bold | 1.1 | Page titles |
| H2 | 36px / 2.25rem | Outfit SemiBold | 1.2 | Section headers |
| H3 | 24px / 1.5rem | Outfit SemiBold | 1.3 | Subsections |
| H4 | 20px / 1.25rem | Inter Medium | 1.4 | Card headers |
| Body | 16px / 1rem | Inter Regular | 1.6 | Paragraph text |
| Caption | 14px / 0.875rem | Inter Regular | 1.5 | Labels, metadata |
| Small | 12px / 0.75rem | Inter Medium | 1.4 | Badges, footnotes |
| Code | 14px / 0.875rem | JetBrains Mono | 1.5 | Code blocks, metrics |

### 4.3 Google Fonts Import

```css
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400&family=Outfit:wght@600;700&display=swap');
```

---

## 5. Voice & Tone

### 5.1 Writing Principles

| Principle | Description | Example |
|-----------|-------------|---------|
| **Clinical Precision** | Use exact medical terminology | βœ… "Stage IIIA NSCLC" Β· ❌ "Advanced lung cancer" |
| **Transparent Uncertainty** | Explicitly state limitations | βœ… "Insufficient evidence in provided guidelines" |
| **Source Attribution** | Always cite guideline sources | βœ… "Per NCCN NSCLC v2024, Page 42" |
| **Action-Oriented** | Guide next steps clearly | βœ… "Recommend CT scan within 14 days" |
| **Zero Speculation** | Never invent or extrapolate | ❌ "This could potentially be..." |

### 5.2 Tone by Context

| Context | Tone | Example |
|---------|------|---------|
| **Clinical Output** | Authoritative, precise, cited | "Based on NCCN Guidelines (Page 42): First-line therapy for Stage IIIA..." |
| **Safety Rejection** | Firm, protective, transparent | "❌ Rejected: Insufficient evidence in clinical guidelines." |
| **UI Labels** | Clear, concise, bilingual | "Generate Recommendation / Generar RecomendaciΓ³n" |
| **Social Media** | Enthusiastic, technical, authentic | "🧬 Just ingested 70+ clinical guidelines into ChromaDB!" |
| **Documentation** | Professional, structured, thorough | Standard technical documentation voice |
| **Error Messages** | Empathetic, actionable, safe | "Inference system error. No recommendation generated." |

### 5.3 Anti-Hallucination Language

The following phrase is the **canonical safety response** when evidence is insufficient:

> **"InformaciΓ³n no concluyente en las guΓ­as provistas."**
>
> (English: "Inconclusive information in the provided guidelines.")

This phrase must NEVER be modified or softened. It is the system's safety valve.

---

## 6. Iconography & Visual Elements

### 6.1 Icon Style

- **Style:** Outlined, 1.5px stroke weight
- **Grid:** 24Γ—24px base grid
- **Corner radius:** 2px on geometric shapes
- **Aesthetic:** Medical meets technology β€” clean, precise, trustworthy

### 6.2 Core Icons

| Icon | Usage | Suggested Source |
|------|-------|-----------------|
| 🧬 DNA Helix | Oncology, biology | Custom SVG |
| πŸ›‘οΈ Shield Check | Safety validation (PASS) | Lucide Icons |
| ❌ Shield X | Safety rejection (FAIL) | Lucide Icons |
| πŸ“Š Bar Chart | RAG confidence metrics | Lucide Icons |
| πŸ“š Book Open | Retrieved sources/guidelines | Lucide Icons |
| πŸ” Search | RAG retrieval process | Lucide Icons |
| ⚑ Zap | AMD/ROCm performance | Lucide Icons |
| πŸ₯ Hospital | Clinical context | Lucide Icons |

### 6.3 Emoji Usage in Social Media

Approved emoji set for brand consistency:

| Emoji | Meaning |
|-------|---------|
| 🧬 | Oncology / DNA / Biology |
| 🧠 | AI / Intelligence / Reasoning |
| πŸ›‘οΈ | Safety / Anti-hallucination |
| πŸš€ | Milestone / Launch / Progress |
| ⚑ | Performance / AMD / Speed |
| πŸ“Š | Metrics / Data / Results |
| πŸ₯ | Healthcare / Clinical |
| πŸ”¬ | Research / SOTA |
| πŸ’» | Code / Engineering |
| 🌍 | Open Source / Global |

---

## 7. UI Design System

### 7.1 Gradio Theme Configuration

```python
import gradio as gr

ONCOAGENT_THEME = gr.themes.Soft(
    primary_hue=gr.themes.colors.teal,
    secondary_hue=gr.themes.colors.slate,
    neutral_hue=gr.themes.colors.gray,
    font=[
        gr.themes.GoogleFont("Inter"),
        "system-ui",
        "sans-serif",
    ],
    font_mono=[
        gr.themes.GoogleFont("JetBrains Mono"),
        "monospace",
    ],
)
```

### 7.2 Component Patterns

#### Safety Status Badge

| State | Icon | Color | Label |
|-------|------|-------|-------|
| Validated | βœ… | `#22C55E` | "Validated against clinical oncology guidelines" |
| Rejected (No evidence) | ❌ | `#EF4444` | "Rejected: Insufficient evidence in clinical guidelines" |
| Rejected (Low confidence) | ⚠️ | `#F97316` | "Rejected: Low retrieval confidence (X.XX)" |
| Rejected (Hallucination) | ❌ | `#EF4444` | "Rejected: Hallucination detected (unsupported claims)" |
| System Error | ❌ | `#64748B` | "Rejected: Safety validation failed due to system error" |

#### RAG Confidence Display

```
πŸ“Š RAG Confidence Score: 0.8742 | πŸ“š Sources Retrieved: 5
```

Always display both metrics together. The confidence score uses 4 decimal places.

### 7.3 Layout Structure

```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  🧬 OncoAgent: Clinical Oncology Decision Support       β”‚
β”‚  Description text...                                     β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚                          β”‚                              β”‚
β”‚  Clinical History Input  β”‚  Safety Validation Status    β”‚
β”‚  [Textarea - 10 lines]  β”‚  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”‚
β”‚                          β”‚  β”‚ βœ… / ❌ Status Badge  β”‚   β”‚
β”‚  [Clear] [Generate β–Ά]   β”‚  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β”‚
β”‚                          β”‚                              β”‚
β”‚                          β”‚  Extracted Entities          β”‚
β”‚                          β”‚  β€’ Cancer Type: ...          β”‚
β”‚                          β”‚  β€’ Stage: ...                β”‚
β”‚                          β”‚  β€’ Mutations: ...            β”‚
β”‚                          β”‚                              β”‚
β”‚                          β”‚  Retrieved Sources           β”‚
β”‚                          β”‚  πŸ“Š Confidence | πŸ“š Count   β”‚
β”‚                          β”‚  - Source 1 (Page X)         β”‚
β”‚                          β”‚  - Source 2 (Page Y)         β”‚
β”‚                          β”‚                              β”‚
β”‚                          β”‚  Clinical Recommendation     β”‚
β”‚                          β”‚  [Full recommendation text]  β”‚
β”‚                          β”‚                              β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
```

---

## 8. Social Media & Content Guidelines

### 8.1 Platform Strategy

| Platform | Tone | Content Type | Frequency |
|----------|------|--------------|-----------|
| **X/Twitter** | Technical, Build-in-Public | Threads (4-5 tweets), metrics, code screenshots | Daily |
| **LinkedIn** | Professional, Strategic | Long-form milestone posts, architecture decisions | 2-3x/week |
| **Instagram/TikTok** | Visual, Dynamic | Slides, code recordings, B-roll | 1-2x/week |

### 8.2 Hashtag Strategy

**Primary (Always use):**
`#AMDHackathon` `#HealthTech` `#ROCm`

**Secondary (Rotate):**
`#OpenSource` `#BuildInPublic` `#AI` `#Llama31` `#LangGraph` `#OncoAgent`

**Topical (When relevant):**
`#MedicalAI` `#CrossEncoder` `#HyDE` `#AntiHallucination` `#RAG`

### 8.3 Content Pillars

| Pillar | % of Content | Examples |
|--------|-------------|---------|
| **Technical Build** | 40% | Architecture decisions, code walkthroughs, RAG pipeline details |
| **Failure Stories** | 20% | "Fracaso del DΓ­a" β€” honest debugging stories |
| **Mission & Vision** | 20% | Open-source philosophy, patient privacy, democratization |
| **Metrics & Results** | 20% | Benchmark numbers, ingestion stats, confidence scores |

### 8.4 Visual Content Suggestions

| Type | Description |
|------|-------------|
| **Code Screenshots** | Dark theme, syntax highlighted, key lines annotated |
| **Architecture Diagrams** | Mermaid or draw.io, brand colors |
| **Terminal Recordings** | asciinema captures of ingestion/training |
| **Before/After** | Side-by-side comparisons of improvements |
| **Metric Cards** | Styled cards with key performance numbers |

### 8.5 Account Mentions

Always mention ecosystem partners when relevant:

| Partner | Handle |
|---------|--------|
| lablab.ai | `@lablabai` |
| AMD | `@AIatAMD` / `@AMD` |
| Hugging Face | `@huggingface` |

---

## 9. Partner & Co-Branding

### 9.1 Technology Partners

| Partner | Relationship | Logo Usage |
|---------|-------------|------------|
| **AMD** | Hardware sponsor (MI300X) | Use "AMD Instinctβ„’" with β„’ symbol |
| **lablab.ai** | Hackathon organizer | Per lablab.ai brand guidelines |
| **Hugging Face** | Model hosting & datasets | Per HF brand guidelines |
| **Meta (Llama)** | Base model provider | Use "Meta-Llama-3.1-8B-Instruct" full name |

### 9.2 Co-Branding Rules

- OncoAgent logo always appears **first** (leftmost or topmost)
- Partner logos are separated by a vertical divider (`|`)
- Use the phrase: *"Powered by AMD Instinctβ„’ MI300X"*
- Never imply that partners endorse OncoAgent's medical outputs

### 9.3 Required Disclaimers

All public-facing materials must include:

> **⚠️ Disclaimer:** OncoAgent is an AI research prototype developed for the AMD Developer Hackathon 2026. It is NOT a certified medical device. Clinical decisions must always be made by qualified healthcare professionals. This system is designed as a decision-support tool, not a replacement for clinical judgment.

---

## 10. File Naming & Asset Organization

### 10.1 Asset Directory Structure

```
docs/
β”œβ”€β”€ brand_guidelines.md          # This file (EN)
β”œβ”€β”€ brand_guidelines.es.md       # Spanish version
└── assets/
    └── brand/
        β”œβ”€β”€ logo/
        β”‚   β”œβ”€β”€ oncoagent_logo_full_color.svg
        β”‚   β”œβ”€β”€ oncoagent_logo_dark_mode.svg
        β”‚   β”œβ”€β”€ oncoagent_logo_monochrome.svg
        β”‚   └── oncoagent_icon_only.svg
        β”œβ”€β”€ colors/
        β”‚   └── color_palette.svg
        β”œβ”€β”€ typography/
        β”‚   └── type_specimen.svg
        └── social/
            β”œβ”€β”€ twitter_header.png    (1500Γ—500)
            β”œβ”€β”€ linkedin_banner.png   (1584Γ—396)
            └── avatar.png            (400Γ—400)
```

### 10.2 Naming Convention

All brand assets follow `snake_case` naming:
- `oncoagent_logo_full_color.svg`
- `social_post_rag_pipeline.png`
- `diagram_langgraph_architecture.svg`

---

## 11. CSS Design Tokens

```css
:root {
  /* --- Primary --- */
  --color-primary: #0D9488;
  --color-primary-dark: #0F766E;
  --color-primary-light: #5EEAD4;

  /* --- Secondary --- */
  --color-secondary: #0F172A;
  --color-secondary-light: #334155;
  --color-secondary-muted: #64748B;

  /* --- Accent --- */
  --color-accent: #F59E0B;
  --color-accent-dark: #D97706;

  /* --- Semantic --- */
  --color-success: #22C55E;
  --color-error: #EF4444;
  --color-warning: #F97316;
  --color-info: #3B82F6;

  /* --- Neutrals --- */
  --color-white: #FFFFFF;
  --color-gray-50: #F8FAFC;
  --color-gray-100: #F1F5F9;
  --color-gray-300: #CBD5E1;
  --color-gray-500: #64748B;
  --color-gray-700: #334155;
  --color-gray-900: #0F172A;

  /* --- Typography --- */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* --- Spacing --- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* --- Border Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
}
```

---

## 12. Internationalization (i18n)

### 12.1 Language Strategy

| Layer | Primary Language | Secondary Language |
|-------|-----------------|-------------------|
| **Source Code** | English | β€” |
| **UI (Default)** | English | Spanish |
| **Documentation** | English (`.md`) | Spanish (`.es.md`) |
| **Social Media** | Spanish | English |
| **Clinical Output** | Spanish | English |

### 12.2 i18n Architecture

All UI strings are stored in a centralized dictionary (see `ui/app.py`):

```python
I18N = {
    "en": { "title": "OncoAgent: Clinical Oncology Decision Support", ... },
    "es": { "title": "OncoAgent: Soporte de DecisiΓ³n en OncologΓ­a ClΓ­nica", ... },
}
```

New languages can be added by extending this dictionary without modifying component logic.

---

*Built with ❀️ and AMD Instinctβ„’ MI300X for the AMD Developer Hackathon 2026.*