claude-code - 💡(How to fix) Fix [Feature] Model-initiated dynamic effort allocation for multi-step operations

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
RAW_BUFFERClick to expand / collapse

Problem

Effort level is set per-session via /model and stays constant across whatever Claude does next. But within a single session — especially during agentic multi-step work — reasoning load varies wildly:

  • Low load: polling a background process, watching a monitor, simple file edits, summarization
  • Medium load: routine code synthesis, well-known refactors, conversational responses
  • High load: substrate debugging with symptom far from cause, architectural design with compounding decisions, multi-file refactor with subtle invariants

The current model forces operators to choose one level for the whole session. Pick High → burn tokens on polling loops. Pick Medium → leave correct architectural paths un-found on hard debugging. Existing UX (#65134, #36303) helps operators adjust manually, but the operator has worse information than the model about which step needs which level.

Proposed

Let Claude itself suggest effort changes inline. Two flavors worth considering:

  1. Suggestion-only: model emits a structured hint per tool sequence (e.g., [effort-suggested: high] with a brief reason); operator sees it inline and /model adjusts if they agree. Safest — operator stays in control of cost.
  2. Bounded auto-adjust: operator configures a range (--effort-min low --effort-max high); model self-adjusts within that range per operation. Surfaced in transcript so cost is visible.

Either flavor needs:

  • Visibility (operator sees when/why a suggestion fires; transcript shows actual level per call)
  • Bounds (operator can cap max to control cost)
  • Quick override (a /effort lock <level> to disable dynamic mode for a turn or two)

Why now

The substrate-style use case (Claude Code driving a multi-agent pilot, monitoring background processes for completions, then doing complex code synthesis when results land) has wildly varying reasoning load within a single session. Today the operator has to either pick the max and pay everywhere, or pick the floor and miss hard reasoning. Model-initiated effort is the right primitive for agentic-loop workflows.

Distinguished from related

  • #65134 — operator-UX: can't change /effort while prompt is being typed. Different pain point.
  • #36303 (closed/stale) — operator-initiated per-query effort with auto-revert. Still operator-initiated; this proposal is model-initiated.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING