Skip to content

Research Report Style Guide

Research reports are deep-dive investigations that serve two functions:

  1. Comprehensive analysis with citations from authoritative sources
  2. Input for diagram creation—reports inform causal models

View all reports: /knowledge-base/research-reports/


Required Sections: Executive Summary (table), Background, Key Findings, Causal Factors (tables), Open Questions (table), Sources

Key Rules:

  • Use tables for factors/summaries, not bullets
  • Escape $ as \$ in currency
  • Include 3-4 Asides per report
  • Dates without quotes: createdAt: 2025-01-07

---
title: "Topic Name: Research Report"
description: "One-sentence summary with data (escape \\$ signs)."
topic: "entity-id"
createdAt: 2025-01-07 # No quotes
lastUpdated: 2025-01-07
researchDepth: "standard" # quick | standard | comprehensive
sources: ["web", "codebase"]
quality: 3
---
SectionPurposeFormat
Executive SummaryKey findingsTable
BackgroundContextProse + Aside
Key FindingsResultsProse + tables
Causal FactorsFor diagramsTables by strength
Open QuestionsUncertaintiesTable
SourcesCitationsLists by type

### Primary Factors (Strong Influence)
| Factor | Direction | Type | Evidence | Confidence |
|--------|-----------|------|----------|------------|
| **Immigration Policy** | ↑↓ Topic | leaf | Evidence | High |
### Secondary Factors (Medium Influence)
| Factor | Direction | Type | Evidence | Confidence |
|--------|-----------|------|----------|------------|
| **Graduate Programs** | ↑ Topic | cause | Evidence | Medium |

Columns:

  • Direction: ↑ (increases), ↓ (decreases), ↑↓ (bidirectional)
  • Type: leaf (external), cause (derived), intermediate (direct)
  • Confidence: High, Medium, Low

LevelTimeSourcesUse When
quick15-30 min5-10Initial exploration
standard1-2 hours15-25Most topics
comprehensive3-5 hours30-50+Critical topics
View Source Hierarchy
PrioritySource TypeExamplesTrust
1Peer-reviewedNature, Science, arXivHigh
2Expert orgsRAND, Brookings, FHIHigh
3GovernmentGAO, UK AISI, NISTHigh
4JournalismReuters, APMedium
5IndustryMcKinsey, OECDMedium
6ForumsLessWrong, EA ForumVariable
7Company blogsOpenAI, AnthropicMedium

View Executive Summary Template

Use a table, not bullets:

## Executive Summary
| Finding | Key Data | Implication |
|---------|----------|-------------|
| **US dominance** | 57% of top researchers | US remains primary hub |
| **Policy risk** | \$100K H-1B fee | May accelerate brain drain |
| **Key uncertainty** | Immigration policy | Critical inflection point |
View Open Questions Template
## Open Questions
<Aside type="note" title="Key Uncertainties">
These questions represent the highest-value areas for follow-up research.
</Aside>
| Question | Why It Matters | Current State |
|----------|----------------|---------------|
| **Will H-1B fees persist?** | \$100K changes economics | May face legal challenge |
| **Is China's surge sustainable?** | 47% share may be temporary | Depends on retention |
View Formatting Guidelines

Use Tables Over Bullet Lists:

# Bad (low density)
**Factor Name**
- Direction: Increases
- Type: leaf
# Good (table format)
| Factor | Direction | Type |
|--------|-----------|------|
| **Factor Name** | ↑ Topic | leaf |

Escape Dollar Signs:

WrongRight
$100,000\$100,000
$5B\$5B

Also escape in frontmatter: description: "Fees increased to \\$100K"

Use Asides Liberally (3-4 per report):

<Aside type="tip" title="Why This Matters">
Key insight about safety implications.
</Aside>
<Aside type="caution" title="Limitation">
Important caveat about the data.
</Aside>

Report ColumnDiagram Element
FactorNode label
TypeNode type
Direction (↑/↓)Edge effect
Section (Primary/Secondary)Edge strength
ConfidenceEdge confidence

Workflow: Report → Extract factors → Create diagram → Link both


LevelCriteria
1-2Basic outline, 10-15 sources, gaps
3Solid coverage, 15-25 sources
4Comprehensive, 25-35 sources
5Authoritative, 35+ sources, original synthesis

Terminal window
npm run validate:mdx
npm run validate:dollars
View Validation Checklist
CheckProblemFix
Dollar signs escapedLaTeX rendering$\$
Dates unquotedSchema failsRemove quotes
Tables usedLow densityConvert bullets
Asides includedMissing insightsAdd 3-4
Sources organizedHard to assessGroup by type
Links validBroken refsTest URLs
View Common Mistakes
MistakeFix
Bullet lists for factorsUse tables
Unescaped $Use \$
Quoted datesRemove quotes
No AsidesAdd 3-4 callouts
Flat hierarchyUse h2/h3
Missing validationRun validators

Path: src/content/docs/knowledge-base/research-reports/

Naming: kebab-case matching topic ID (e.g., ai-talent-concentration.mdx)