CLAUDE LABJP
MODEL — Claude Fable 5.1 and Claude Mythos 5.1 landed on September 1. They are the same underlying model; only the strength of the safeguards differsPRICING — Per-token rates hold at $10/$50 per MTok. What changed is cache reads, cut 75% to $0.25 per MTokCOST — How much that saves depends on your workload: roughly 25% for typical use, up to about 45% for context-heavy agentic work. Worth measuring your own split before quoting a numberBENCH — Terminal-Bench-Science 0.1 climbs from 24.7% on Fable 5 to 52.6%. Anthropic also states a standard error of 3.5-4.5 points, which is worth remembering before reading small gaps as realSAFEGUARDS — Sharper cyber safeguards cut interventions in Claude Code sessions by roughly 60% on average. Finding vulnerabilities is now allowed; developing exploits still is notAPI — New API accounts created from today can no longer edit prior context while preserving Claude's thinking transcript. It is an anti-distillation measure, and existing accounts are unaffected for nowMODEL — Claude Fable 5.1 and Claude Mythos 5.1 landed on September 1. They are the same underlying model; only the strength of the safeguards differsPRICING — Per-token rates hold at $10/$50 per MTok. What changed is cache reads, cut 75% to $0.25 per MTokCOST — How much that saves depends on your workload: roughly 25% for typical use, up to about 45% for context-heavy agentic work. Worth measuring your own split before quoting a numberBENCH — Terminal-Bench-Science 0.1 climbs from 24.7% on Fable 5 to 52.6%. Anthropic also states a standard error of 3.5-4.5 points, which is worth remembering before reading small gaps as realSAFEGUARDS — Sharper cyber safeguards cut interventions in Claude Code sessions by roughly 60% on average. Finding vulnerabilities is now allowed; developing exploits still is notAPI — New API accounts created from today can no longer edit prior context while preserving Claude's thinking transcript. It is an anti-distillation measure, and existing accounts are unaffected for now
Articles/Claude Code
Claude Code/2026-07-19Intermediate

I Could No Longer Remember What I'd Changed in Auto Mode — Where claude auto-mode reset Fits In

Running nightly automation for weeks, I kept nudging my auto-mode settings one at a time. One morning a small oddity made me realize I could not recall what I had changed. Here is how I rebuilt my configuration around claude auto-mode reset as a known-good baseline, from a solo developer's field notes.

Claude Code244auto mode3solo development3operations26configuration9

One morning I was reading through the previous night's run logs, as usual, and my hand stopped.

A task had rewritten a file without showing a confirmation prompt. That was a spot where the old me would have paused to look with my own eyes before letting anything through.

When, and why, had the behavior changed? I traced back through the logs and still could not say for sure.

Configuration only ever grows

The cause was not an accident. It was accumulation.

When you run Claude Code overnight as a solo developer, every time you hit friction you want to make a small adjustment. This action no longer needs confirming. This command can be allowed. This timeout can be stretched. Each of those, on the night you make it, is a reasonable call.

But adjustments are almost always additions. The moment to ask "I loosened that setting back then — is it still right to leave it loose now that things have changed?" never arrives on its own.

When I counted, I had touched auto-mode settings seven times in the last three weeks. Of those seven, I could immediately explain why for only three. For the rest, the fact of the change remained but the reason had fallen away.

Working alone as an indie developer, there is no colleague to prompt that review. The configuration quietly grows heavier, and it only surfaces as a vague unease on some later morning.

claude auto-mode reset as a baseline

Claude Code gained a command, claude auto-mode reset. It returns your auto-mode configuration to the defaults.

Running it shows a confirmation prompt — a small beat so you do not blow past it by accident. When your intent is settled, --yes skips the confirmation.

# Return the auto-mode configuration to defaults (with a confirmation prompt)
claude auto-mode reset
 
# Skip the confirmation, e.g. when calling from a script
claude auto-mode reset --yes

What made me grateful for this command was one thing: it gives you a place to return to.

The frightening part of a keep-adding workflow is that the more changes you stack, the less you can tell where the bare state was. If you can always return to a known baseline, then no matter how much you touch along the way, you never get lost.

Not "wipe it" but "rebuild it"

That said, a reset naturally clears every loosening you had made. So I decided never to run reset on its own.

What I do is simple. I write down only the settings I have intentionally changed from the defaults, each with its reason, into a single note. Then I run reset, and re-apply by hand only what survived in the note.

  1. Write it down. List the items you currently keep away from the defaults in auto mode, each with the reason you changed it. Any item whose reason you cannot write down is a signal to pause right there.
  2. Reset. Run claude auto-mode reset to return the configuration to defaults. At this point your mental image of the settings goes blank too, which is the point.
  3. Re-choose. Read down the note and re-apply only what you still need. The items you could not justify tend to fall away naturally here.

The first time I ran this cleanup, I brought back four of the seven items. The other three were stale loosenings I no longer needed.

A setting you cannot justify is usually a setting you do not need. Reset worked as a hard, one-time boundary that forced that sorting to happen.

Deciding in advance when to reset

Reset is a strong operation, so I do not think of it as something to run on a whim. I narrowed my triggers to two.

The first is before a larger piece of work. On the night before I hand off a long implementation or a wide-ranging change, I return the settings to baseline and then re-add only the loosenings I need. Starting from the bare state makes it clear to me what I allowed for that particular night.

The second is when I feel that morning unease. When "I cannot remember why it behaves this way" happens, as it did here, returning to the baseline is often faster than reasoning out the cause one piece at a time — because it lets you line up your starting point for diagnosis with a known state.

Trigger to resetWhat it buys you
Before a larger piece of workClarity, for yourself, about what you allowed that night
When a morning unease shows upA known starting point for diagnosis

Conversely, resetting on every small daily tweak does not fit. It would tear down the reasonable settings you worked to build up each time. Returning to baseline belongs only at the joints, as a cleanup you do at milestones.

From "growing" settings to "reviewing" them

What this episode changed for me was how I relate to configuration.

I used to feel as though I were growing my settings each time I hit friction. Things you have grown become hard to let go of without noticing. But automation settings, the longer you keep growing them, drift quietly away from your original intent.

Now I try to spend time reviewing them with the same weight I give to growing them. claude auto-mode reset gave that review a concrete foothold: a baseline I can return to.

For the safety-side behavior of auto mode itself, I wrote from a different angle in The Night of an Empty Variable and rm -rf. For thinning out permission rules once they pile up, see When a Session Full of Allow Rules Slows Down Every Turn. And designing permissions for unattended runs is a close neighbor in Designing Claude Code Skills to Run Unattended.

Hold on to one place you can return to, before your settings become something you can no longer recall. It is a small thing, but it has become a quiet support for trusting the night's tasks. Thank you for reading.

Share

Thank You for Reading

Claude Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $15 for lifetime access
View Membership →

If you found this article helpful, a small tip ($1.50) would mean a lot to us. Your support helps keep this site ad-free and covers server and hosting costs.

Related Articles

Claude Code2026-07-14
An Empty Variable and rm -rf: How Claude Code's Auto Mode Preflight Saved My Late-Night Cleanup
An empty variable nearly turned rm -rf into a wide delete. Why set -u lets an empty string pass, and the cleanup script I rebuilt with dry run as the default.
Claude Code2026-09-01
Once I passed a dozen MCP servers, I stopped trusting the startup list
Only some of the servers that say connection failed at startup are ones you can actually fix. Here is a probe that separates no-response, launch failure, and protocol rejection, measured across a 14-server fleet where sequential 22.03s became parallel 5.09s, and where trimming the deadline quietly turned healthy servers into failures.
Claude Code2026-08-31
Half of My Scheduled Runs Vanished Without a Single Error
A batch job set to run twice a day was only firing once. No errors, no failure alerts. Here is how to expand your own schedule, count expected runs, and reconcile them against execution records to catch silent misses.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →