The most important decision in an agentic AI initiative is not which model or framework to use. It is whether the business problem needs an agent at all.

Many enterprise AI projects begin too far downstream. Teams compare models, build tool integrations and design orchestration before agreeing on the value of autonomy, the role of the user or the consequences of a wrong action. The result may be technically impressive, but operationally difficult to trust, govern or scale.

Framing moves those decisions to the beginning. It connects four questions: where non-deterministic intelligence creates value, who remains accountable, how much autonomy is appropriate, and which constraints must exist before execution starts.

01 / CHOOSE THE SIMPLEST SYSTEM THAT WORKS

Not every AI opportunity needs an agent

Agentic systems are useful when a workflow must interpret ambiguous information, choose a path based on changing conditions and interact with several tools. That flexibility also creates latency, cost and variance. If the sequence is already known, ordinary automation is usually easier to operate and more reliable.

The business question is therefore not “Can an agent do this?” but “Where does adaptive reasoning improve the outcome enough to justify additional control?”

Four qualification gates

Dynamic branching

The next action depends on information discovered during execution.

Semantic interpretation

The work includes messy documents, language or intent that rules cannot reliably normalize.

Observable feedback

The system can verify progress through tests, return values, policy checks or other evidence.

Bounded consequences

A wrong action can be contained, reversed or routed to a person before damage occurs.

If a workflow fails these gates, that is not a failure of ambition. It is evidence that a simpler architecture will deliver value faster and with less operational risk.

02 / PRICE RELIABILITY, NOT JUST TOKENS

Small errors compound across a workflow

Leaders often evaluate AI cost at the level of a single model call. Agentic systems must be evaluated at the level of the completed business task. Every planning step, tool call and interpretation introduces another opportunity for error.

Even if each step succeeds 95% of the time, reliability falls as the workflow gets longer. Five dependent steps produce roughly 77% end-to-end reliability; ten produce roughly 60% without verification gates.

ONE STEP95%
FIVE STEPS77%
TEN STEPS60%

This does not mean long workflows are impossible. It means they need deliberate checkpoints. Deterministic validation, policy rules, confidence thresholds and human approval can prevent one weak step from contaminating the rest of the process.

BUSINESS TESTExpected value must account for successful outcomes, failure recovery, human review, model spend and operational support—not only the price of inference.
03 / DESIGN THE HUMAN ROLE

Autonomy is an operating-model decision

An agent does not operate outside the organization. It sits inside a process with users, decision owners, policies and audit obligations. The appropriate autonomy level depends on consequence, reversibility and confidence—not on model capability alone.

L1

Co-pilot

The agent analyzes and drafts. A person performs every external action.

L2

Supervised execution

The agent completes read-only work, then pauses before a consequential action.

L3

Exception-driven

The agent acts within a narrow policy envelope and escalates anomalies.

For most early enterprise deployments, Level 2 is the strongest starting point. It creates measurable automation while preserving a clear decision owner.

The approval experience matters as much as the approval rule. Reviewers should not receive raw model reasoning. They need a concise handoff showing the proposed action, target, evidence, policy check and expected effect. A good control reduces cognitive load instead of transferring the agent’s complexity to the user.

04 / ENFORCE CONSTRAINTS OUTSIDE THE MODEL

Prompts communicate intent; architecture controls behavior

Instructions such as “do not overspend” or “ask for approval” are not production controls. The model should be treated as an untrusted decision proposer. A deterministic gateway must decide whether its proposed action is valid and permitted.

  • Budget and time limits cap turns, tokens, retries and elapsed execution time.
  • Schema validation checks types, required fields and acceptable argument ranges.
  • Least-privilege access limits each tool to the smallest necessary data and action scope.
  • Circuit breakers stop repeated failure and preserve state for human review.
  • Fallback routes move work to a person, read-only mode or a deterministic process.

These controls reduce blast radius and make failures attributable. They also create the evidence required for security, compliance and operational ownership.

05 / APPLY THE FRAME TO A REAL PROCESS

Example: financial reconciliation

Consider invoice and transaction reconciliation. The process contains both ambiguous and deterministic work, so it should not be handed wholesale to an agent.

01Interpret

Read varied invoices and payment descriptions.

02Match

Propose the most likely ledger transaction.

03Verify

Use deterministic math and policy checks.

04Route

Auto-clear exact matches; escalate discrepancies.

The agent adds value by interpreting inconsistent formats and fuzzy descriptions. Code owns arithmetic. The agent has read-only access and produces a proposed reconciliation entry. Exact matches can proceed inside a narrow policy boundary; discrepancies pause with a structured comparison for an accounting specialist.

This division of responsibility is the essence of good framing: apply probabilistic intelligence where ambiguity exists, and deterministic control where the organization needs certainty.

06 / THE FRAMING CANVAS

Four decisions to make before building

01

Value

Which part of the workflow genuinely benefits from interpretation, planning or adaptive tool use?

OUTCOME · COST CEILING · SUCCESS TARGET
02

User context

Who initiates, reviews, corrects and remains accountable for the final action?

AUTONOMY · HANDOFF · STATE VISIBILITY
03

Constraints

What must be blocked, limited, validated, logged or approved outside the model?

ACCESS · BUDGET · SCHEMA · BLAST RADIUS
04

Fallback

What happens when confidence is low, a tool fails or the operating envelope is exceeded?

ESCALATE · READ-ONLY · RULE-BASED ROUTE

A team that cannot answer these questions is not ready to select an agent framework. A team that can answer them has the beginnings of a technical specification, governance model and measurable business case.