← Reddit

Fable ignores my "How's everything going?" questions during a task

Reddit · Leather-Sir8135 · July 16, 2026
A user reported experiencing delays when asking Fable status update questions during ongoing tasks, with responses sometimes taking hours despite the system responding quickly to urgent stop commands. The user speculated that Fable might be deprioritizing informational queries while focused on work and solicited community feedback on similar experiences.

Detailed Analysis

A Reddit user posting in r/Anthropic describes a peculiar interaction pattern with their AI coding agent, which they refer to as "Fable": while the agent responds almost instantly to hard stop commands like "pause everything," it can go hours without acknowledging benign status-check questions such as "how's everything going?" sent mid-task. The user frames this as evidence that the agent is technically "seeing" the messages but deprioritizing them in favor of continuing whatever automated workflow it's running—tests, evaluations, or build processes—only returning to answer once it has exited that loop on its own terms.

The behavior the poster describes maps closely onto how agentic AI systems built on models like Claude actually execute long-running tasks. When an agent is mid-loop—chaining tool calls, running test suites, or iterating on code—it is typically operating in a tight execution cycle where the model's "attention" is focused on completing the current tool-call sequence rather than context-switching to handle a new conversational turn. Interrupt or stop commands, by contrast, are often handled at a different layer of the system: many agent harnesses implement explicit interrupt signals that can halt execution outside the normal conversational turn-taking, which explains why a "stop everything" instruction lands immediately while a casual check-in waits in an effective queue until the current step or tool call resolves. This isn't necessarily the model "ignoring" the user in the sense of choosing not to bother, but rather a structural artifact of how these systems are architected to keep executing multi-step plans without constant re-evaluation, since re-reading and responding to every incoming message mid-task would slow down or destabilize long agentic runs.

This distinction matters because it exposes a real usability gap in the current generation of autonomous coding agents. As tools like Claude Code and similar agentic products move users away from single-turn chat interactions toward longer, more autonomous sessions—sometimes running unattended for extended periods—users increasingly want lightweight observability: a quick progress ping, not a full context switch. The frustration voiced in the post reflects a broader tension in agent design between autonomy and interactivity. Systems optimized to plow through multi-step tasks efficiently can end up feeling unresponsive or opaque during that execution, even when they remain fully capable of stopping immediately when given a priority command. That asymmetry—fast reaction to hard stops, slow reaction to soft check-ins—suggests current agent runtimes treat "kill switch" style commands very differently from ordinary conversational messages, which is arguably the correct safety-oriented design choice but a poor experience for users who simply want a status update.

More broadly, this thread is a small but telling data point in the industry-wide push toward more autonomous, long-horizon AI agents. As labs including Anthropic invest heavily in agents capable of operating with minimal supervision for extended periods—running evaluations, writing and testing code, executing multi-hour workflows—the interface problem of how humans stay informed without derailing the agent becomes increasingly important. Solutions likely to emerge include dedicated progress-reporting channels, streaming status updates, or asynchronous "check-in" mechanisms that don't require the agent to pause its primary task, separate from the emergency-stop pathway. The community discussion itself is also indicative of how users are developing folk theories about model behavior—attributing intentionality ("can't be bothered") to what is more plausibly a scheduling or prioritization quirk in the agent framework—underscoring the broader need for better transparency and interpretability tools so users can distinguish genuine model behavior from artifacts of surrounding orchestration software.

Read original article →