The Deep Dive
Every expert-led business has a pricing model built on a lie: that the deliverable is the product. It isn't. The judgment that produced the deliverable is the product. The deliverable is just the receipt.
That distinction used to be invisible because formatting the receipt took hours. A strategy memo, a due diligence report, a client audit: the thinking might take an hour, but the version you hand over took a day of structuring, formatting, cross-referencing and making it look like a day's work. Clients paid for the day. Nobody separated the two.
AI collapses that separation. We run 16 agents across our operation and none of them have opinions about strategy. They format. They aggregate. They flag anomalies. What they don't do is make the call on whether a signal matters or a client's positioning is wrong. That routing, from raw material to a judgment call, still goes through a human, every time. The agents just got very good at making the receipt.
Here's the problem this creates for anyone billing hourly or by deliverable: your margin was hiding in the formatting time, and that time is now worth close to nothing. If your invoice says "40 hours, strategy report," and 30 of those hours were assembly, you're about to get a very uncomfortable conversation from a client who's used ChatGPT and knows what a first draft costs to produce now.
The operators who are fine with this have already repriced around the actual asset: the judgment call, not the hours it took to dress it up. That means fewer line items, fewer timesheets, and a much more direct conversation with the client about what they're actually buying. It also means you need a system that visibly separates the assembly work (which should get cheaper and faster) from the judgment work (which should get more expensive, because it's now the only scarce thing in the transaction).
Most practices don't do this. They install agents to speed up the formatting and then keep the old invoice structure, which means the client benefits from the speed and the operator eats the margin. That's the trap: AI ops without a pricing model change is just a subsidy to your clients.
The fix isn't a new tool. It's an audit of your own invoices. Pull your last five deliverables and mark, honestly, which hours were judgment and which were assembly. If assembly is still the majority of the number on the page, your pricing model hasn't caught up to what your system can actually do, and someone's going to notice before you do.
This week's move: take one recurring deliverable, separate the judgment time from the assembly time on paper, and reprice that one item as if the assembly cost nothing. See how the number feels. If it feels wrong, that's information, not a reason to avoid doing it.
Architecture of the Week
Anthropic's own guidance on building agents (their "Building Effective Agents" writeup) draws a hard line between workflows and agents, and inside workflows it names a pattern worth stealing: orchestrator-workers. One model breaks a task into subtasks and delegates them to worker calls, then synthesises the results. It's not glamorous. It's also the pattern most "AI operating system" pitches quietly rely on while calling it something else.
My opinion: this pattern is correct and underused, specifically because it forces you to decide, in advance, which parts of a workflow are variable enough to need a worker with judgment and which are fixed enough to be a deterministic step. Most builds skip that decision and let one big prompt try to do everything. That's not an agent, that's a chatbot wearing a system's clothes. If your architecture can't tell you which node is the orchestrator and which nodes are workers, you don't have an architecture yet, you have a hope.
Tony