During an incident, agents can buy the right infra and tooling fast—with strict approvals, vendor locks, and durable evidence logs.
When something is on fire, teams need domains, sandbox infra, temporary services, and tooling immediately. But “emergency spend” is also where mistakes and abuse are easiest—especially if an agent can purchase broadly.
Create an incident-specific policy: strict approval gates, allowlisted vendors, and hard caps. Use dedicated cards that auto-expire and require intent + reason for any sensitive credential access.
Fail-closed defaults with human approval for high-value or new-merchant spend.
Allow only approved providers (registrars, cloud, security tooling) during the incident window.
Cards expire at incident close so temporary access can’t become long-term spend.
Every emergency purchase is linked to an incident ID and an intent for later review.
Agent creates an intent with incident ID, purpose, expected merchant, and expected amount.
Policy escalates purchases above a threshold or for new vendors.
Card is issued/unlocked for the minimum time required to complete the purchase.
Transaction verified; evidence attached to incident timeline.
// Incident-scoped intent
const intent = await signets.intents.create({
purpose: "Incident 2026-02-05: buy sandbox VM credits for containment",
expectedAmount: 20000,
expectedMerchant: "cloud.example",
});
// Approval required for incident spend above threshold
const intentState = await signets.intents.get({ intentId: intent.intentId });Issue your first card and start building.