Draft for review. This page is still being reviewed, and its content and figures may change.

Resource

Agent authority worksheet

A worksheet for deciding which actions an AI agent may take alone, which need an enforced check, and which decisions stay with a named person.

On this page
  1. What this is for
  2. Step 1: list the actions
  3. Step 2: place each action in one of three bands
  4. Step 3: test the bands against a bad day
  5. Step 4: review after a month
  6. Limits of this worksheet

What this is for

Before an agent works in a real delivery team, someone has to decide what it may do on its own. Left undecided, that choice is made case by case, under time pressure, by whoever is watching. This worksheet makes it once, in advance, for one team.

The example uses a fictional company, Northwind Logistics Software, and a fictional team. Replace them with your own.

Step 1: list the actions

List the actions the agent could take in this team’s work. Be concrete: “change a database schema”, not “work on the database”.

ActionExample for Northwind
Edit application source codeChange a pricing calculation
Change generated artefactsRegenerate a report definition from its specification
Change a database schemaAdd a column to the orders table
Delete dataRemove duplicate customer records
Merge a changeMerge an approved change to the main branch
Release to customersDeploy a new version to a customer’s system
Spend moneyCall a paid model or service

Step 2: place each action in one of three bands

  • Band 1: the agent acts alone. The action is reversible, and a mistake is caught by a test before it matters.
  • Band 2: an enforced check decides. The agent may act, but only through a check that refuses the action when a rule is broken and names the right route. The rule lives in the check, not in the instructions.
  • Band 3: a named person decides. The action is irreversible, affects customers, spends beyond an agreed limit, or accepts a risk. Name the person, not the role.
ActionBandWhyNamed person or check
Edit application source code1Reversible; tests run on every changeTest suite
Change generated artefacts2Must come from the generator, never by handProvenance check on commit
Change a database schema2Safe only through the migration toolRefuse direct schema changes
Delete data3IrreversibleHead of Support, Northwind
Merge a change2Only with passing tests and review evidenceMerge gate
Release to customers3Affects customersDelivery Manager, Northwind
Spend money2Within a monthly limit per purposeCost ledger and limit

Step 3: test the bands against a bad day

For each Band 1 action, ask: if the agent did this wrongly at the end of a long day, when would we find out? If the answer is “when a customer tells us”, move it to Band 2.

For each Band 2 action, ask: does the check refuse the action, or only warn? A warning the agent can ignore is Band 1 in disguise.

For each Band 3 action, ask: does the named person know they hold this decision?

Step 4: review after a month

Look at what the checks refused and what the named people decided. Actions that were never refused may belong in Band 1. Decisions the named person always approved may be candidates for Band 2, with a check that encodes their reasoning.

Limits of this worksheet

It covers one team’s delivery work. It does not cover security architecture, data protection obligations or contractual commitments, each of which needs its own review. The bands are a thinking tool, not a compliance framework.