Claude Auto-Continue: Chrome extension automates tool-use limit interruptions

A developer has released a free, open-source Chrome extension called claude-autocontinue that automatically handles Claude's tool-use limit interruptions on claude.ai. When Claude reaches its limit after roughly 20 tool calls, it displays a 'Continue' button that requires manual clicking, breaking workflow continuity and resending full conversation context each time.
What the extension does
The extension automatically clicks the Continue button whenever the tool-use limit is reached on claude.ai. Key features include:
- Works across all open tabs including background tabs and separate browser windows
- Optional 'Minimize tokens' mode: before resuming, asks Claude to summarize its current state in bullet points to reduce context re-sent on each continuation
- Configurable max continuations (1-999) or set to unlimited
- Pause/resume functionality from the extension popup
Installation and setup
To install:
- Download the zip from the Releases page at https://github.com/timothy22000/claude-autocontinue/releases or clone the repository:
git clone https://github.com/timothy22000/claude-autocontinue.git - Open chrome://extensions/
- Enable Developer mode
- Click 'Load unpacked'
- Point it at the extension/ folder
Testing and verification
The developer included a test harness (test/test.html) with 20 tests covering detection logic, background tab behavior, and multi-window scenarios. You can reproduce the tool-use limit yourself by opening claude.ai and sending: trigger more than 20 tool uses for me please
The extension was built entirely using Claude Code, creating a meta-solution where Claude's agentic coding tool fixes the interruption that breaks Claude's agentic workflows. It's MIT licensed and available for free use.
📖 Read the full source: r/ClaudeAI
👀 See Also

Real-time stock analysis added to Claude Desktop via MCP server
A developer built an MCP server called agent-toolbelt that adds real-time stock analysis capabilities to Claude Desktop and Claude Code, providing live data for investment analysis instead of Claude's training data guesses.

Qwen 3.6 27B Quantization Benchmark: Q4_K_M Beats Q8_0 on Practical Tradeoffs
Evaluated Qwen 3.6 27B across BF16, Q4_K_M, and Q8_0 GGUF quants on HumanEval, HellaSwag, and BFCL. Q4_K_M delivers near-BF16 scores with 48% less RAM, 1.45x speed, and 68.8% smaller file size.

Coding-Flashcards: 800+ Anki cards for Rust, SQLite, Godot, and Wolfram Language
Over 800 markdown flashcards covering Rust, SQLite, Godot, and Wolfram Language from first principles, with scripts to convert to Anki decks or PDFs.

KubeShark: A Kubernetes Skill for Claude Code and Codex to Catch Hallucinated YAML
KubeShark is a failure-mode-first Kubernetes skill for Claude Code and Codex that catches deprecated APIs, misconfigured probes, broken selectors, and other common AI-generated mistakes before they hit production.