โ† Back to blogยทTrendsยท5 min read

Google Is Retiring Assistant for Gemini, Microsoft Is Merging Every Copilot Into One App, and Cloudflare Built a Scoreboard for Getting Cited by Chatbots

Google confirmed Google Assistant shuts down starting September 4, 2026, replaced by Gemini across Android, Wear OS, and Android Auto with some features left behind; Microsoft is fusing Copilot Chat, GitHub Copilot, and Copilot Cowork into one app under CEO Satya Nadella's "Copilot Fusion" push; and Cloudflare shipped an AEO Visibility Dashboard that scores whether Claude and GPT actually cite your site. Three moves that all point at the same shift: the assistant, not the model, is becoming the product.

By Maya Brennan ยท Writer, Smillee AI
August 8, 2026

Three announcements landed within days of each other this week, and none of them is about a smarter model. They're about who owns the interface once you're already talking to one. Google is shutting down a fifteen-year-old assistant in favor of its chatbot. Microsoft is welding three separate Copilot apps into one. And Cloudflare just built the first real scoreboard for whether chatbots mention your brand at all. Here's what happened, and what it means if you're building on top of any of these surfaces.

1. Google Assistant Is Being Switched Off, and Gemini Doesn't Do Everything It Did

Google confirmed that Google Assistant starts shutting down on September 4, 2026, with Gemini taking over as the default voice assistant on Android phones, tablets, Wear OS watches, Buds, and Android Auto. The rollout is progressive over a few weeks, and once a supported device is migrated, there's no opting back โ€” Assistant is gone for good on that hardware. Qualifying devices as of mid-2026 include the Pixel 10 series, Galaxy S26, and OnePlus 15; older or region-restricted devices keep Assistant for now, but the direction is set.

The catch is that Gemini isn't a drop-in replacement yet. Interpreter Mode and the daily proactive smart-home briefings that longtime Assistant users relied on aren't carrying over. Google is trading a narrower, more predictable voice interface for a broader, more capable one, and asking a decade-plus of muscle memory to adapt in the process. If you build voice-triggered integrations, smart-home routines, or anything that assumes Assistant's intent-matching behavior, September 4 is a hard deadline to test against, not a soft advisory.

2. Microsoft Is Fusing Copilot Chat, GitHub Copilot, and Cowork Into One App

Satya Nadella confirmed on Microsoft's July 29 earnings call that the company is merging its consumer Copilot, GitHub Copilot, and Copilot Cowork into a single application this quarter, under an internal effort reportedly codenamed Copilot Fusion. The pitch is a shared identity graph and one codebase serving both personal and enterprise users, plus a new agentic layer called AutoPilot sitting on top. Nadella framed the arc as going "from chat to Cowork to Autopilots" โ€” three product generations collapsing into one surface instead of three.

// Before: three separate Copilot surfaces, three contexts
const chatReply = await copilotChat.ask(question);
const codeSuggestion = await githubCopilot.complete(context);
const workTask = await copilotCowork.assign(task);

// After: one app, one identity graph, context carries across all three
const session = await copilot.open({ user });
await session.chat(question);
await session.code(context);       // same session, same memory
await session.autopilot.run(task); // hands off without re-establishing context

Microsoft is cutting weaker features to make room โ€” Copilot Podcasts and Copilot Labs are both being retired, which executive Jacob Andreou described plainly as stripping out "what wasn't working." The lesson for anyone integrating against Copilot's API surface: a merged identity graph means a support ticket in one product context can now carry into another, but it also means your integration needs to track which of the three product lines it's actually talking to underneath the unified shell.

3. Cloudflare Built a Dashboard That Scores Whether Chatbots Cite You

Cloudflare released an AEO Visibility Dashboard on August 6, extending its Answer Engine Optimization suite with a direct measurement of whether AI assistants recommend a given brand when asked relevant questions. The methodology infers a site's category, generates the questions a real customer might ask, and repeatedly submits them to OpenAI's and Anthropic's models, tracking Citation Rate, Mention Rate, Prominence, and Share of Voice against competitors.

It's currently request-only with no announced pricing, and โ€” worth flagging plainly โ€” it only probes two model families. Gemini, Perplexity, Copilot, and Grok aren't covered, so a clean score here isn't a clean score everywhere your users might be asking. Still, it's a sign that "does the chatbot mention us" is turning into a trackable metric instead of a shrug, which matters if any part of your product depends on being the answer a chatbot gives rather than a link it never surfaces.

What Connects the Three

Read together, these are the same move from three different companies. Google is willing to break a well-worn interface to force everyone onto its chatbot. Microsoft is betting that one identity-aware Copilot beats three disconnected ones. And Cloudflare is building infrastructure for a world where getting cited inside a chat answer matters as much as ranking in search once did. The model underneath is increasingly interchangeable; the fight this week was entirely about which app, which identity graph, and which citation gets remembered.

โ€” Maya

Frequently asked questions

When does Google Assistant shut down, and what replaces it?

Google Assistant starts shutting down on September 4, 2026, with Gemini becoming the default voice assistant on Android phones, tablets, Wear OS watches, Buds, and Android Auto. The migration rolls out progressively over a few weeks, and devices cannot switch back to Assistant once migrated. Qualifying devices as of mid-2026 include the Pixel 10 series, Galaxy S26, and OnePlus 15; some older or region-restricted devices keep Assistant for now. Interpreter Mode and daily proactive smart-home briefings are not carrying over to Gemini.

What is Microsoft "Copilot Fusion" and what apps does it merge?

Copilot Fusion is Microsoft's internal effort, confirmed by CEO Satya Nadella on the July 29, 2026 earnings call, to merge consumer Copilot Chat, GitHub Copilot, and Copilot Cowork into a single application with a shared identity graph and one codebase, launching this quarter. It adds a new agentic layer called AutoPilot on top. Microsoft is simultaneously retiring underperforming features, including Copilot Podcasts and Copilot Labs.

What does Cloudflare's AEO Visibility Dashboard measure?

Cloudflare's AEO Visibility Dashboard, released August 6, 2026, measures whether AI assistants cite or recommend a business when asked relevant questions. It infers a website's category, generates likely customer questions, and submits them repeatedly to OpenAI's GPT models and Anthropic's Claude, tracking Citation Rate, Mention Rate, Prominence, and Share of Voice against competitors. It's currently available by request only, with no announced general-availability date or pricing, and it does not yet cover Gemini, Perplexity, Copilot, or Grok.

Maya Brennan
Writer, Smillee AI

I'm Maya โ€” I write most of what you'll read here. I spent years as a copywriter before I got a little obsessed with what these AI tools can actually do, so now I spend my days poking at chatbots, breaking them, and writing up what's worth your time. Everything here is something I've actually tried. If a prompt didn't work for me, it doesn't make the cut.

Want to try any of this?

Smillee's free and there's no signup โ€” open it and paste in whatever you're working on.

Start chatting โ†’

More from the blog