← Reddit

Stop using Fable as your main orchestrator. Use Opus + claude.md subagents instead.

Reddit · jhollingsworth4137 · July 4, 2026
Multi-agent engineering systems relying entirely on Fable as the main orchestrator face limitations with security, authentication, and financial logic handling, prompting a shift toward Opus-based orchestration with Fable relegated to subagent status. A claude.md routing strategy allocates tasks by model capability, with Opus managing state machines and merge gatekeeping while cheaper models handle feature development, file scanning, and code builds. This topology improves cost efficiency, reduces false-positive safety flags, and lowers regression rates by separating the builder from the architect and quality control roles.

Detailed Analysis

A Reddit post circulating in r/Anthropic advocates for a specific multi-agent orchestration architecture: rather than letting a single fast-generation model (referred to as "Fable") run an entire autonomous coding pipeline, the author recommends demoting it to a specialized subagent role while promoting Claude Opus to the position of orchestrator and final gatekeeper. The core technical complaint is that Fable's safety classifiers frequently misfire on legitimate but sensitive work—custom authentication flows, payment infrastructure, security audits—triggering false-positive guardrail bounces that stall pipelines or silently escalate sessions to a more expensive model without the user's awareness. The proposed fix uses a claude.md configuration file to encode explicit routing rules: Opus owns the state machine and merge gate, Haiku handles lightweight file/repo scanning, Sonnet subagents (configured one-writer-per-repo) do core codebase builds, and Fable is relegated to feature development, UI work, and technical writing where its speed is an asset rather than a liability.

This reflects a maturing pattern in how practitioners are thinking about agentic coding systems: treating model selection as a resource-allocation problem rather than a single-model-does-everything proposition. The underlying logic mirrors organizational design principles—separating the "builder" from the "architect," "QA," and "auditor" roles—applied to LLM orchestration. The author's emphasis on "never letting the builder self-review" and requiring multi-model consensus (Sonnet + Opus) for security-diff review speaks to a broader recognition that generative fluency and critical verification are different capabilities that benefit from being assigned to different models, or at least different invocations with different system prompts and incentives.

The claude.md mechanism itself is notable as a lightweight but increasingly standard convention: a plain-text file that developers use to encode persistent project-level rules, boundaries, and routing logic that persist across sessions with Claude Code and other Claude-based tooling. Its use here to explicitly codify "which model handles which task type" suggests it is becoming a de facto configuration layer for multi-agent systems—not just documentation, but executable-in-spirit policy that orchestrating agents are expected to honor. This aligns with a larger trend in the agentic AI ecosystem where teams are building increasingly sophisticated meta-layers on top of foundation models: state machines, merge gates, verification protocols, and cost-optimization heuristics that determine which model tier gets invoked for which subtask.

More broadly, the post is a data point in the ongoing cost/capability tradeoff conversation that dominates practitioner discourse around frontier models. Rather than treating Opus, Sonnet, and Haiku (or third-party tools like Fable/Codex) as competitors, the author frames them as complementary tiers in a token-economics pipeline—reserving the most expensive, highest-reasoning model for the narrow set of tasks where its judgment is irreplaceable (security gatekeeping, final verification, merge decisions) while routing volume work to cheaper or faster alternatives. This kind of granular, task-aware orchestration is likely to become more common as autonomous coding agents proliferate, and as organizations grow more sensitive to both the cost of running frontier models continuously and the risk of allowing a single model's blind spots—whether safety-classifier false positives or self-review bias—to compromise an entire automated pipeline.

Read original article →