CLAUDE LABJP
WORKFLOWS — Dynamic workflows are GA in Claude Code: Claude plans the work, runs hundreds of parallel subagents in one session, and verifies outputs before reporting backSCALE — Paired with Opus 4.8, Claude Code can carry codebase-scale migrations across hundreds of thousands of lines from kickoff to mergeULTRACODE — The ultracode setting, via the effort menu, sets effort to xhigh and lets Claude decide automatically when to use a workflowEFFORT — claude.ai adds an effort control beside the model selector; pick extra (xhigh in Code) or max for harder, long-running tasksWFSIZE — A Dynamic workflow size setting in /config controls how large Claude makes workflows (small, medium, or large agent counts)OPUS48 — Claude Opus 4.8 remains generally available, improving on 4.7 across coding, agentic skills, reasoning, and knowledge workWORKFLOWS — Dynamic workflows are GA in Claude Code: Claude plans the work, runs hundreds of parallel subagents in one session, and verifies outputs before reporting backSCALE — Paired with Opus 4.8, Claude Code can carry codebase-scale migrations across hundreds of thousands of lines from kickoff to mergeULTRACODE — The ultracode setting, via the effort menu, sets effort to xhigh and lets Claude decide automatically when to use a workflowEFFORT — claude.ai adds an effort control beside the model selector; pick extra (xhigh in Code) or max for harder, long-running tasksWFSIZE — A Dynamic workflow size setting in /config controls how large Claude makes workflows (small, medium, or large agent counts)OPUS48 — Claude Opus 4.8 remains generally available, improving on 4.7 across coding, agentic skills, reasoning, and knowledge work
Articles/Claude Code
Claude Code/2026-07-15Advanced

Keeping Unattended Logs Readable — Measuring axScreenReader's Plain-Text Rendering Before Adopting It

Piping Claude Code into a log file leaves you with escape codes and redraw debris instead of an answer. Here is how I enabled axScreenReader across its three entry points, measured the difference on one real task, and moved my unattended runs over to it.

Claude Code190axScreenReaderLogging2Unattended runsTerminal

Premium Article

A task I had left running overnight had failed, so the first thing I did that morning was open the log.

What I found was almost 400KB of text in which the same lines appeared dozens of times over. Spinner frames. Progress indicators overwritten in place. Escape sequences for color. The one thing I needed — which command ran, and how it went wrong — was buried somewhere in that sediment.

Even grep did not help. The same tool call matched over and over. I could not tell whether it had actually run nine times or thirty-seven.

As an indie developer who leaves a few sites worth of work running unattended overnight, whether the morning log is readable feeds straight back into how much time I have left to build. An hour spent isolating a cause is not the price of the failure. It is the price of how it was recorded.

The problem was not what Claude Code had said. It was how it had drawn it. The axScreenReader option that landed on 2026-07-15 switches rendering to plain text, and while it is presented as an accessibility setting, it turns out to be exactly the right tool for keeping unattended logs readable.

Logs bloat because of drawing, not because of output

Claude Code's terminal display does not append lines. It moves the cursor back, erases what it already wrote, and writes again. While a person is watching, this is the right choice — progress updates in one place and your eyes stay still.

Down a pipe, though, every step of that process survives as history. Cursor moves (ESC[A), line erasures (ESC[2K), color codes (ESC[38;5;…m). A spinner redrawing ten times a second leaves ten lines of debris per second in your log.

So the bloat is not Claude being verbose. It is the redraw work — done for a screen nobody was looking at — recorded verbatim. Miss that distinction and you start reaching for the wrong lever: changing --output-format, trying to make the model say less. That is exactly what I did first, convinced I had let the model say too much, hunting for savings in a place that had none.

The way to separate the two is straightforward: count the body after stripping escape sequences, and count raw bytes separately.

Three ways to turn on axScreenReader, and how to choose

There are three entry points. Any one of them flips the behavior, but they differ in blast radius.

Entry pointHowWhat it affectsBest for
CLI flag claude --ax-screen-reader That invocation only One-off reproduction; controlled A/B measurement
Environment variable CLAUDE_AX_SCREEN_READER=1 The process and anything it spawns CI and scheduled runs — no need to rewrite call sites
Settings "axScreenReader": true Every launch that reads those settings A machine or container dedicated to unattended work

I use the environment variable. My unattended runs already go through a wrapper script, so it costs one line there, and my interactive sessions keep the display I am used to. Putting it in settings moves the default for the whole terminal, which gets confusing on a machine where you also work by hand.

The question to ask is simply how far you want the change to reach. Comparing? Use the flag. Changing only the unattended lineage? Environment variable. Machine already dedicated to unattended runs? Settings.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
Why TUI redraws and escape sequences inflate logs, and how to separate that from actual output with measurement
The three ways to enable axScreenReader (flag, env var, settings), what each one touches, and when to pick which
A line-oriented ledger that folds plain-text output into something you can actually read after a failed run
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
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 $10 for lifetime access
View Membership →

Related Articles

Claude Code2026-07-15
Choosing Dynamic Workflow Size and Effort From a Ledger, Not a Hunch
Dynamic Workflows went generally available, handing you the workflow size and effort dials. After a week of picking large and watching only the bill grow, here is how to turn Claude Code's OpenTelemetry console output into a ledger and assign size and effort per task type.
Claude Code2026-07-15
The Types Landed, but Nothing Got Safer — Where I Delegated a JS→TS Migration to Claude Code, and Where I Didn't
A green tsc run does not mean any is gone. Measuring a migration by type coverage, drawing a clear line between what Claude Code handles well and what a human must decide, and a CI ratchet that refuses regressions.
Claude Code2026-07-14
An Empty Variable and rm -rf: How Claude Code's Auto Mode Preflight Saved My Late-Night Cleanup
One night I let Claude Code sweep the build caches out of several app repositories at once, and an empty variable nearly turned a targeted cleanup into a wide delete. Here is the field record of being saved by auto mode's rm -rf preflight, and the confirmation rules I built afterward.
📚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 →