ACTION NEEDED
CLAUDE_CODE_OPUS_4_6_FAST_MODE_OVERRIDEis deprecated and removed on June 1 — if you're using it for Opus 4.6 fast mode, switch now:/model claude-opus-4-6[1m]then/fast on
GITHUB TRENDING
- EveryInc/compound-engineering-plugin — 180★ today (17,717★ total) — Official Compound Engineering plugin for Claude Code, Codex, and Cursor: brings Compound's structured engineering methodology into your agentic tool setup | https://github.com/EveryInc/compound-engineering-plugin
- revfactory/harness — 68★ today (3,816★ total) — meta-skill that generates a full domain-specific agent team from a single prompt: specialist agents, skill files, and coordination structure | https://github.com/revfactory/harness
TODAY'S ITEMS
1. Claude Opus 4.8 Is Here — Same Price, Better Everything
- Anthropic drops Opus 4.8 today at the same price as Opus 4.7: improvements across coding, agentic, reasoning, and knowledge-work benchmarks; the only model to complete every Super-Agent benchmark case end-to-end at GPT-5.5 parity cost; 84% on Online-Mind2Web (best computer-use score recorded); fast mode now runs at 2x standard rate for 2.5x speed — three times cheaper than Opus 4.7 fast mode. Effort control is now available to all Claude.ai users via a dropdown.
- Source: Anthropic | HN: https://news.ycombinator.com/item?id=48307800
- Why it matters: Run
npm install -g @anthropic-ai/claude-code@latestto get Opus 4.8 as your default in Claude Code — same cost, materially better agentic judgment on long multi-step tasks. - Verified
2. Dynamic Workflows Returns in Claude Code v2.1.154 — Now Background Agent Swarms
- The pulled /workflows command is back with a completely different architecture: ask Claude to create a workflow and it orchestrates tens to hundreds of agents running in the background for tasks too large for a single session — large migrations, multi-service integrations, bulk refactors. Run
/workflowsto view and manage active runs. - Source: CC releases | Blog: https://claude.com/blog/introducing-dynamic-workflows-in-claude-code
- Why it matters: Run /workflows today to delegate large-scale tasks to a background agent swarm you don't have to babysit — the ceiling for what Claude Code can tackle in one task just jumped dramatically.
- Verified
3. Messages API: Update System Instructions Mid-Task Without a Cache Miss
- Also in today's release: the Messages API now accepts system entries inside the messages array, letting developers update Claude's instructions during a running task without breaking the prompt cache or routing the update through a user turn.
- Source: Anthropic
- Why it matters: If you're building multi-step agents, you can now adjust system instructions mid-task without busting the prompt cache and paying full price for the missed context.
- Verified
4. Frontier LLMs Disagree on 67% of Real-World Fact-Checks
- lenz.io tested five frontier LLMs against 1,000 real-world fact-check claims and found that 67% of claims produce inconsistent verdicts across models. The methodology, category breakdowns, and raw CSV are all public. The study hit HN front page today (461pts).
- Source: lenz.io / HN | https://news.ycombinator.com/item?id=48307887
- Why it matters: Add a second model check or human review on any fact that drives a real decision, since 2 in 3 of these claims get inconsistent verdicts across frontier models.
- Verified
YOUR STACK — UPDATES
- /simplify now runs cleanup-only (reuse, simplification, efficiency, altitude) — not the full bug-hunting /code-review --fix — use /code-review --fix when you want the full audit
- Streaming tool execution always enabled across Bedrock, Vertex, and Foundry — no longer behind a feature flag
- Stdio MCP server subprocesses now receive
CLAUDE_CODE_SESSION_IDandCLAUDECODE=1env vars — useful if your MCP server needs to know it's running inside Claude Code Source: https://github.com/anthropics/claude-code/releases/tag/v2.1.154
NEW TOOL / PRODUCT SPOTLIGHT
- affaan-m/ECC — 197,052★ — Everything Claude Code: an agent harness optimization system bundling Skills, instincts, memory, and security best practices for Claude Code, Codex, Opencode, and Cursor. Trending on GitHub today.
npm install -g ecc-universal| https://github.com/affaan-m/ECC
PROMPT OF THE DAY
Audit my CLAUDE.md and Skills configuration for the new Claude Code effort controls in Opus 4.8. For each major task category in this project — feature implementation, bug investigation, code review, refactoring, and test writing — recommend whether to use /effort low, /effort medium, /effort high, or /effort xhigh, with a one-sentence justification for each. Then output an updated CLAUDE.md section called "## Effort Guidelines" with copy-paste-ready instructions Claude will follow when picking an effort level for each category.
Adds per-task effort guidance to your CLAUDE.md so Opus 4.8 selects the right depth without you setting /effort manually every time; run inside your project directory. Original — not community-sourced.
LANDSCAPE NOTES
- Anthropic raises $65B at $965B post-money valuation alongside the Opus 4.8 launch — newly the world's most valuable AI startup, ahead of OpenAI's last valuation of $730B. https://www.nytimes.com/2026/05/28/technology/anthropic-claude-opus-48.html
Supplement (sent 09:44 AEST)
📎 todai supplement — Friday, 29 May
Reddit access recovered after this morning's edition. Adding what we missed:
REDDIT SIGNAL
- Security Alert — Critical flaw CVE-2026-48710 (BadHost) in Starlette, the base of FastAPI, patched in Starlette 1.0.1 released today; affects vLLM, LiteLLM, and HTTP-transport MCP servers; stdio-mode MCP servers (the Claude Code default) are not affected — 458 upvotes, 92 comments | r/LocalLLaMA | https://old.reddit.com/r/LocalLLaMA/comments/1tpp2th/
- Why it matters: If you run LiteLLM, vLLM, or any HTTP-transport MCP server, run
pip install --upgrade starlettenow to patch it. - Verified
- Tip — Community catch: having ANTHROPIC_API_KEY set in your shell env or .env silently routes Claude Code to API billing instead of your Max plan subscription — a commenter reported watching an API bill climb while their Max quota sat untouched — 913 upvotes, 63 comments | r/ClaudeAI | https://old.reddit.com/r/ClaudeAI/comments/1tonzj9/
- Why it matters: Check your terminal env for ANTHROPIC_API_KEY and unset it if you're on a Max plan so Claude Code uses OAuth and draws from your subscription instead.
- Emerging
- Tip — A cache miss in Claude Code costs 12.5× more than a cache hit (Anthropic docs: cache write = 1.25× base price, cache read = 0.1× base); adding an MCP server mid-session is the single biggest trigger, flushing the entire prefix including tools, system prompt, and CLAUDE.md — 298 upvotes, 47 comments | r/ClaudeCode | https://old.reddit.com/r/ClaudeCode/comments/1tlzpcc/
- Why it matters: Add all MCP servers before starting a session and avoid switching models mid-task to keep the cache warm and costs low.
- Emerging