NORNR
Mandates, approvals and evidence for autonomous agents.
Guide / Multi-agent ops
10 minutesHow to add approvals to a multi-agent ops workflow
Add approvals to a multi-agent ops workflow so coordinator agents can pause expensive or risky actions cleanly.
1. Why this guide matters
Multi-agent systems create a special problem: one agent's recommendation can become another agent's execution. That chain needs a control point before the costly step, not after.
This guide adds that control point to the coordinator path.
2. Install what you need
pip install agentpay
This guide uses the hosted NORNR path at https://nornr.com, so you can validate the decision flow without standing up the full local stack first.
3. Create the governed wallet
from agentpay import Wallet
wallet = Wallet.create(
owner="ops-coordinator",
daily_limit=90,
require_approval_above=30,
base_url="https://nornr.com",
)
This wallet is the mandate. It sets the budget and review threshold before the framework-specific workflow is allowed to continue.
4. Apply it in the workflow
decision = wallet.pay(
amount=33.00,
to="vendor-api",
purpose="multi-agent ops workflow",
)
if decision.get("status") == "approved":
dispatch_worker_agents()
else:
print("Coordinator held the run for review.", decision)
The key pattern stays the same across frameworks: ask NORNR for a decision first, then let the expensive or externally billable step run only if policy says yes.
5. What to expect
- approved means the workflow can continue immediately inside its mandate.
- queued means the request crossed an approval threshold and should wait for review.
- rejected means policy did not allow the action to proceed.
That three-way split is what makes the pattern useful: low-risk work stays fast, higher-risk work becomes reviewable, and clearly out-of-policy work never leaves the workflow.
6. Where to go next
Related guides
Keep going from the same control problem.
These are the closest follow-up guides in the same part of the library.
How to govern OpenAI API spend for research agents
Put OpenAI API spend for research agents behind budget, approval and evidence controls with NORNR.
Read guide Procurement / 10 minutesHow to add budget controls to a procurement agent
Add budget controls to a procurement agent so vendor actions stay inside a defined mandate.
Read guide Compute spend / 9 minutesHow to govern compute spend in agent workflows
Govern compute spend in agent workflows so expensive jobs do not launch without budget and review rules.
Read guide