Quick answer

Daily AI news for vibe coders. July 1, 2026: Shopify shuts off Scripts for good, Anthropic ships a Claude Code gateway for Bedrock and Google Cloud, Google's ADK Go hits 2.0, plus one build to ship today.

5 min read · Updated July 1, 2026

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

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

Welcome to the daily AI news brief for vibe coders. It is Wednesday, July 1, 2026, and the second half of the year opens with plumbing, not a flashy model drop: Shopify just retired Scripts for good, Anthropic gave Claude Code an enterprise front door into Bedrock and Google Cloud, and Google pushed its agent framework to a new major version. If you build storefronts on Shopify or ship agents with Claude, today is a maintenance day, and a good one to spend wisely.

TL;DR

  • Shopify Scripts stopped executing on June 30; Plus stores lose discount, shipping, and payment logic with no warning if they haven’t migrated to Functions.
  • Anthropic’s new Claude apps gateway adds single sign-on, role-based access, and spend caps for Claude Code on Bedrock and Google Cloud.
  • Google’s ADK Go 2.0 ships a graph-based workflow engine with a built-in human-in-the-loop pause for multi-agent systems.
  • SpaceX’s $150-million-a-month compute lease with Reflection AI starts today, another data point on how tight frontier compute remains.
  • Claude in Microsoft Foundry reaches general availability for enterprises standardized on Azure.
  • Build of the day: audit your live Shopify Scripts and ship one Function replacement in under two hours.

Shopify turns off Scripts for good

What shipped. Shopify Scripts — the Ruby checkout customizations behind many Plus stores’ custom discounts, shipping logic, and payment rules — stopped running entirely on June 30, 2026. Editing and publishing had already been frozen since mid-April, and Shopify confirmed the cutoff would not move again (Shopify).

Why it matters for vibe coders. The failure is quiet. A “buy 2, get 1” discount or a free-shipping threshold simply stops applying, with no storefront error, so a client’s margin can leak for days before anyone files a ticket.

What to do today. Pull up every Script tied to a store you maintain and rebuild each as its matching Function type — Discount Functions for line-item rules, Delivery Customization for shipping, Payment Customization for payment rules — then test stacking order on a development store before touching production.

Anthropic gives Claude Code a gateway into Bedrock and Google Cloud

What shipped. Anthropic introduced the Claude apps gateway, a self-hosted control plane for Claude Code. It sits in one stateless container on your own infrastructure, authenticates developers against your identity provider, and routes inference to the Claude API, Amazon Bedrock, or Google Cloud with optional failover between them (Claude).

Why it matters for vibe coders. Teams running Claude Code across several developers no longer hand out a cloud credential per laptop or bolt together separate tooling just to see who spent what. The gateway enforces org-wide policy centrally and caps spend on a daily, seven-day, or monthly basis, by org, group, or user.

What to do today. If you administer Claude Code for even a few contractors, wire one non-critical group to the gateway, connect it to your identity provider, and set a spend cap before rolling it out further.

Google pushes its agent framework to ADK Go 2.0

What shipped. Google’s Agent Development Kit for Go reached version 2.0, replacing its hierarchical agent executor with a graph-based Workflow Runtime that treats agents, tools, and functions as nodes in a single execution graph. The release adds a built-in pause for human-in-the-loop review, dynamic control flow written in plain Go, and automatic retries with backoff (Google).

Why it matters for vibe coders. Multi-agent workflows that need a real approval step — a procurement sign-off, a compliance check — get that pause as a framework primitive instead of hand-rolled state-machine code.

What to do today. If you have a Go-based agent prototype, read the migration guide before upgrading. The release moved to a new module path, so every import needs updating to match.

Also worth noting

  • SpaceX’s Reflection AI lease starts today. The open-source AI startup begins paying SpaceX roughly $150 million a month for Nvidia GB300 access at the Colossus 2 facility in Memphis, a deal worth up to $6.3 billion if it runs through 2029 (CNBC).
  • Claude in Microsoft Foundry is now generally available. Enterprises can run Claude models inside Microsoft’s managed Azure environment alongside their existing tooling (Claude).
  • OpenAI’s GeneBench-Pro finds a real reasoning gap. Its strongest model solved well under half of 129 realistic computational-biology problems, even at its highest reasoning setting (Let’s Data Science).

Build of the day

Spend under two hours closing out the Scripts migration before it costs you a support ticket. Open Settings, then Checkout, then Scripts on every store you maintain, list what is still active, and rebuild the highest-risk one — usually a shipping or payment rule — as a Shopify Function on a development store. If you maintain eco-DTC listings, confirm certification callouts still render correctly through the new discount path; for Design Delight Studio that means GOTS, GRS, OCS, PETA-Approved Vegan, and Fair Trade. You finish with one production-safe Function live and a punch list for the rest.

FAQ

Do I need to act on the Shopify Scripts deprecation today?

Yes, if any store you maintain still runs Scripts for discounts, shipping, or payment rules. They stopped executing on June 30, 2026, and fail with no storefront warning (Shopify). Check Settings, Checkout, then Scripts today, and rebuild anything still active as the matching Shopify Function before a customer notices a missing discount or shipping rule.

What does the Claude apps gateway change for a solo developer versus a team?

For a solo builder, little changes right away — the gateway targets teams provisioning Claude Code across multiple developers, not individuals. It adds single sign-on, centrally managed settings, and per-user spend limits for deployments on Bedrock or Google Cloud (Claude). Once you manage access for even a handful of contractors, it replaces manual credential handouts with one container you control.

Is Google’s ADK Go 2.0 backward compatible with my existing agents?

Mostly, but not automatically. Google designed ADK Go 2.0 to stay compatible with agents built on 1.x, though the release ships a new module path and a handful of breaking changes (Google). Update your imports to the new path and read the migration notes before upgrading anything running in production.

Should I worry about AI compute lease deals like SpaceX and Reflection AI?

Not directly, unless you self-host inference. The roughly $150-million-a-month SpaceX-Reflection deal is about GPU access at a single data center, not a service most vibe coders touch (CNBC). It’s still worth tracking as a signal of how scarce and expensive frontier compute remains, which shapes API pricing across every provider you call.

Does Claude in Microsoft Foundry give me anything Claude Code doesn’t already have?

It’s a deployment option, not a new capability. Claude in Microsoft Foundry lets enterprises run Claude models inside their existing Azure environment for procurement and compliance reasons (Claude). If you already call the Claude API directly, this mainly matters once a client or employer requires an Azure-native vendor relationship.

Can I trust GPT-5.6 Sol for computational biology work?

Treat it as promising but unproven. On OpenAI’s own GeneBench-Pro, its strongest model solved well under half of 129 realistic computational-biology problems even at the highest reasoning setting (Let’s Data Science). Use it to speed up a literature review or draft an analysis plan, not as a substitute for domain-expert review.

Sources

  • Shopify — Scripts deprecation changelog: https://shopify.dev/changelog/shopify-scripts-will-be-deprecated-on-june-30-2026
  • Claude — Introducing the Claude apps gateway: https://claude.com/blog/introducing-the-claude-apps-gateway
  • Google — ADK 2.0 documentation: https://google.github.io/adk-docs/2.0/
  • CNBC — SpaceX signs computing power deal with Reflection: https://www.cnbc.com/2026/06/22/spacex-ai-colossus-data-center-reflection.html
  • Claude — Claude in Microsoft Foundry is now generally available: https://claude.com/blog/claude-in-microsoft-foundry
  • Let’s Data Science — OpenAI introduces GeneBench-Pro: https://letsdatascience.com/news/openai-introduces-genebench-pro-for-computational-biology-re-0d153e60

About the author

Robert McCullock runs Design Delight Studio, building AI-assisted Shopify storefronts and multi-agent tooling for sustainable, eco-focused brands. See selected work in the [professional portfolio](https://ddsboston.com/pages/robert-mccullock-professional-por