06-reference

alphasignal claude agent cost efficiency

2026-07-08·reference·source: AlphaSignal·by AlphaSignal Editorial
claude-agentscost-optimizationagent-architecturemanaged-agentsmodel-pinningfable5orchestrator-pattern

Why this is in the vault

Anthropic published two production-ready agent cost patterns (Advisor and Orchestrator) that are natively supported in Claude Managed Agents via the model field in Claude Code subagent definitions. The per-subagent context cache means RDCO's multi-agent harness no longer pays repeat token costs for shared context. This is an immediate implementation lever, not a future roadmap item.

Issue contents

Lead story — Agent cost efficiency patterns (96% performance at 46% cost)

Anthropic shared two architectural patterns for running near-frontier-quality agents at significantly lower cost:

Both patterns are supported natively in Claude Managed Agents. Each sub-agent maintains its own prompt cache, so repeated context (system prompts, tool definitions, shared documents) is not billed on every sub-agent call. Model pinning is configured via the model field in subagent definitions in Claude Code.

Secondary story — Claude Cowork goes cross-device

Claude Cowork (long-running background tasks) now runs on web and mobile in addition to desktop. Tasks continue after the originating device closes. Scheduled overnight tasks are supported. When Claude reaches a decision boundary, it pings the user's phone rather than halting. Shared tab for chat and Cowork on web/desktop. Usage limits doubled through August 5; beta rolls out to Max plan first.

Secondary story — Free Claude Max for open-source maintainers

Anthropic's Claude for Open Source program offers six months of free Claude Max 20x (normally $200/month, $1,200 total) to maintainers of projects with 5,000+ GitHub stars or 1M+ monthly npm downloads with recent activity. Includes Claude Code terminal access and priority usage. No API access included.

Signals (brief)

Sponsor sections

Mapping against Ray Data Co

The model field in Claude Code subagent definitions is the direct implementation lever for the RDCO agent harness. RDCO currently runs Sonnet 4.6 as the always-on COO agent. The orchestrator pattern maps cleanly to how sub-agents are already dispatched: Sonnet 4.6 can remain the orchestrator/planner while routine sub-agents (vault writes, searches, single-tool calls) are pinned to Haiku to cut per-task costs. Fable 5 can be reserved for complex judgment tasks — strategic synthesis, investing thesis review, novel SOP authoring.

The per-subagent context cache is the higher-leverage insight: the current harness re-pays for CLAUDE.md, MEMORY.md, and tool definitions on every sub-agent spawn. With independent per-subagent caching, that cost disappears on repeat calls in the same session. This compounds on the morning-prep loop and open-threads-check cron, which spawn multiple sub-agents per cycle.

The Claude Cowork cross-device update is low-priority for RDCO — the Mac Mini always-on tmux session already achieves the same decoupled-execution model. The phone-ping-on-decision-boundary behavior is worth watching as a pattern reference for the async-ask mechanism already built into RDCO's iMessage channel.

Immediate action candidate: audit current sub-agent dispatch prompts to identify which ones could be pinned to Haiku vs Sonnet vs Fable. Estimate per-cycle cost delta before committing — this is a ~/rdco-vault/02-sops/ candidate for an agent-model-tiering SOP.

Related