← Hacker News

Claude's AskUserQuestion: "No response after 60s – continued without an answer"

Hacker News · tubignaaso · July 2, 2026

Detailed Analysis

Anthropic's Claude Code has introduced a feature called AskUserQuestion, a tool that allows the AI agent to pause mid-task and solicit clarifying input from a human user rather than guessing at ambiguous instructions or forging ahead with incomplete information. The behavior flagged in this report—a timeout mechanism that displays "No response after 60s – continued without an answer" and then proceeds autonomously—reveals an important design decision embedded in the tool: Claude will wait a fixed window for human input, but will not stall indefinitely. If the user doesn't respond within that window, the agent resumes its task using its own best judgment rather than blocking execution entirely.

This design choice reflects a broader tension in agentic AI systems between autonomy and human oversight. On one hand, Anthropic has emphasized "human-in-the-loop" safeguards as a core part of responsible AI deployment, particularly for coding agents that can execute file changes, run commands, or make consequential decisions. AskUserQuestion embodies this philosophy by giving Claude an explicit mechanism to ask for clarification instead of hallucinating an answer or taking an unwarranted action. On the other hand, real-world usage of AI coding agents often involves long-running, semi-autonomous sessions where a developer may step away from their terminal, and a tool that blocks indefinitely on unanswered prompts would undermine the productivity gains agentic coding tools are meant to deliver. The 60-second timeout represents Anthropic's attempt to balance these competing needs: give the human a reasonable chance to weigh in, but don't let the absence of a response paralyze the workflow.

The practical implications of this timeout behavior are significant for developers relying on Claude Code for extended, multi-step tasks. If Claude proceeds "without an answer" after a minute of silence, it presumably falls back on default assumptions, prior context, or the most probable interpretation of the ambiguous instruction. This means developers need to be aware that walking away from an active Claude Code session carries risk: a task that seemed to be paused for input might actually continue on autopilot, potentially making decisions the user did not intend. This has downstream implications for trust and predictability—two properties Anthropic has publicly prioritized in its agentic tooling, given the company's emphasis on interpretability and controllable AI behavior as part of its broader safety mission.

More broadly, this feature and its edge cases illustrate the maturation of AI coding assistants from simple autocomplete tools into semi-autonomous agents capable of multi-turn, interactive workflows. Competitors like OpenAI's Codex, GitHub Copilot Workspace, and Cursor have similarly grappled with how to handle ambiguity, permission requests, and human oversight in agentic contexts. The specific mechanics of timeouts, fallback behaviors, and default decision-making when a human is unavailable are becoming a critical design surface in this category of tools, since they directly affect how much users can trust an agent to act correctly in their absence. As agentic AI systems take on increasingly consequential tasks—from writing production code to managing infrastructure—the precise behavior of features like AskUserQuestion, including what happens when the human doesn't answer, will likely become a focal point for both usability critique and safety scrutiny going forward.

Read original article →