Glossary

AI delegation

AI delegation is the controlled transfer of a goal and limited decision authority to an agent, allowing it to choose steps and invoke tools within explicit permissions, budgets, approval rules, and stop conditions while the surrounding harness preserves oversight, evidence, and recovery paths.

How it works

AI delegation separates the outcome an operator wants from the steps used to reach it. The operator supplies a goal, relevant context, and a control contract. The agent then chooses actions based on the state it observes, the tools it can access, and the results of earlier actions.

A practical delegation loop usually works like this:

  1. The harness defines the task, success criteria, authority, and execution limits.
  2. The agent selects a permitted next action.
  3. The harness checks the proposed action against permissions, budgets, and approval policy.
  4. The tool executes and returns an attributable result.
  5. The harness records the transition and updates authoritative workflow state.
  6. The loop stops, escalates, compensates, or continues according to explicit conditions.

The important mechanism is constrained choice. A prompt may describe the goal, but it cannot enforce a permission boundary or make an external side effect reversible. Those properties belong in the harness. The harness decides which tools are visible, which credentials they receive, what must be approved, how long execution may continue, and what evidence constitutes completion.

Delegation therefore exists in degrees. An agent might choose how to gather read-only evidence while requiring approval before writing data. It might prepare a change but lack authority to publish it. The useful unit is not whether the agent is autonomous. It is which decisions the operator has transferred, under which controls.

Why it matters in an agent harness

Delegation turns model output into operational action. That creates leverage, but it also moves uncertainty across a control boundary. The agent may choose an unexpected sequence, misunderstand state, retry an unsafe operation, or pursue a plausible proxy for the actual goal. A production harness must contain those possibilities without assuming that better instructions will remove them.

The first engineering outcome is bounded authority. Tool access should reflect the task, not the operator's full access. A research agent may need network reads and artifact writes, but not deployment credentials. A maintenance agent may inspect production while changes require a separate approval flow. Narrow authority reduces the damage caused by faulty reasoning, prompt injection, or a confused-deputy path.

The second outcome is legibility. Each delegated run should expose what goal was assigned, which context and policy applied, what actions occurred, and why the run stopped. An execution trace helps diagnose behavior, but the harness also needs authoritative state. A transcript saying that a write probably succeeded is not proof that the external system accepted it.

The third outcome is recovery. Delegated work can fail after producing partial side effects. Safe retries require idempotent operations, known checkpoints, or compensating actions. When the outcome is unknown, the harness should reconcile external state before repeating the call. Blind retry is not recovery.

Finally, delegation changes evaluation. Checking only the final answer misses unsafe or wasteful trajectories. Evaluate whether the agent stayed within scope, used approvals correctly, respected budgets, handled contradictory evidence, and stopped when further action lacked justification. A successful result reached through an unacceptable path is still a harness failure.

AI delegation vs delegated authority

These concepts overlap, but they answer different design questions.

ConceptPrimary questionEngineering consequence
AI delegationWhat goal and decisions may the agent handle?Defines task ownership, operating latitude, and escalation points.
Delegated authorityWhat actions may the agent validly perform on the operator's behalf?Defines permissions, credentials, approval requirements, and blast radius.

An agent can receive a delegated task without receiving authority to complete every step. For example, it can diagnose a deployment problem and prepare a patch while a human retains merge and release authority. Conversely, broad credentials do not constitute sound delegation. They create capability without a clear goal, success condition, or accountability boundary.

Keep the two contracts separate. Task scope describes the work. Authority scope describes permitted effects. This separation lets you change an agent's planning freedom without silently widening its access, and it lets you narrow permissions without rewriting the entire workflow.

The Rifty take

We optimize for the smallest delegation that still removes meaningful operator work. We accept extra checkpoints around irreversible or externally visible actions because recovery gets harder once effects leave the harness. If authority, completion evidence, or the stop condition cannot be stated clearly, the task is not ready for broader delegation.

Implementation checks

  • Name the delegated goal and define observable completion evidence.
  • List the decisions the agent may make without approval.
  • Give each tool the narrowest useful permission and credential scope.
  • Put irreversible, expensive, or externally visible actions behind explicit policy.
  • Set execution, iteration, time, and tool-use limits outside the prompt.
  • Persist authoritative state and per-call attribution across retries and restarts.
  • Distinguish failed, cancelled, completed, and unknown outcomes.
  • Define safe retry, reconciliation, rollback, or compensating behavior for side effects.
  • Test prompt injection, stale state, repeated calls, partial failure, and unavailable tools.
  • Evaluate the trajectory as well as the final result.

Frequently asked questions

How much authority should I delegate to an AI agent?

Delegate only the decisions and effects needed to remove meaningful operator work. Start with read-only or reversible actions, then expand authority when traces and failure tests show that the harness can enforce scope, detect completion, contain mistakes, and recover from partial execution.

Is AI delegation the same as full autonomy?

No. AI delegation is granular, while full autonomy implies broad control over planning and execution. An agent can choose research steps yet require approval to send, publish, purchase, or deploy. The useful design question is which decisions and side effects are delegated, not whether autonomy is present.

Should delegation boundaries be defined in the prompt?

Prompts should explain the task boundary, but enforceable controls belong in the harness. Permission checks, scoped credentials, execution limits, approval gates, and tool restrictions must remain effective even when the model misunderstands or ignores an instruction. Treat prompt language as guidance, not authorization.

How do I know whether a delegated run succeeded?

Use observable completion evidence tied to authoritative state. A model's statement that work is finished is insufficient when tools or external systems are involved. Verify expected outputs, record tool results, distinguish unknown outcomes from failures, and evaluate whether the execution path respected its assigned controls.

What is the biggest operational risk in AI delegation?

The largest risk is authority that exceeds the harness's ability to observe and recover. Broad credentials, ambiguous completion rules, and unsafe retries can turn one reasoning error into persistent external damage. Limit blast radius first, then add reconciliation, checkpoints, attribution, and tested stop conditions.

Related glossary terms.

AI delegation