AgentsPay

Explainer

UiPath Agentic Automation Spend Controls: UiPath Agents, Agent Units and Governance Policy Limits

UiPath ships more agent governance than almost any vendor we have measured. It has a policy engine, four enforcement actions including human approval, and consumption metering accurate to a fraction of a unit. So we downloaded both SDKs UiPath publishes and asked the one question a finance lead asks before an agent goes live: can any of it be given a number in dollars? The answer is specific, and it is not the answer the word "budget" suggests.

Agent Payments Console

Pick an agent

Payment intent

intent:

Policy evaluation

Human approval required

This spend is over your approval threshold. Approve it to issue a scoped card, or deny it.

Scoped virtual card issued

AgentsPay

single-use

Wallet budget

spent of

Audit trail

In short

UiPath agentic automation is UiPath's platform for building and running AI agents alongside RPA robots, coordinated by Maestro and metered in Agent Units. UiPath does ship agent governance: its public Python SDK carries a policy compiler with 11 check types, four enforcement actions including escalation to a human, and one check literally named "budget". Measured on 23 September 2026, that budget check has exactly three settings, and all three count calls: max_tool_calls_per_session, max_tool_calls_per_minute and max_consecutive_tool_calls. Across 1,157 property names in the TypeScript SDK and 673 in the Python SDK, there is no amount, currency or dollar field anywhere, and the only numeric comparison operator is bound to five per-session call counters. UiPath can cap how often an agent acts. It cannot cap how much an agent spends.

What UiPath agentic automation is, and which parts hold the controls

UiPath agentic automation is the positioning UiPath moved to at its FUSION conference in September 2025: one platform that coordinates AI agents, traditional RPA robots and human approvers in the same process. Three pieces matter when you are working out what governs spending.

UiPath Agents are the LLM-driven workers. They are built in Agent Builder, they call tools, and they are metered in Agent Units. UiPath Maestro is the orchestration layer that sequences agents, robots, external systems and human decisions into one long-running process. UiPath governance is the policy layer that evaluates what an agent is about to do and returns a verdict.

Most write-ups stop at the marketing description. We wanted the field list, because a control you cannot name in an API is a control you do not have. UiPath publishes two SDKs openly, so the field list is available to anyone who downloads them.

We measured both UiPath SDKs: 1,830 property names, zero money fields

On 23 September 2026 we downloaded the two SDKs UiPath publishes to public package registries, with no account and no authentication: @uipath/uipath-typescript 1.7.2 from npm (published 18 September 2026, 10.8 MB unpacked across 84 files) and uipath 2.14.25 from PyPI, released at 08:07 UTC on the morning of the probe itself, the 675th release of that package.

The TypeScript SDK's root type file is 843,143 bytes and declares 938 types with 2,787 property declarations, of which 1,157 are distinct property names. We ran a money regex across all of them: amount, currency, budget, spend, price, cost, payment, invoice, monetary, dollar, purchase, usd, billing, charge, fee, wallet, card. It returned three hits, and all three are false positives on the letters "fee": feedId, feedbackCategories and feedbackRating. There is not one genuine money property in the SDK.

The Python SDK agreed independently. Across 192 files it declares 673 distinct field names, and the same regex returned two hits, both false positives again: cached_agent_card (the A2A Agent Card, not a payment card) and max_llm_concurrency, which matches only because the word "concurrency" ends in "currency".

The check UiPath calls "budget" counts tool calls, not dollars

This is the finding that matters, and it is the reason a keyword search is not enough. UiPath's Python SDK ships the actual policy compiler at uipath/_cli/_governance/yaml_index.py, 532 lines that turn a YAML policy pack into a runtime policy index. It supports 11 check types: regex, tool_allowlist, parameter_validation, rate_limit, field_regex, data_quality_score, incident_taxonomy, commitment_extractor, sentiment_concern, guardrail_fallback, and one called budget.

Read the builder for that check and it has exactly three settings:

  • max_tool_calls_per_session
  • max_tool_calls_per_minute
  • max_consecutive_tool_calls

All three count calls. The denial message the compiler attaches is, word for word, "Tool budget exceeded". The neighboring rate_limit check is the same idea for the model: max_llm_calls_per_session and max_llm_calls_per_minute.

So UiPath's budget is a call counter. Given how UiPath bills, that is a defensible design, and we say so below. It is simply not what a CFO means by a budget.

Five numeric fields, all per session, and no way to compare an amount

We then traced every field a UiPath policy condition can actually test. There are exactly five numeric state fields in the entire policy language, and every one of them is a count of calls: session_state.tool_calls, session_state.tool_calls_per_minute, session_state.consecutive_tool_calls, session_state.llm_calls and session_state.llm_calls_per_minute.

Two structural consequences follow, and neither is a matter of opinion.

First, everything is session_state. No cumulative, daily, weekly or monthly counter exists anywhere in the compiler. Every new session starts back at zero, which is the same structural limit we found in AWS Bedrock AgentCore, where the one spend ceiling resets per session. A cap of 50 tool calls per session is not a cap of 50 tool calls a month.

Second, and more decisive, gt is the only numeric comparison operator in the language, and the compiler only ever binds it to those five counters. There is a check that reaches tool arguments, parameter_validation, but it can only apply a regex operator to tool_args, and its built-in message is "Suspicious pattern in tool parameters". A regular expression can look for a pattern in a string. It cannot express "greater than 1,000". So even though the amount an agent is about to pay sits right there in the tool arguments, no UiPath policy can compare it to a threshold.

One detail is worth reporting precisely, because it is the single place the word "amount" appears in the whole compiler. The commitment_extractor check has a flag called require_amount. It applies to the field model_output, and it tests whether the text the agent generated contains a commitment with a figure in it. It reads what the agent said. It has nothing to do with what the agent spent.

What UiPath does exceptionally well: it meters agents to the fraction of a unit

Credit where it is due, because the absence above is not incompetence. UiPath measures agent consumption in more detail than most vendors on this list. The TypeScript SDK's agents module exposes properties like consumedAGUQuantity and consumedPLTUQuantity (Agent Units and Platform Units), totalAGUConsumed, totalPLTUConsumed, agentUnitConsumption and platformUnitConsumption, broken out per folder, per process version, and split by whether the job completed.

The governance module is real too. GovernancePolicyTrace records, for every evaluation, which policy fired, the enforcement verdict, the actor identity, the actor process, the resource acted on and the distributed trace ID, and getOperationSummary returns allowedCount, deniedCount and noOpCount so you can see how often policies denied anything at all. The NoOp state is a simulated verdict, which means you can run a policy in observation mode before enforcing it. That is a mature design.

The policy engine can also do the thing most vendors skip entirely: it has four enforcement actions, ALLOW, DENY, AUDIT and ESCALATE, and the YAML keyword that maps to escalation is require_approval. UiPath can genuinely stop an agent and put a human in the loop, across six lifecycle hooks (before and after the agent, before and after the model, at the tool call and after the tool). The gap is not the mechanism. The gap is that the trigger cannot be an amount.

The finding holds up: two controls

An absence is only interesting if the method could have found a presence, so we ran two controls.

The positive control. We ran the identical money regex over the stripe npm package, version 22.6.2, across its 486 type files. It matched 376 of 2,493 distinct property names, or 15.1 percent: amount, amount_authorized, amount_capturable, amount_captured, amount_due and hundreds more. The regex is not blind. When a vendor models money, it lights up immediately.

The internal control. "It is a read-only SDK" would be an easy explanation for finding no controls, so we counted. The UiPath TypeScript SDK exposes 225 service operations across 26 modules, and 65 of them are writes. It can create and delete entities, assign roles, upload and delete files, stop and restart jobs, cancel Maestro processes and update user settings. It writes constantly.

The two modules that would need to carry a spend ceiling are the two that write nothing. The agents module has 10 operations and the governance module has 2, and every single one of those 12 begins with get. Every agents operation takes a startTime and an endTime, because every one of them is a report about a window that has already closed.

That is the sentence worth keeping: UiPath will tell you to the fraction of a unit what an agent consumed yesterday, and offers no call that tells an agent what it may not exceed tomorrow.

Why counting calls is reasonable for UiPath and still leaves you exposed

Here is the fair reading, and it explains the design rather than mocking it. UiPath bills agents per LLM call when the model is UiPath-hosted: 2 Agent Units per call on the Premium tier, 1 on Standard, 0.8 on Basic. If your bill is a function of call count, then capping call count caps your bill. UiPath's "budget" check is a sensible control over what the agent costs to run.

The exposure is that an agent has two ledgers, and UiPath only sees one.

The first ledger is platform consumption: Agent Units, Platform Units, the UiPath invoice. UiPath meters it precisely and gives you a call cap.

The second ledger is what the agent buys in the world: the purchase order it submits, the SaaS renewal it approves, the flight it books, the supplier it pays, the API it tops up. That money never appears in Agent Units, and no UiPath policy field can read it. An agent capped at 50 tool calls per session can submit a 40,000 dollar purchase order on call 12 and never trip a single check, because the amount is inside the tool arguments and the only operator that can touch tool arguments is a regex.

If your UiPath agents read data, draft documents and hand them to a human or to a business process that already has approval limits, you are covered and you should not buy anything else. If any agent holds a card, a wallet, a payment API or purchasing authority, the second ledger is unguarded, and that is what a per-agent spend policy is for: a budget denominated in dollars, a counterparty allowlist, an approval threshold that fires on the amount, and a cumulative limit that does not reset when the session does.

A rollout checklist for UiPath agents that can spend

  1. Split the two ledgers on paper first. List every agent and mark whether it can move money outside UiPath. Agents that only create documents inherit your existing approval chain. Agents with a card, wallet or payment API do not.
  2. Turn on the UiPath controls you already own. Set max_tool_calls_per_session and max_llm_calls_per_session on every production agent. They are free, they cap your Agent Unit bill, and they limit blast radius during a loop.
  3. Run policies in NoOp first. Use the simulated verdict and read deniedCount from getOperationSummary before you enforce, so you learn what a policy would have blocked without breaking a live process.
  4. Use require_approval for the irreversible steps. UiPath can escalate to a human at the tool call. Wire it to the tools that pay, transfer or commit, even though you cannot key it to an amount.
  5. Add a dollar ceiling outside UiPath. Give each agent a funded wallet or a virtual card with a real monthly limit, lock it to the merchants it is allowed to use, and require approval above a threshold you set in dollars. That is the control the five session counters cannot express.
  6. Reconcile both ledgers monthly. Pull getUnitConsumptionSummary for the UiPath side and your card or wallet statement for the other, per agent, so cost per outcome is a number you can defend.

AgentsPay is built for step five. Each agent gets its own wallet and scoped virtual card, a budget in dollars that is cumulative rather than per session, spend controls by merchant and category, approval thresholds that fire on the amount, and an audit trail of every authorization. It sits alongside UiPath rather than replacing anything: UiPath keeps governing what the agent does, and the wallet governs what it can pay.

Whatever standard moves the money, AgentsPay is the rail-neutral control plane that keeps it governed. See how it works and the control surfaces that enforce policy, approvals, and audit on every transaction.

Measured

UiPath's public SDKs, measured 23 September 2026

Downloaded from npm and PyPI with no account. Money regex: amount, currency, budget, spend, price, cost, payment, invoice, monetary, dollar, purchase, usd, billing, charge, fee, wallet, card.

Package scanned Distinct property names Money-regex hits Reading
@uipath/uipath-typescript 1.7.2 (npm) 1,157 across 938 types 3 All three false positives on "fee": feedId, feedbackCategories, feedbackRating
uipath 2.14.25 (PyPI) 673 across 192 files 2 Both false positives: cached_agent_card (A2A), max_llm_concurrency ("currency")
UiPath policy compiler (yaml_index.py) 11 check types, 5 numeric fields 1 require_amount, and it tests the agent's text output, not a transaction
UiPath shipped OAuth scopes doc 23 scopes, 6 write 0 No licensing, billing or spend scope exists
stripe 22.6.2 (npm), positive control 2,493 across 486 files 376 (15.1%) The regex fires hard when a vendor models money

The policy language

Every numeric field a UiPath agent policy can test

The complete list from the policy compiler in uipath 2.14.25. There are five, and gt is the only numeric operator that can be applied to them.

Check type Setting Field tested Unit
budget max_tool_calls_per_session session_state.tool_calls Calls
budget max_tool_calls_per_minute session_state.tool_calls_per_minute Calls per minute
budget max_consecutive_tool_calls session_state.consecutive_tool_calls Calls in a row
rate_limit max_llm_calls_per_session session_state.llm_calls Calls
rate_limit max_llm_calls_per_minute session_state.llm_calls_per_minute Calls per minute
parameter_validation additional_patterns tool_args (regex only) Pattern match, no comparison
Any check An amount in dollars Does not exist No monetary field in the language

Read versus write

The UiPath SDK writes constantly, except where money would live

Service operations in @uipath/uipath-typescript 1.7.2. 225 operations across 26 modules, 65 of them writes.

Module Operations Write operations Examples
entities 38 16 create, deleteRecords, assignRoles, updateRecordById
conversational-agent 22 8 create, startSession, updateSettings, uploadAttachment
tasks 18 7 create, assign, complete, editMetadata
maestro-processes 18 2 cancel, resume
jobs 8 4 stop, restart, resume, linkAttachment
agents 10 0 Every operation begins with get and takes a start and end time
governance 2 0 getPolicyTraces, getOperationSummary. Read the verdict, never set the rule

Two ledgers

What UiPath governs and what it leaves open

Both columns are real costs of running an agent. UiPath meters one of them.

Question UiPath platform consumption What the agent buys
Metered? Yes, to a fraction of an Agent Unit Not at all
Capped? Yes, by call count per session No field exists to cap it
Cumulative limit? No, every session restarts at zero No
Approval on amount? Escalation exists, but cannot key on an amount No
Counterparty control? tool_allowlist names tools, never merchants No
Shows on the UiPath invoice? Yes No, it lands on a card or bank account

Frequently asked

Questions people ask about UiPath Agentic Automation

What is UiPath agentic automation?

UiPath agentic automation is UiPath's platform for building, orchestrating and governing AI agents alongside its RPA robots and human approvers. Agents are built in Agent Builder, sequenced by Maestro, and metered in Agent Units. UiPath moved to this positioning at its FUSION conference in September 2025.

Does UiPath have spend controls for AI agents?

UiPath has usage controls, not spend controls. Measured on 23 September 2026, its policy engine includes a check named budget whose three settings all count tool calls, plus a rate limit on LLM calls. Across 1,157 property names in the TypeScript SDK and 673 in the Python SDK there is no amount, currency or dollar field, so no UiPath policy can be given a figure in money.

What does the UiPath budget policy check actually limit?

It limits three counts: tool calls per session, tool calls per minute, and consecutive tool calls. When any is exceeded the policy engine returns the message "Tool budget exceeded". Because UiPath bills hosted models per LLM call, this does cap your UiPath bill. It does not cap what the agent purchases.

What are UiPath Agent Units and how are they consumed?

Agent Units are UiPath's consumption meter for agent activity, drawn down at both design time and run time. With UiPath-hosted models they are charged per LLM call: 2 units on the Premium tier, 1 on Standard and 0.8 on Basic. With a customer-managed model, consumption is 1 unit per agent run regardless of how many LLM calls happen inside it.

Can a UiPath policy require approval before an agent spends money?

It can require approval, but not because of an amount. UiPath maps the YAML keyword require_approval to an ESCALATE action and can fire it at the tool call, so you can force a human decision before a paying tool runs. What you cannot write is a rule that triggers only above a threshold, because no monetary field exists to compare against.

Does UiPath governance reset between agent sessions?

Yes. Every numeric field in the policy language is prefixed session_state, and the compiler contains no cumulative, daily, weekly or monthly counter. A limit of 50 tool calls applies to one session, and the next session starts again at zero, so a per-session cap is not a monthly budget.

Can a UiPath policy read the amount inside a tool call?

It can read the arguments but cannot compare them numerically. The parameter_validation check applies a regular expression to the tool_args field and reports a suspicious pattern. The only numeric operator in the language is gt, and the compiler binds it exclusively to the five per-session call counters, so an amount in the arguments cannot be tested against a threshold.

What is the difference between Agent Units and Platform Units in UiPath?

Agent Units meter agent-specific activity, while Platform Units are the broader consumable in UiPath's Unified pricing that covers other platform capabilities. The SDK exposes both separately as consumedAGUQuantity and consumedPLTUQuantity so you can see which meter an agent drew from. Neither has a published dollar rate.

Does UiPath publish a price per Agent Unit?

No. UiPath publishes consumption rates in units, not a dollar value per unit. The public pricing page lists Community as free and Basic from 25 dollars a month, with Standard and Enterprise set by sales, so the dollar cost of an Agent Unit is agreed in your order form and varies with volume and term.

Is UiPath governance agent-aware?

Fully. The governance trace records an actorProcessType documented as a coded agent or an RPA process, along with the actor identity, the resource acted on and the policy verdict. The policy engine knows exactly which agent did what and still has no field in which to express how much it may spend.

Do I need a separate spend policy layer if I run UiPath agents?

Only if an agent can move money outside UiPath. Agents that read data and create documents inherit whatever approval limits your business processes already enforce. If an agent holds a card, a wallet, a payment API or purchasing authority, add a dollar budget, a merchant allowlist and an approval threshold keyed to the amount before it goes live.

How does UiPath compare with other agent platforms on spend limits?

UiPath is ahead of most on governance mechanics and behind all of them on money. Microsoft Agent 365 governs identity and access with no monetary field at all, AWS Bedrock AgentCore does have one optional per-session spend amount that resets each session, and UiPath sits in between: a real policy engine with approvals, but every limit denominated in calls rather than currency.

Keep reading

More explainers

Workday AI Agents

Workday AI Agents

Workday now registers AI agents the way it registers employees, in the Agent System of Record, and more than 65 partners are wiring their agents into it. We downloaded the API specification Workday publishes for that registry to answer the question a CFO asks before any agent goes live: where is the spending limit? Workday's documents carry plenty of money controls. The agent record carries none.

Read

Oracle AI Agent Studio

Oracle AI Agent Studio

Oracle AI Agent Studio is included with every Oracle Fusion Cloud subscription, and it now lets a finance team build agents that call any REST API or MCP server. We read the API specification Oracle publishes for those agents to answer the question a controller asks before switching one on: what stops an agent spending money? Inside Fusion, quite a lot. Outside Fusion, nothing in the agent model does.

Read

ServiceNow AI Control Tower

ServiceNow AI Control Tower

ServiceNow AI Control Tower is the most complete agent inventory and risk console a large US enterprise can buy, and it now reaches across AWS, Google Cloud and Azure. We read the schema ServiceNow ships to developers to answer the one question the rollout meeting always ends on: can it stop an agent from spending money? It cannot, and the reason is written into the data model.

Read

Gemini Enterprise

Gemini Enterprise

Google did something in August 2026 that the other agent platforms have not done: it shipped a hard monthly spend cap that genuinely stops usage instead of emailing you about it. That deserves credit, and it also moves the interesting question one step along. A cap that stops something is only as useful as the thing it is scoped to, so we went and measured what Google can actually point that cap at, in the API model Google publishes for anyone to read.

Read

Salesforce Agentforce

Salesforce Agentforce

Agentforce is the largest agent platform any US enterprise is likely to already own, and it moved to consumption billing, which means the meter now runs on what your agents do rather than on how many seats you bought. That raises a finance question the rollout deck rarely answers: when an Agentforce agent is loose in production, what actually stops it spending. We went and measured the answer in Salesforce own published object model rather than guessing at it.

Read

AWS AgentCore

AWS AgentCore

Amazon shipped the missing piece in August 2026. Bedrock AgentCore Payments went generally available, and it is a real payments product: an agent can now hold a wallet, meet an HTTP 402, pay, and carry on reasoning without a human in the loop. So the question a platform lead has to answer stopped being whether AWS gives agents money and became a narrower, more awkward one: how much of a spend policy did AWS actually ship? We went and measured it, property by property, in the API model AWS publishes.

Read

Microsoft Agent 365

Microsoft Agent 365

Microsoft shipped a control plane for AI agents, and it is a good one. It gives every agent an identity, a registry entry, an owner, a sponsor and a Conditional Access policy. Then somebody in finance asks the obvious follow-up question: fine, but what stops the agent from spending money? This page answers what Agent 365 costs, what it governs, and what we measured when we went looking for a dollar amount anywhere in Microsoft's agent governance surface.

Read

QuickBooks MCP Server

QuickBooks MCP server

Connecting an accounting system to an AI assistant is now a ten minute job. Deciding what that assistant is allowed to do once it is connected is the part nobody writes about, and it is the part your controller will ask about first. This page compares what the official QuickBooks, NetSuite and Xero MCP servers actually hand a model, measured rather than summarized from marketing pages.

Read

Payment MCP Servers

payment MCP servers

Every large payment company shipped an MCP server in the last eighteen months, and almost every write-up of them is a setup tutorial. The setup is the easy part. The question worth answering before you connect one to a production account is narrower and much less comfortable: what, exactly, can the model on the other end of that connection do to your money?

Read

PayPal Agentic Commerce

PayPal Agentic Commerce

PayPal made a bet that most merchants would rather not implement a commerce protocol at all. Where Stripe and OpenAI shipped a spec for you to build against, PayPal shipped two products that sit on top of the checkout you already have, and then bought a company to make the catalog half work. That choice is the whole story: it explains why Agent Ready needs almost no engineering from you, why there is nothing for an agent to discover about your store on the open web, and why the thing PayPal will not do for you is the thing that gets expensive later.

Read

Shopify Agentic Commerce

Shopify Agentic Commerce

Shopify switched agentic commerce on by default, so your store is probably already selling to AI assistants whether or not anyone on your team configured it. Instead of restating the announcement, we checked something you can check too: on September 2, 2026 we requested the machine-readable capability file that Shopify publishes for real storefronts, on fourteen well-known US brand domains, and read what it exposes to an agent. Eleven answered correctly. The three that did not share one trait, and it is quietly costing them agent traffic.

Read

Web Bot Auth

Web Bot Auth

Web Bot Auth is the reason your agent either gets served or gets throttled with the scrapers. Almost everything written about it repeats the same architecture diagram, so we did something different: on September 1, 2026 we fetched the published key directories of more than twenty major AI operators and infrastructure vendors to see who is genuinely signing their traffic. Four were. The results are in the first table.

Read

Tempo Blockchain

the Tempo blockchain

Tempo is the payments chain Stripe and Paradigm built, and it shipped with a protocol that lets software pay for things on its own. It settles machine payments in under a second. It has nothing at all to say about whether your agent should have paid.

Read

AI Agent Governance

AI agent governance

Every agentic AI governance framework published so far governs the same four things: identity, tools, data and prompts. Not one of them carries a budget. Here is what the real frameworks say, which guardrails actually bind at runtime, and what to do about the last mile none of them reach.

Read

A2A Protocol

A2A Protocol

Most explanations of the A2A protocol stop at the sentence that agents can now talk to each other. That was true in April 2025 and it is no longer the interesting part. A2A shipped version 1.0 in April 2026 under Linux Foundation governance, it runs in production inside Azure AI Foundry and Amazon Bedrock AgentCore, and the questions engineers actually get stuck on are narrower: what an Agent Card commits you to, when to reach for MCP instead, and what happens the first time one of your agents has to pay another one for the work. That last question has a specific answer, and it is not in the core spec.

Read

Mastercard Agent Pay

Mastercard Agent Pay

Nearly every article about Mastercard Agent Pay is a retelling of one press release from April 2025, the one where Mastercard said AI agents would be able to shop with Agentic Tokens and named Microsoft as the first platform. That was sixteen months ago, and four more things have shipped since. Reading only the launch coverage leaves you with roughly a quarter of the picture, and the missing three quarters are the parts that decide whether you can actually put this into production.

Read

Visa Intelligent Commerce

Visa Intelligent Commerce

Almost everything written about Visa Intelligent Commerce is a retelling of the April 2025 announcement, when Visa said AI agents would be able to pay with a Visa credential. Three more things have shipped since, including an open agent-identity protocol built with Cloudflare that most coverage does not mention at all. This page is the current version, checked against Visa’s own developer documentation and newsroom in August 2026.

Read

Stripe agentic commerce

Stripe agentic commerce

Most writing about Stripe and agentic commerce is still a retelling of the September 2025 launch week, when Stripe and OpenAI shipped Instant Checkout and published the Agentic Commerce Protocol together. Stripe has built a good deal more since then, and some of it points in a direction the launch coverage never anticipated. This page is the current version, checked against Stripe’s own documentation in August 2026.

Read

ChatGPT Instant Checkout

ChatGPT Instant Checkout

Almost every guide to ChatGPT Instant Checkout still reads like it was written the week it launched, walking merchants through how to apply and what the fee will be. OpenAI changed course in March 2026. Here is the accurate version: what Instant Checkout was, what the numbers actually looked like, what replaced it, and which parts of the stack are still very much alive.

Read

Google AP2

Google AP2

Most guides to Google AP2 still describe an Intent Mandate and a Cart Mandate, because most of them are rewrites of the September 2025 launch post. The specification moved. Here is what the Agent Payments Protocol actually defines today, and the one question it deliberately does not answer.

Read

Human in the loop AI

Human in the Loop AI

Every guide to human in the loop AI describes the same shape: the agent pauses, a person decides, the agent continues. The shape is right. What almost none of them ask is a harder question, which is where the pause is enforced, because a pause written into the agent's own code is a pause the agent is trusted to honor.

Read

AI agent cost

AI Agent Cost

Every cost guide for AI agents answers the same two questions: what does it cost to build, and what does it cost to run. Both are answerable, and both are on somebody's invoice. The third question is the one that ends up in a variance report, because the agent also spends your money, and nobody sends you a bill for that.

Read

Agentic checkout

Agentic Checkout

Nearly every guide to agentic checkout is written for the merchant who wants to receive these orders. Far fewer are written for the company whose agents are placing them, which is odd, because agentic checkout quietly removes the one screen where spending used to get a second look.

Read

API monetization

API Monetization

Most guides to API monetization argue about which pricing model wins. The harder question in 2026 is who is calling. An API priced for a signed-up developer with a key behaves very differently when the caller is an agent that showed up once, wants one record, and has no account.

Read

x402 protocol

x402 Protocol

x402 took the one HTTP status code the web never used and turned it into a payment rail machines can drive. The protocol is elegant and genuinely small. The part it deliberately leaves to you is the budget.

Read

AI procurement agents

AI Procurement Agents

Every major procurement suite shipped agents during 2026. Almost none of them answer the question your controller will ask first, which is what happens when the agent is wrong about a purchase and the money has already moved.

Read

Agentic payments

Agentic Payments

Agentic payments move money with no human at the checkout. The rails to do it all shipped during 2026. The part most teams have not solved is deciding, before the money moves, whether the agent was allowed to spend it.

Read

AI agent monetization

AI Agent Monetization

Every AI agent company is rewriting its price list. The models that survive are metered. The ones that quietly fail are the ones where nobody measured what a single task costs to serve.

Read

Agent payment platforms

AI Agent Payment Platforms

Five different kinds of product now call themselves an AI agent payment platform, and they solve five different problems. Picking the wrong category is the expensive mistake, not picking the wrong vendor inside a category.

Read

Universal Commerce Protocol

the Universal Commerce Protocol (UCP)

Google and Shopify shipped UCP as an open standard so an AI agent can check out at any merchant that supports it. Here is what the specification actually defines, where it is live for US buyers, and the one thing it deliberately leaves to you.

Read

MCP Payments

MCP Payments

MCP payments are how an AI agent discovers a payment tool and calls it to move money. The catch: the Model Context Protocol carries the tool call, not the spending decision, so nothing in the stack asks whether the purchase should have happened.

Read

Visa Intelligent Commerce vs Mastercard Agent Pay

Visa Intelligent Commerce vs Mastercard Agent Pay

Visa Intelligent Commerce and Mastercard Agent Pay are the two big card networks racing to let AI agents pay. They take different routes to the same idea, and neither one decides whether a given purchase should have happened.

Read

Agentic Commerce Protocol

the Agentic Commerce Protocol

ACP is the open standard behind agentic checkout in ChatGPT. It tells a merchant how to sell to an AI agent. It says nothing about whether your agent should have made the purchase.

Read

AP2 vs ACP vs x402

AP2 vs ACP vs x402

AP2, ACP, and x402 are the three standards shaping how AI agents pay. They solve different layers of the problem, and most real systems will touch more than one.

Read

Machine payments protocol

Machine payments protocol

As software starts paying software, machine payments protocols define how value moves without a human at the keyboard. The harder question is how to keep that spending governed.

Read

Know Your Agent (KYA)

Know Your Agent

KYA, or Know Your Agent, extends the idea of customer due diligence to autonomous software. When an agent spends, you need to know which agent, on whose authority, and under what limits.

Read

Keep agent spending governed

Add policy, hard limits, human approval, and an immutable audit trail across any protocol or rail. Start in the sandbox today.

Never moves money without policy