Claude Code's Auto Mode Default: A Model for Docusign Approv

Article image
16 Aug 2026
10 min
AI Agents
Docusign IAM
Automation

Anthropic made Claude Code's Auto Mode the default permission setting for new sessions on Pro, Max, and Team plans starting August 14, 2026, meaning the agent now proceeds through most tool calls without asking first, and only pauses for actions a classifier judges irreversible, destructive, or aimed outside the working environment. That three-part test is a usable template for a question every Docusign IAM customer letting AI agents touch agreements is now facing: which workflow steps can run unattended, and which need a person to click approve.

This isn't a Claude Code tutorial. It's a borrowed framework. Anthropic spent real engineering effort deciding where the human-approval line sits in an autonomous coding agent, and the underlying test transfers cleanly to Docusign Workflow Builder (formerly Maestro) and Iris AI-driven agreement review. If you're building or evaluating agentic workflows on Docusign IAM, this is the checklist to steal.

What did Anthropic change in Claude Code's Auto Mode, and when

Starting August 14, 2026, new Claude Code sessions on Pro, Max, and Team plans default to Auto Mode instead of prompting for approval on every command. Enterprise, API, and cloud-partner deployments on Amazon Bedrock, Google Cloud, and Microsoft Foundry remain opt-in while administrators evaluate the change on their own timeline. That split matters: Anthropic shipped the more permissive default to the self-serve tiers first and left the regulated, contractually-governed tiers to opt in deliberately. It's the same posture most enterprise software vendors take with any new autonomy setting, including Docusign.

Anthropic's stated reason for the change is not convenience alone. In a controlled study with 1,053 paid testers, the company swapped a real permission prompt for a clearly dangerous command (described in text, nothing executed) and measured how often humans caught it versus how often the Auto Mode classifier caught it. Human testers caught the dangerous command about 13.6% of the time, a rate that dropped to roughly 5% late in long sessions as reviewers got fatigued. The Auto Mode classifier blocked the same commands about 89% of the time, flat regardless of session length.

That's the finding worth sitting with. Human review of AI agent actions doesn't get more reliable with more repetitions. It gets worse. The person clicking "approve" on the fortieth workflow step of the day is not meaningfully safer than no review at all. If your Docusign IAM approval strategy assumes a human checking every agent action will catch problems, the Claude Code data says that assumption degrades under volume.

What is the irreversible, destructive, or external-action test

Anthropic's classifier evaluates each tool call Claude Code wants to make against three questions, and blocks the action (routing it back to a safer path or a user prompt) if any answer is yes:

  • Is it irreversible? Can the action be undone without cost or data loss?
  • Is it destructive? Does it delete, overwrite, or corrupt something that already exists?
  • Does it reach outside the working environment? Does it touch a system, account, or party beyond the sandbox Claude is operating in?

Everything that clears all three checks runs without a prompt. Everything that fails even one gets gated. This is a narrower bar than "anything risky" and a much narrower bar than "anything the agent does." It's specifically calibrated to the handful of action types that are expensive to get wrong, and it leaves the high-volume, low-stakes majority of actions to run unattended.

How does this map to human-approval steps in Docusign Workflow Builder

Run the same three questions against a typical agreement workflow and the gating logic becomes obvious. Docusign Workflow Builder (formerly Maestro) connects Salesforce, ServiceNow, Power Automate, and other systems through Docusign App Center to automate document generation, approval routing, and signature collection, and an agent layered on top of it (via MCP or a custom integration) can plausibly touch every step in that chain. Not all of those steps carry the same risk.

A sample Workflow Builder scenario from Docusign's own documentation involves collecting customer data through a web form, verifying identity, generating a document pre-filled with that data, sending it for signature, and archiving the completed agreement to external storage. Walk that chain through the classifier test:

  • Populating a document template from CRM data: reversible, non-destructive, stays inside the workflow. Safe to automate.
  • Routing a document to the next approver in sequence: reversible (the routing can be redone), non-destructive, stays inside the org. Safe to automate.
  • Sending a document out for signature: this is the first step that reaches outside the working environment. It puts a document in front of a counterparty. Gate it.
  • Voiding an executed envelope: irreversible in practice (a voided envelope cannot be un-voided; a new one has to be issued) and it reaches outside the environment if the counterparty has already seen it. Gate it.
  • Archiving a completed agreement to storage: reversible, non-destructive, internal. Safe to automate.

Which agreement actions are safe to automate today

Apply the same three-question filter across a typical Docusign IAM agent's task list and a consistent pattern emerges. Actions that stay internal, don't destroy prior state, and can be corrected without external consequence are good automation candidates:

  • Data extraction and clause tagging. An agent using Iris AI to pull effective dates, renewal terms, or governing law from an agreement isn't changing anything. It's reading. Full automation is reasonable here.
  • Drafting and template population. Filling a contract template from CRM or ERP fields, before anything is sent, is reversible. A bad draft gets caught before it leaves the building.
  • Internal routing and approval-queue management. Moving a document to the next internal reviewer, re-ordering an approval chain, or flagging a document as stale for internal review doesn't touch the counterparty.
  • Status checks and reminders. Nudging an internal stakeholder that a document is waiting on them is low-stakes and easily undone.
  • Archiving and metadata tagging. Filing a completed agreement, tagging it with contract type or department, doesn't change the underlying document.

These map to the same category Anthropic's classifier waves through: high-volume, internal, correctable actions where waiting for a human to click approve adds latency without adding real safety.

Which agreement actions still need a human gate

The actions that fail the irreversible-destructive-external test in a coding agent map almost one to one onto the actions that matter most in an agreement workflow:

  • Sending an agreement for signature. The moment a document leaves your organization and lands in a counterparty's inbox, you're outside the working environment. This should always be a human-confirmed step, or at minimum logged with an explicit approval record.
  • Voiding or canceling an executed or in-flight envelope. Effectively irreversible. A voided envelope can't be restored; a replacement has to be issued and re-sent, which itself is an external action.
  • Changing payment terms, pricing, or liability language. These are the clauses most likely to create legal or financial exposure if an agent edits them incorrectly, and the error often isn't visible until a dispute months later. Destructive in the sense that it can silently overwrite negotiated terms.
  • Approving a contract on behalf of a signing authority. This is the human-in-the-loop checkpoint that matters most: agentic identity governance generally treats high-risk approvals like this as requiring an explicit human decision rather than autonomous execution, the same logic Anthropic applies to destructive commands (unverified as a Docusign-specific product behavior, but consistent with standard human-in-the-loop practice for agentic systems).
  • Any action that triggers an external system with financial consequences, like initiating a payment, updating a billing record, or notifying a regulator.

Notice what these have in common: they're not necessarily the most frequent actions in a workflow. They're the ones where a mistake is expensive and hard to reverse. That's exactly Anthropic's calibration, and it's the right one for agreements too.

Building an approval-threshold policy for Docusign IAM agents

A practical policy for a team building agents on top of Docusign IAM doesn't need to reinvent this from scratch. It needs three things, mirroring what Anthropic built into Auto Mode:

  1. A default-allow list for internal, reversible, non-destructive actions. Data extraction, drafting, internal routing, and status updates run without a prompt. Log everything for audit, but don't gate on it.
  2. A hard-gate list for irreversible, destructive, or external actions. Sending, voiding, payment-term changes, and signing-authority approvals always stop for a human, no exceptions based on document size or counterparty familiarity.
  3. A safer-path fallback, not a dead end. When Claude Code's classifier blocks something, it usually finds an alternative way to make progress or asks the user, rather than simply failing. The same principle applies to a Docusign agent: a blocked action should route to a queue for the next available reviewer, not stall the entire workflow.

The fatigue data from Anthropic's study is the strongest argument for keeping this list short and specific rather than broad. If everything is gated, you get rubber-stamp approvals and the reliability problem Anthropic's own study documented. If the gate is reserved for the handful of genuinely consequential actions, a human's attention actually lands where it matters. Teams building this today are also the ones who need the connective layer between the platform that triggers a workflow and the workflow itself to be reliable, since a gate is only as good as the event that reaches it.

For a broader look at where agentic patterns are landing across Docusign IAM, see Agentic contract negotiation patterns with Docusign IAM and Building a Docusign agreement bot with Claude and MCP.

FAQ: does Docusign IAM support default-autonomous agent actions today?

Does Docusign IAM ship a Claude Code-style Auto Mode for agreement actions? Not as a named feature. Docusign IAM provides the workflow and identity infrastructure (Workflow Builder, Iris AI, App Center) that agents can act on, but the approval-gating policy described here is something a team building on top of Docusign IAM has to design and implement itself, not something the platform enforces by default.

What is the safest first step for automating with agents on Docusign IAM? Start with read-only and internal actions: data extraction with Iris AI, drafting, and internal routing. These pass the irreversible-destructive-external test cleanly and build a track record before touching anything that reaches a counterparty.

Why did Anthropic decide human review doesn't scale? Because their own testing showed it: human testers caught a planted dangerous command about 13.6% of the time, dropping toward 5% in long sessions, while the automated classifier held steady around 89% regardless of session length. Fatigue, not carelessness, is the mechanism.

Should every Docusign agreement send still require a human click? Yes, under the framework in this article. Sending reaches outside your organization to a counterparty, which fails the external-action test even when the content is routine.

If you're designing an approval policy for agents touching Docusign IAM, that's a working session, not a guess. Talk to the fluidlabs team about mapping your workflow's irreversible, destructive, and external actions before you turn any agent loose on production agreements.

Other articles
Get in touch

Ready to Implement Docusign IAM?

Schedule a 30-minute strategy session. We'll identify the highest-value vertical solution for your organization, walk through the architecture, and map out a build plan — no commitment required.

Submit Your Project Details →

or email us at hello@fluidlabs.com