
I came across a post from the Microsoft Power Platform Blog about intelligent apps, human leadership, and the new shape of work. The framing is fine, but the speed angle buries what I think is the actual shift happening right now. The real story is about ai automation decision ownership, not output volume. Two years ago a flow ran rules and a human approved the exceptions. Now the agent handles the exceptions and the human sets the policy the agent operates under. That is a completely different job.
Speed Was Never The Interesting Part Of Automation
Every automation pitch I have seen in the last five years leads with hours saved. It is the easiest metric to put on a slide. It is also the least interesting thing about a good automation.
The flows I am proud of did not win because they were fast. They won because they removed a decision that did not need a human in the loop. A purchase order under a certain threshold. A leave request that matches a pattern. A ticket that routes itself based on content. The speed was a side effect of letting the process run without waiting for someone to click approve.
Speed framing also makes everyone lazy about design. If the only goal is faster, you end up automating a bad process and shipping the same broken logic at ten times the throughput. I have written about this before. Bad process plus automation equals faster failure.
The Decision Boundary Is What Actually Moved
Here is the shift I keep seeing internally and hearing from people at other organisations.
Old model: deterministic flow runs the rules, human handles anything weird. The human owns judgment. The flow owns execution.
New model: agent handles the weird cases too, because it can reason about context, read the attachment, compare against policy, and make a call. The human no longer sits in the approval step. The human sits above the agent, writing the constraints it operates under.
That is not a speed change. That is a decision ownership change. The human used to approve ten exceptions a day. Now the human writes the rules for how exceptions should be resolved and reviews a sample at the end of the week.
Most teams I talk to have not internalised this yet. They still put the agent in the response step of a structured flow, which I already called out as not really agentic. The interesting version is when the agent sits in the decision layer and the deterministic steps execute what it decides.
What This Changes About How I Build Flows And Agents
When I build a flow now, I spend less time on the happy path and more time on what the agent is allowed to decide on its own.
Concretely:
- I write the policy first in plain language, not the flow. What can the agent approve without escalation. What must it always escalate. What does good look like. What does a bad outcome look like.
- I design the tools the agent calls as if I am writing an API contract, because that is what I am doing. A tool returning
doneis useless. It needs to return the state the agent can reason about. - I build the escalation path before I build the automation path. If the agent is uncertain, where does it hand off. To whom. With what context.
- I log the decisions, not just the executions. A flow run log tells me what happened. A decision log tells me why the agent chose what it chose, which is the only way to improve the policy.
This is closer to writing Power Automate flows with an orchestration brain on top than it is to classical automation. If you are curious about that orchestration layer, Claude has been the most interesting model for this in my testing. Anthropic is shipping the kind of stateful reasoning this job actually needs.
Stop Measuring Hours Saved Start Measuring Decisions Delegated
If your AI project feels underwhelming even when it technically works, look at what you are measuring. Hours saved is a dashboard metric. Decisions delegated is an architecture metric.
Some questions I ask when I review an automation now:
- How many decisions used to need a human that no longer do.
- What is the policy the agent is enforcing, and who owns that policy.
- When the agent is wrong, how do we find out, and how fast do we update the policy.
- What decisions are we deliberately not delegating, and why.
None of these show up on a time-saved slide. All of them determine whether the automation holds up six months in.
The job is not building flows anymore. The job is writing the operating constraints for something that makes judgment calls. That is a different skill, and I think the teams that figure this out early will look very different from the ones still counting hours. In my own experience, the projects that aged well are the ones where someone owned the policy, not the flow.
Frequently Asked Questions
What is AI automation decision ownership and why does it matter?
AI automation decision ownership refers to who or what holds responsibility for making judgment calls inside a workflow. It matters because modern AI agents can now handle exceptions and reasoning tasks that previously required a human approver, fundamentally changing the role people play in automated processes.
How do I know if my automation is truly agentic or just a faster rule-based flow?
A good indicator is where decisions actually happen. If a human or a rigid rule set still handles every exception and the AI only executes predefined steps, the workflow is not truly agentic. An agentic setup puts the AI in the decision layer, with deterministic steps carrying out what it concludes.
Why does automating a bad process lead to worse outcomes?
Automation removes the friction that sometimes forces people to notice problems. When a flawed process runs faster and at higher volume, errors multiply at the same rate as the throughput, making the underlying issues harder to catch and more costly to fix.
When should I move a human out of the approval step in an automated workflow?
A human can move out of direct approvals when the decision follows a consistent pattern that can be expressed as clear policy constraints. The better use of human judgment at that point is writing and periodically reviewing those constraints, rather than approving individual cases one by one.
This post was inspired by Intelligent apps, human leadership, and the new shape of work via Microsoft Power Platform Blog.








