The Product Manager’s Atlas
AI & the Modern PM

The PM's AI Literacy

3 min readΒ·660 words
aimodern-pmliteracytechnical-fluency

You do not need to train a transformer. You do need to understand model behavior well enough to make product decisions, write specs, and judge quality. That is the bar. AI literacy for a PM is not ML engineering. It is the working fluency to reason about a probabilistic system the way you already reason about users and markets.

#Interview your model

a16z's most useful advice on staying relevant is also the simplest: interview your model. Treat it the way you would treat a new user-research subject or a new hire. Push it. Find where it is brilliant and where it falls on its face. Ask the same thing ten different ways. You are after an intuition for what this system can reliably do, because that intuition is the raw material for every product decision you will make on top of it.

✦How I actually do this

When a new model ships, I spend an afternoon trying to break it on tasks my product cares about. Not benchmarks. My tasks. Where does it hallucinate? Where does it refuse? Where does it confidently produce garbage? That session tells me more about what to build than any spec sheet, and it feeds the eval set directly.

#The jagged frontier

Ethan Mollick's "jagged frontier" is the single most important mental model here. AI capability is not a smooth line. The frontier is jagged: tasks that look equally hard to a human are wildly uneven for a model. It writes a competent legal summary and then fails a counting problem a child could do. You cannot predict which side of the frontier a given task lands on by intuition. You have to test.

Mollick's rules for working on the jagged frontier are worth internalizing:

  • Always invite AI to the table. Try it on everything. You do not know where it is strong until you do.
  • Be the human in the loop. You are the judgment, the model is the draft.
  • Treat it like a person (a specific kind). Tell it who to be and what good looks like.
  • Assume this is the worst AI you'll ever use. Capability is a moving target, so design for next year's model too.

That last one matters for how you build: do not over-engineer around today's limits.

#The "just enough" technical bar

Here is what I think a modern PM genuinely needs to understand. Not to do. To reason about.

ConceptWhy a PM needs it
Tokens, context windows, latencyThey're your cost and UX constraints, see The Unit Economics of AI
Prompting and system promptsThe cheapest lever; "the new literacy"
Precision vs recallThe core quality trade-off in any classification or retrieval feature
The build-decision ladderPrompt, context, RAG, fine-tune; fine-tuning is never your first move
Non-determinismSame input, different output, the root of [[Designing for Trust and Probabilistic Systemstrust design]]

On that build ladder: Aakash Gupta's rule of thumb is that roughly 80% of problems are solved before you ever reach fine-tuning. Reach for the cheap, fast lever first.

β–²The trap on both sides

Under-literacy: you make promises the model cannot keep and ship features that erode trust. Over-literacy theater: you learn to recite transformer architecture and mistake it for product judgment. Neither is the goal. The goal is decisions. Can I build this, at what quality, at what cost, with what failure modes?

#Continue Reading