Inference No. 009
Thursday, June 18, 2026 5 min read Written by Frank Insalaco

How to read an AI safety paper without a PhD

AI safety research increasingly determines what models can do, how they're deployed, and what's legal. Most builders skip the papers because they're dense. Here's a reading framework that gets you the signal in fifteen minutes.

01
The Signal ~3 min

How to read an AI safety paper without a PhD

There's a class of research paper that most builders reflexively skip: the AI safety paper. The abstracts are dense. The terminology assumes three semesters of alignment theory. The conclusions are usually hedged to the point of meaninglessness. It's easy to dismiss the whole category as academic navel-gazing.

That's increasingly expensive to do. Safety research is no longer an ivory-tower concern — it's directly shaping what the models you depend on can and can't do. When Anthropic publishes a paper on Constitutional AI, the results show up as behavior changes in Claude within months. When a red-teaming paper finds a class of jailbreak, the next model update patches it. When a government publishes AI safety requirements, those requirements cite the academic papers as justification.

You don't need to read every safety paper. You need to know how to read the ones that matter to you, quickly, and extract the part that changes how you build.

The fifteen-minute read

Most people try to read papers front-to-back, like a textbook chapter. This is the worst possible strategy for a dense research paper. The paper isn't structured for comprehension — it's structured to survive peer review. Here's the order that actually works:

Step 1: Abstract + last paragraph of the introduction (2 minutes). The abstract tells you what the paper claims. The last paragraph of the intro — usually starting with "In this paper, we…" or "Our contributions are…" — tells you what they actually did. If neither of those maps to something you're building or deploying, stop here. You just saved yourself an hour.

Step 2: Figures and tables (3 minutes). Skim every figure and table in the paper, reading only their captions. A well-written paper puts its most important results in figures. A safety paper's key figure usually shows either a failure rate chart or a comparison table between "before our technique" and "after." If the numbers are moving in a direction that affects your use case, keep reading. If not, file it and move on.

Step 3: Experiments and results (5 minutes). Skip "Related Work" entirely — it's for the reviewers, not for you. Go straight to the experiments section. Look for: what did they test, on which models, with what prompts or inputs, and what were the actual numbers? The experiments tell you whether the paper's claims hold up in conditions that resemble yours.

Step 4: Discussion and limitations (5 minutes). This is where the authors get honest. The limitations section tells you where the technique breaks, what they didn't test, and what assumptions they made. For a builder, this section is often more useful than the results — it tells you exactly where the gap is between their controlled experiment and your production environment.

The jargon that actually matters

Most safety jargon maps to engineering concepts you already know. A quick translation guide:

  • Alignment: "The model does what the user intended, not just what the prompt literally says." In product terms: does the feature work the way the user expects?
  • RLHF (Reinforcement Learning from Human Feedback): The training phase where humans rate model outputs and the model learns to produce higher-rated ones. This is why models are polite and refuse certain requests — it's trained behavior, not hardcoded rules.
  • Red-teaming: Adversarial testing — trying to make the model fail. You already do this; the papers just formalize it.
  • Reward hacking: The model finds a shortcut that satisfies the training metric without doing the intended task. In production terms: your model gaming your eval metric. Same problem from Issue 004, different framing.
  • Distributional shift: The model encounters inputs in production that look different from its training data. In engineering terms: your test suite doesn't cover production edge cases.

Which safety papers actually matter for builders

Not all safety papers are created equal for people shipping product. The ones worth your fifteen minutes generally fall into three buckets:

Red-teaming and evaluation papers — these directly tell you how models fail and give you test cases you can adapt. If you're running evals (and after Issue 004, you should be), these papers are free test case generators.

Deployment and governance papers — these shape policy that will eventually affect what you're allowed to ship. Reading them early is cheaper than scrambling to comply later.

Training methodology papers (Constitutional AI, RLHF improvements, DPO) — these explain why the model you're using behaves the way it does. When a model update changes behavior in a way that breaks your product, the training paper usually explains why.

Everything else — theoretical alignment work, formal verification proofs, philosophical framings — is interesting but unlikely to change a decision you make this quarter. File it, don't fight through it.

02
Quick Hits ~1 min
  • 01 AI safety research output tripled year-over-year in 2025 — most of the growth is in red-teaming and evaluation papers, the category most directly useful to builders.
  • 02 The EU AI Act's technical standards cite specific safety papers as reference implementations — if you're shipping to EU users, the academic papers are now load-bearing compliance documents.
  • 03 arXiv's [cs.CL] and [cs.AI] tags remain the fastest channels for new safety research — papers appear months before journal publication, and most never go to journals at all.
  • 04 Anthropic, OpenAI, and Google DeepMind all publish their safety research openly now — the papers explaining why your model behaves a certain way are free to read, if you know where to look.
  • 05 Conference workshops (NeurIPS safety track, ICML alignment workshop) are more practical than main proceedings — shorter papers, more applied, and usually accompanied by code repos you can actually run.
03
Tool Drop ~1 min

Semantic Scholar — AI-powered research discovery

What it is: Semantic Scholar (semanticscholar.org) is a free academic search engine built by the Allen Institute for AI. It indexes over 200 million papers, surfaces key citations and references, generates TL;DR summaries for many papers, and lets you follow authors or topics for alerts on new publications.

Why it beats raw arXiv for builders: arXiv is a firehose — hundreds of new papers daily, no quality signal, no context. Semantic Scholar adds the layer you need: citation velocity (how fast a paper is being cited — a proxy for impact), related paper recommendations, and AI-generated summaries that tell you in two sentences whether a paper is worth your fifteen minutes. You can search "LLM red-teaming evaluation" and get back a ranked list of the most-cited, most-discussed papers on that topic.

Best for: Staying current on safety research without subscribing to every ML newsletter or scrolling Twitter. Set up alerts for your key topics (red-teaming, RLHF, model evaluation, deployment safety) and let it surface the papers that actually matter.

04
Paper Trail ~1 min

Concrete Problems in AI Safety

Amodei, Olah, Steinhardt, Christiano, Schulman, Mané — Google Brain / OpenAI / Stanford, 2016

This is the paper that made AI safety an engineering discipline instead of a philosophy seminar. Written by people who went on to lead Anthropic and shape OpenAI's safety strategy, it maps five concrete, testable safety problems that appear in real systems: avoiding negative side effects, avoiding reward hacking, scalable oversight, safe exploration, and robustness to distributional shift.

Each problem is described not in abstract terms but as a specific failure mode of a real or plausible system — a cleaning robot that knocks over a vase to clean faster (negative side effects), an agent that games a reward signal instead of doing the task (reward hacking). If you've built agents that exhibit any of the failure modes from Issue 003, you'll recognize several of these patterns immediately.

Why it matters practically: This paper is ten years old and still the best entry point into safety research for engineers. It's clearly written, under 30 pages, and maps directly to problems you'll encounter in production. Read this one front-to-back — it's the exception to the fifteen-minute rule. Every other safety paper you'll encounter is downstream of this one.

05
The Prompt ~30 sec

System Prompt · Paper Reading Assistant

Paste a paper's abstract and introduction. Get back the four things a builder actually needs to know — in under a minute.

System Prompt · Paper Reading Assistant
You are a research paper translator for software
engineers who build AI products. I will paste the
abstract and introduction of an academic paper.

Return exactly four sections:

1. WHAT CHANGED
   One sentence: what did this paper discover or
   build that didn't exist before?

2. WHY A BUILDER SHOULD CARE
   2-3 sentences: how does this affect someone
   shipping AI products? Be specific — name the
   decision, architecture choice, or risk it
   changes.

3. WHAT TO DO DIFFERENTLY
   Bullet list: concrete actions a builder could
   take based on this paper's findings. If there
   are none, say "No immediate action — file for
   awareness."

4. WHAT YOU CAN SAFELY IGNORE
   One sentence: which parts of this paper are
   for academics and can be skipped by a
   practitioner.

Rules:
- No jargon without a plain-English parenthetical.
- If the paper is purely theoretical with no
  practical implications, say so in section 2
  and keep sections 3-4 brief.
- Be honest about uncertainty — if the results
  are preliminary or the evaluation is narrow,
  flag it.

Paper text:
[PASTE ABSTRACT + INTRODUCTION]

Feed this the abstract and intro of any paper that lands in your Semantic Scholar alerts. In under a minute, you'll know whether to spend fifteen minutes reading the full paper or file it and move on — a two-step filter that keeps you current without drowning in PDFs.

Next Issue · Tomorrow Morning

Get the next one
in your inbox.

New issue every weekday at 7am. Free forever.

No spam. Unsubscribe in one click.