Forward-deployed / Learning zone
Agentic AIa standalone module
Lesson 08

Agentic AI as a product

TL;DR

After seven lessons, you can mostly build an agent. The real question is "where does an agent pay?" The economics are unusual. Marginal cost per task is real and it varies — it depends on tokens, steps, and thinking time. Reliability sets how much human supervision each task still needs. The number to beat is the supervised cost: the agent's cost plus the cost of the human checking it, measured against the old way of doing the work. The sweet spot is high-volume, medium-stakes, verifiable work. The trap is low-volume, high-stakes, unverifiable work, where checking costs more than doing the work yourself. Around this economics sits agent UX — trust comes from legible plans, visible progress, reviewable diffs, and graceful escalation. Pricing is shifting too, from seats toward usage and outcomes, because an agent that does the work replaces work, not software licenses.

🎯 For the AI PM

Why it matters — This lesson is where the module pays off. Every concept so far — autonomy, tools, context, reliability, security — converges into three product numbers: cost per task, completion rate, and intervention rate. These three numbers decide whether your agent is a real business or a subsidized demo.

What it changes in your decisions — Pick the agent's lane using stakes, volume, and verifiability, not demo appeal. Design the supervision experience as carefully as the automation. Model unit economics before you write the roadmap, not after the invoice arrives.

Ask yourself — "For this task: what does the agent cost, what does the human checking it cost, and what did the old way cost — all-in?"

Risk if ignored — An impressive agent with negative unit economics at scale. Or one parked on a task where a single failure erases a year of savings.

Where agents pay

Where agents pay
Stakes vs. verifiability — picking the agent's lane
low stakeshigh stakes
Agent assists
Draft, human approves
Cautious automation
Full autonomy — the sweet spot
Contract commitments
Strategic analysis
Outbound customer emails
Support triage & drafting
Research summarization
Code with strong tests
Data extraction & entry
hard to verifyeasy to verify
Three forces pick the lane: verifiability decides how far autonomy can compound, stakes decide where a human gate is non-negotiable, and volume (not shown) decides whether the fixed costs ever pay back.

Three forces pick the lane.

Verifiability decides how far autonomy can go. Work whose correctness you can check cheaply — tests pass, a record matches its source, a format validates — is where autonomy compounds. Work you can't verify cheaply caps out at "assistant."

Stakes decide whether autonomy is safe. Reversible, low-blast-radius work invites autonomy. Irreversible or reputation-bearing work demands a human gate, no matter how good the quality looks (lesson 7).

Volume decides whether autonomy pays for itself. Doing agents properly costs money up front — evals, tooling, security review, supervision design. Those fixed costs amortize over repetition. A task done twice a month rarely repays them.

The classic entry strategy follows from this. Start in "agent drafts, human approves." Build up eval evidence and trust. Then earn autonomy tier by tier. Do it in the reverse order — launch autonomous, add oversight after the incident — and you pay for it in trust you don't get back.

Unit economics

The napkin model every agent feature deserves before it enters the roadmap:

Cost per task = steps × (context size × token price) + thinking budget + tool/infra costs. There's a compounding interaction here, covered in lesson 3: context grows as tasks lengthen, so cost per task grows faster than linearly with task length. Long-horizon autonomy is expensive by construction.

Supervised cost per task = cost per task + (intervention rate × human minutes × loaded rate) + (failure rate × cost of a miss). This is the honest number. An agent that's cheap per run but wrong often enough to need full review can still cost more than the human baseline did. It just moved the work from "doing" to "checking" without reducing it.

The trend lines matter more than the snapshot. Model prices per token have fallen steeply and repeatedly, and capability per dollar keeps improving. An agent that's marginally uneconomic today may clear easily in a year. Build the eval and supervision infrastructure now, and re-run the napkin math when the denominators move. The reverse also holds: don't hard-code today's model constraints into the product's bones.

Pricing should follow the value shape. Per-seat pricing fits assistants, because value scales with users. Usage-based pricing fits variable work, because value scales with tasks. Outcome-based pricing — per resolved ticket, per completed job — is the direction agent pricing is drifting, because it prices what the customer actually buys. It also shifts reliability risk onto you: price outcomes only when your completion rate is boringly stable.

Service-as-a-Software: selling the work itself

The strategy frame around these economics comes from platform thinking — Sangeet Paul Choudary's Enterprise AI playbook. Work is a bundle of tasks. Software long ago ate the rote ones. But two kinds of human glue still held every workflow together: knowledge work (the decisions) and managerial work (the goal-seeking). LLMs absorb the first kind, agents the second — which is why this wave doesn't stop at features. The cycle runs like this: a service-dominant workflow gets unbundled into tasks, the tasks get componentized into software (an API call away), and then they get rebundled — into the old workflow, or into entirely new ones. The agent is the natural place for that rebundling. It plays the role managers used to play.

Three product consequences:

Agent UX: designing for trust

Users don't experience your architecture. They experience a colleague whose thinking they can't see. These patterns make delegation feel safe:

One meta-pattern ties these together: set expectations by naming the lane. "Drafts your replies for approval" delights at 90% quality. "Handles your inbox" disappoints at 98%. Most "agent failed" stories are really "agent was oversold" stories — the marketing wrote a check the compounding law couldn't cash.

Failure modes

Practitioner checklist