Agentic AI
Where Agentic AI Actually Fits in the Enterprise
Agentic systems are useful where work is bounded, reversible, and observable. Deploying them anywhere else transfers risk into places the organization cannot see.
The move from assistants to agents changes the question executives need to ask. An assistant produces output that a person reviews before anything happens. An agent takes actions. That distinction is not a matter of degree; it changes where accountability sits and what has to be true before deployment.
The three properties that matter
In practice, agentic approaches earn their place where the work has three characteristics.
- Bounded — the set of actions available to the system is explicitly enumerated and limited, not inherited from whatever credentials happened to be available.
- Reversible — a wrong action can be detected and undone at acceptable cost, without a customer, regulator, or counterparty learning about it first.
- Observable — every action is logged in a form that a person can review later and understand without reconstructing intent.
Work that satisfies all three is a reasonable candidate. Work that satisfies two should be approached carefully and with a human decision point retained. Work that satisfies one is not an agent problem yet, regardless of how well the demonstration performs.
Where this leads in most organizations
Applying that filter tends to point toward internal operational work before customer-facing work: research and synthesis across internal sources, multi-step data gathering, routine ticket handling with defined resolution paths, reconciliation and exception routing, scheduled monitoring and reporting, and structured intake that currently requires a person to move information between systems.
It tends to point away from anything that commits the organization externally — pricing, contractual language, regulatory filings, credit and eligibility decisions, and direct customer communication on sensitive matters — at least until observability and control have been demonstrated on lower-stakes work.
The permission problem
An agent operating with a service account that has broad access is an access control problem wearing new terminology. The security question is not whether the model is well-behaved; it is what the system is technically capable of doing when it behaves unexpectedly, and whether that capability was granted deliberately.
Scope an agent by what it is permitted to do, not by what it is instructed to do.
This has architectural consequences. It generally means narrow, purpose-built integrations rather than broad credentials, action-level authorization rather than session-level trust, and audit logging designed for review rather than for storage.
A reasonable adoption sequence
- 01Start with an internal workflow that is bounded, reversible, and already measured.
- 02Run the agent in a proposal-only mode, where a person approves each action, long enough to characterize its failure modes.
- 03Narrow permissions to exactly the actions observed to be necessary.
- 04Automate the actions with the strongest track record, retaining human review at the highest-consequence step.
- 05Extend scope only when monitoring is good enough to detect a failure before someone else does.
Organizations that follow something like this sequence tend to end up with fewer agents than they initially imagined, doing more useful work than the ones that deployed broadly and are still trying to determine what happened.