Agent identity
Give each autonomous actor an owner, a purpose, and a lifecycle.
2AYE Authorize
Register agents and tools, evaluate proposed actions, require approval, isolate credentials, and preserve execution evidence.
Give each autonomous actor an owner, a purpose, and a lifecycle.
Allow, deny, attenuate, pause, or require a named approval.
A grant covers the exact action that was evaluated, and nothing adjacent to it.
Compare what was authorized against what actually ran.
Where 2AYE Authorize is used
Finance operations
An agent renews vendor contracts and pays invoices. The limit that matters is not "how much per month" but "this vendor, this amount, this once".
→A signed contract sets the bounds; each payment is evaluated against it and redeemed once.
Platform engineering
An agent provisions infrastructure. The risk is not the request but what arrives: an instance with an administrator role attached does more than the contract ever allowed.
→What the provider delivered is checked against the authority before the resource is usable.
Security review
An action happened and nobody can say which decision permitted it, under which version of which contract.
→Every decision, grant, redemption and receipt is on one hash-linked chain.
Control path
Every stage can refuse, and a refusal is recorded rather than retried silently. A grant is single-use, short-lived, and bound to the exact parameters that were evaluated.
One request
An agent proposes an action as a closed envelope of predicates. The evaluator decides deterministically and, on ALLOW, issues a single-use grant bound to exactly those parameters. Amounts cross as strings because they are hashed as text.
Open the API reference{
"tenantId": "<tenant>",
"intentId": "<signed-contract>",
"schemaVersion": "1.0",
"agentId": "<agent>",
"tool": "billing",
"action": "renew",
"environment": "production",
"predicates": [
{ "type": "amount", "currency": "USD", "value": "13800.00" },
{ "type": "counterparty_reference", "value": "vendor-4471" }
]
}Enterprise adoption
Name the material parameters of one consequential action, and what would make it acceptable.
Evaluate real proposals without enforcing, and read the decisions and findings.
Require a redeemed grant at the protected resource, and keep the receipt.
Each consequential action moves through the same six control points. See where 2AYE evaluates authority, requests human review, and preserves the outcome.