llm-idle-timeout Fires at 2 Minutes on N100/WSL2 Despite timeoutSeconds Setting

A user on r/openclaw reports that the llm-idle-timeout watchdog fires after exactly 2 minutes on an Intel N100 (16GB RAM) running under WSL2, regardless of the agents.defaults.timeoutSeconds=300 setting. The gateway startup takes over 45 seconds before any LLM call, causing the idle timer to expire prematurely.
Key Details
- Hardware: Intel N100, 16GB RAM, WSL2
- Issue: Gateway startup exceeds 45 seconds; then the 2-minute idle watchdog fires, cutting off the session despite
timeoutSeconds=300being set. - Requested: A configurable
noOutputTimeoutMsparameter to account for slow startup, or a faster startup path optimized for low-power hardware.
The problem stems from the fact that the watchdog counts idle time from the start of the gateway process, not from the first LLM request. On slower hardware like the N100, the prolonged initialization triggers the default 2-minute timeout before a single LLM call can complete.
As a workaround, users could try increasing the system-level idle timeout or adjusting the gateway startup scripts to reduce initialization time. However, the core issue requires a code-level change — either extending the initial idle grace period or exposing a separate noOutputTimeoutMs for the startup phase.
This is a known pain point for developers running OpenClaw on low-power devices (e.g., thin clients, NAS boxes) via WSL2. The GitHub issue is tracked in the OpenClaw repository.
📖 Read the full source: r/openclaw
👀 See Also

Eä: A SIMD Compiler for Python Written in Rust
A developer built Eä, a compiler for SIMD kernels in ~12k lines of Rust that generates shared libraries and Python wrappers from .ea files, achieving 6.6× speedups over NumPy without ctypes or build systems.

Open-Source Framework Uses Claude Code CLI for Automated GitHub Repo Monitoring
A developer has open-sourced a framework that runs Claude Code CLI on a cron schedule to triage GitHub activity across multiple repositories. The tool includes state tracking, deduplication, Discord notifications, and a pre-check system that avoids API costs when nothing has changed.

Testing MiniMax M2.7 via API on Three Real ML and Coding Workflows
A developer benchmarks MiniMax M2.7 against Claude Opus 4.7 on three real tasks: refactoring a PyTorch project, drafting Obsidian notes, and more. Key findings and setup included.

Building a Programming Language with Claude Code: The Cutlet Experiment
Ankur Sethi built a complete programming language called Cutlet using Claude Code over four weeks, with the AI generating every line of code while he focused on guardrails and testing. The language features dynamic typing, vectorized operations, and a REPL, running on macOS and Linux.