🎯 Top 3 Things to Know
1. OpenAI moved the GPT-5.6 family to general availability, and the interesting part is a setting that spawns its own subagents. GPT-5.6 arrived on July 9 in three tiers: Sol (flagship), Terra (balanced), and Luna (cheap and fast), across ChatGPT, Codex, and the API. The feature worth noting is "ultra mode," which coordinates four agents in parallel on a single hard task instead of running one long chain. Codex Subagents also reached general availability, with a manager agent dispatching specialized workers across a repository. This matters for teams building agentic coding or long-horizon workflows, where the bottleneck has been serial reasoning that stalls on complex tasks. Pricing splits the tiers sharply: Sol runs $5 in / $30 out per million tokens, Luna $1 / $6. Worth benchmarking whether ultra mode's parallel agents actually beat a single Sol call on cost-per-solved-task before wiring it into production. OpenAI · Simon Willison
2. The Model Context Protocol's next release candidate makes the protocol stateless, which changes how agent infrastructure gets built.
MCP's 2026-07-28 release candidate lets a tools/call request carry its own protocol version, client info, and capabilities, so it stands alone instead of depending on a persistent session. New headers like Mcp-Method let load balancers route traffic without parsing the request body. That turns MCP traffic into ordinary HTTP, which is far easier to scale, cache, and debug. This affects anyone running MCP servers at more than toy scale, where session state has been the operational headache. The final spec lands July 28. Teams on stateful MCP deployments should read the RC now and plan the migration path before it ships.
WorkOS
3. The EU AI Act's transparency obligations for high-risk and general-purpose systems take effect August 2, three weeks out. By August 2, providers of general-purpose AI models and certain high-risk systems must meet specific transparency and documentation requirements. Separately, on June 29 the Council of the EU gave final approval to a simplification package that clarifies some requirements and extends certain high-risk deadlines. So two things are true at once: one set of obligations is arriving on schedule while another is being pushed back. This matters for any company shipping models into the EU market. The practical step is to confirm which obligations the simplification package actually deferred, because the August 2 transparency rules were not among the items delayed. European Commission · Latham & Watkins
🚀 Frontier Models & Features
- xAI shipped Grok 4.5, positioned for coding and agentic work and served at roughly 80 tokens per second. Releasebot
- OpenAI added GPT-Live-1 and GPT-Live-1 mini, full-duplex voice models aimed at more natural real-time conversation with tighter voice-safety controls. Releasebot
🔬 Research Worth Reading
From Atomic Actions to Standard Operating Procedures: Iterative Tool Optimization for Self-Evolving LLM Agents (Ding, Xie, Wei, Li, Ding / Renmin University of China & Alibaba Group). arXiv
- TL;DR: Instead of giving an agent a fixed set of low-level tools, the agent watches its own successful runs, bundles recurring multi-step sequences into reusable "standard operating procedures," then merges and prunes them over time.
- Stat: On ACEBench, the approach improved task success by 2.5% to 13.4% depending on the backbone model, while cutting the number of interaction rounds.
- Apply it: If your agent keeps re-deriving the same multi-step routine (auth, then fetch, then parse), log its successful trajectories and promote the common sequences into named composite tools, then measure rounds-per-task before and after.
Your Agent's Memories Are Not Its Own: Forged Reasoning Attacks on LLM Agent Memory and Defenses (Karamchandani, Nagasubramaniam, Zhu, Wu). arXiv
- TL;DR: A poisoning attack called FARMA targets what an agent remembers about its own reasoning, not its facts, inserting forged rationales that get reinforced through self-reference.
- Stat: The forged traces use evasive phrasing that slips past keyword-based filters and self-referential reinforcement that defeats consensus-based defenses; the authors propose a layered detector, SENTINEL, in response.
- Apply it: If your agent persists reasoning traces across sessions, treat that memory as an attack surface. Audit what gets written back, and do not let an agent's own past rationales count as trusted evidence without provenance.
🏢 Enterprise in the Wild
Quiet day for freshly documented deployments. Nothing new traceable to a primary source in the last 24 hours.
🛠️ Tooling & Ecosystem
- MCP release candidate (2026-07-28) moves the protocol to a stateless model at the transport layer, easing routing and scaling (see Top 3). WorkOS
- Codex Subagents reached general availability alongside GPT-5.6, with manager agents coordinating specialized workers across repositories. OpenAI
⚖️ Policy & Regulation
- EU AI Act transparency obligations hit August 2 for general-purpose and certain high-risk systems (see Top 3). European Commission
- EU simplification package cleared its final Council vote June 29, clarifying requirements and extending some high-risk compliance deadlines. Providers should map which obligations moved and which did not. Latham & Watkins
📌 Watch List
- Cost-tiered model families: Terra, Luna, and Grok 4.5 all compete on price and speed rather than peak capability.
- Parallel subagents moving from research idea to shipped product feature (ultra mode, Codex Subagents).
- Self-evolving agents that build their own higher-order tools from execution history.
- Agent memory as a security surface: reasoning-poisoning attacks and layered defenses.
- Stateless MCP and what it means for agent infrastructure at scale.