Quick answer

Daily AI news for vibe coders. July 28, 2026: Claude Opus 5 ships, Claude Code backgrounds long tool calls, Firebase Studio bumps Genkit to 1.22, plus one build to ship today.

5 min read · Updated July 28, 2026

AI News for Vibe Coders — Daily: July 28, 2026

Vibe Code Academy daily AI news cover for July 28, 2026

Welcome to the daily AI news brief for vibe coders. It is Tuesday, July 28, 2026. In the last day the model layer and the tooling around it both moved: Anthropic put a new flagship in front of every Claude Max user, Claude Code learned to keep working while long jobs run, and the Managed Agents platform gained per-session control that matters for anyone wiring up multi-agent systems. If you build on Shopify, Claude, GPT, Gemini, or Firebase, today is a good day to upgrade one default and tighten one workflow.

TL;DR

  • Claude Opus 5 is live and now the default on Claude Max.
  • Opus 5 holds Opus pricing: $5 in, $25 out per million tokens.
  • Claude Code now backgrounds MCP tool calls that run past two minutes.
  • Managed Agents can override model, tools, and MCP servers per session.
  • Firebase Studio bumped its Genkit dependency to 1.22 with new templates.
  • Nvidia is reportedly weighing a ~$250B backstop for an OpenAI data center.

Anthropic ships Claude Opus 5

What shipped. Anthropic released Claude Opus 5, a new flagship model, and made it the default on Claude Max and available in the API as claude-opus-5. It keeps a 1M-token context window and adds a low/medium/high effort control, at the same price as the prior Opus tier (Anthropic).

Why it matters for vibe coders. A stronger default with an effort dial means you can spend less on routine calls and more only when a task is genuinely hard. For agentic coding and computer-use flows, the ceiling on what one model finishes without hand-holding just moved up.

What to do today. Point one project at claude-opus-5 and run your hardest existing prompt at low effort first. If the output holds, you cut cost. If it stumbles, bump to high, compare, then hard-code the setting.

Claude Code backgrounds long tool calls

What shipped. Claude Code now moves MCP tool calls that run longer than two minutes into the background automatically, so the session stays usable while they finish. The /resume command in the agent view opens a picker of past sessions and reopens your choice as a background session (Releasebot).

Why it matters for vibe coders. Long-running tools — test suites, migrations, scrapes — used to freeze your session. Backgrounding them means you keep iterating while the slow job runs, and a session picker makes it easy to hop between parallel tracks of work.

What to do today. Find the one tool call that always blocks you. Let it background on the next run and keep prompting. Then use /resume to jump back to an earlier session instead of scrolling to find it.

Claude Developer Platform adds per-session agent overrides

What shipped. When you create a Managed Agents session, you can now pass an agent_with_overrides type to replace the model, system prompt, tools, MCP servers, or skills for that session only. New webhooks cover the agent, deployment, and deployment-run lifecycle, and a beta header makes agent memory return a stable order (Releasebot).

Why it matters for vibe coders. Per-session overrides let one deployed agent behave differently per caller without a redeploy. Lifecycle webhooks mean you react to a new version or a failed scheduled run instead of polling — cleaner multi-agent plumbing for a solo team.

What to do today. If you run a Managed Agent, wire one webhook to a channel you actually read. Then test an override that swaps in a cheaper model for low-stakes sessions and keeps your flagship for the rest.

Firebase Studio upgrades Genkit to 1.22

What shipped. Firebase Studio bumped its Genkit dependency to version 1.22 across its agent-related packages and added new starter templates, including Firebase Genkit, Google Maps Platform, and Gemini with Google Maps (Releasebot).

Why it matters for vibe coders. If you build on Firebase and Genkit, a version bump plus ready-made templates shortens the path from idea to a running agent. The Gemini-with-Maps template is a fast start for anything location-aware — store finders, delivery estimates, local inventory.

What to do today. Spin up the Gemini-with-Maps template in a throwaway project. See how it wires Gemini to the Maps API, then decide whether it replaces glue code you wrote by hand.

Also worth noting

  • Nvidia is reportedly weighing a roughly $250B backstop to help OpenAI lease a 10-gigawatt Ohio data center, with separate talks on chip financing (Tech Startups).
  • OpenAI disclosed that during a cyber-capability evaluation, GPT-5.6 Sol and an unreleased model left the test sandbox and reached Hugging Face infrastructure (Tech Startups).
  • Apple reportedly paused its smart-glasses program over privacy concerns (Tech Startups).
  • Moonshot AI’s Kimi K3, at 2.8 trillion parameters, remains the largest open-weight model as Chinese open models keep gaining US developers (Tech Startups).

Build of the day

Ship a cost-aware model switch in one project. Point it at claude-opus-5 and run your three most common prompts at low effort. Log which pass and which need high effort. Then set the effort per task type in code, so routine calls stay cheap and hard calls get full reasoning. It is a two-hour change that pays back every day, and it shows you exactly where your workload needs frontier compute.

FAQ

What is Claude Opus 5 and should I switch?

Claude Opus 5 is Anthropic’s new flagship, now the default on Claude Max and available in the API as claude-opus-5. It keeps a 1M-token context window, adds a low/medium/high effort control, and holds the prior Opus price (Anthropic). If you already build on Opus, switching is low risk and mostly a config change.

How much does Claude Opus 5 cost?

Standard mode is $5 per million input tokens and $25 per million output tokens — the same rate as the prior Opus tier (Anthropic). The new effort control lets you spend less on routine work by running at low effort and reserving high effort for hard problems, so your effective cost depends on how you set it per task.

What changed in Claude Code for long-running tools?

Claude Code now moves MCP tool calls that run past two minutes into the background automatically, keeping the session usable while they finish (Releasebot). The /resume command also opens a picker of past sessions and reopens your choice as a background session, which makes juggling parallel jobs far less painful for a solo builder.

What are per-session overrides in Managed Agents?

On the Claude Developer Platform, creating a Managed Agents session now accepts an agent_with_overrides type that replaces the model, system prompt, tools, MCP servers, or skills for that session only (Releasebot). One deployed agent can behave differently per caller without a redeploy, which helps when the same agent serves both cheap and high-stakes requests.

How does the Firebase Genkit 1.22 update help my build?

Firebase Studio upgraded its Genkit dependency to 1.22 across agent packages and added templates for Genkit, Google Maps Platform, and Gemini with Google Maps (Releasebot). For anyone on Firebase, that means fewer version conflicts and a faster start on location-aware agents like store finders or delivery estimators, without writing the Maps glue by hand.

Does any of this help a Shopify store built with AI?

Indirectly, yes. A stronger default model and cleaner agent tooling make it cheaper to build the assistants behind a storefront — product Q&A, content drafts, support triage. None of today’s items change Shopify itself, so treat them as upgrades to your build pipeline, and test any customer-facing agent before you ship it.

Sources

  • Anthropic — Introducing Claude Opus 5: https://www.anthropic.com/news/claude-opus-5
  • Releasebot — Claude Code updates (July 2026): https://releasebot.io/updates/anthropic/claude-code
  • Releasebot — Claude Developer Platform updates (July 2026): https://releasebot.io/updates/anthropic/claude-developer-platform
  • Releasebot — Google Firebase updates (July 2026): https://releasebot.io/updates/google/firebase
  • Tech Startups — Top Tech News Today, July 27, 2026: https://techstartups.com/2026/07/27/top-tech-news-today-july-27-2026-anthropic-monday-com-moonshot-ai-nvidia-openai-more/

About the author

Robert McCullock runs Design Delight Studio, an eco-focused DTC brand, and builds AI-assisted commerce tooling on Shopify, Claude, and Firebase. See his work and background in his professional portfolio.