Thursday — June 18, 2026
Agent framework migration plan
You are an AI infrastructure architect. Given today's news that Google deprecated Gemini CLI for Antigravity CLI and Vercel launched eve with HarnessAgent, create a migration checklist for a team using Gemini CLI. Include steps to evaluate eve vs Antigravity, test agent skills, and avoid workflow disruption. Output as a numbered list with timelines.
SpaceX acquires Cursor AI for $60B

SpaceX's acquisition of Cursor AI for $60 billion in an all-stock deal marks a watershed moment for AI-assisted development. The deal, announced post-IPO, values Cursor at a multiple that reflects its role as a critical infrastructure layer for software-defined engineering. For SpaceX, which builds rockets, satellites, and spacecraft, the ability to accelerate code generation, review, and testing across millions of lines of embedded and simulation code is a direct competitive advantage. This isn't about writing CRUD apps—it's about reducing the iteration cycle on flight software and telemetry systems. For builders, the implication is clear: AI coding tools are becoming as essential as version control. Expect other hardware-heavy companies (defense, automotive, robotics) to follow suit. If you're a developer or team lead, now is the time to integrate AI coding assistants into your CI/CD pipelines, not just your IDE. The era of 'AI for prototyping only' is over.
Flo's take: This is the biggest signal yet that AI coding tools are not just for web devs. If SpaceX is betting $60B on Cursor, every engineering org should be rethinking how AI fits into their development pipeline.
Google drops Gemini CLI for Antigravity

As of today, Google's Gemini CLI and Gemini Code Assist IDE extensions are dead. In their place is Antigravity CLI, a ground-up rewrite that Google calls its 'agent-first development platform.' The migration is mandatory—there is no grace period. Antigravity retains the core concepts of Agent Skills, Hooks, Subagents, and Extensions (now rebranded as plugins), but the architecture is fundamentally different. Instead of a chat-first interface, Antigravity is designed around persistent, stateful agents that can be composed and orchestrated. For developers who built custom skills or extensions on Gemini CLI, this means rewriting them as Antigravity plugins. The upside is that Antigravity integrates more deeply with Google's broader AI ecosystem, including Vertex AI and the newly announced Agentic Resource Discovery (ARD) spec. If you haven't started migrating, your first step is to install the Antigravity CLI and run the migration tool. Then audit every skill and hook you depend on. This is a hard cutover, but it signals where Google is investing: agentic, multi-step workflows over single-turn code generation.
Flo's take: Google pulling the plug on Gemini CLI with zero overlap is aggressive. If you relied on it, your workflows are broken right now. Antigravity is the new sheriff, and it's agent-first—meaning you need to rethink how you chain skills and subagents.
DeepSeek hits $50B valuation with $7B raise

DeepSeek's $7 billion funding round at a valuation exceeding $50 billion cements its position as a top-tier AI lab globally, not just in China. The round is notable for two reasons: the sheer size (one of the largest AI funding rounds ever) and the fact that founder Liang Wenfeng personally contributed roughly $3 billion. This level of founder commitment is rare and signals that Liang is betting his personal wealth on DeepSeek's ability to deliver frontier models. The company has been on a tear, releasing models that rival GPT-4 and Claude in benchmarks while maintaining a cost-efficient training pipeline. With $50B in valuation, DeepSeek now has the war chest to scale compute, attract top talent, and compete for enterprise contracts outside China. For builders, this means the AI model landscape is becoming truly multipolar. If you're building on top of LLMs, you should be evaluating DeepSeek's models as a serious option, especially for cost-sensitive or Asia-focused deployments. The geopolitical implications are also significant—expect increased scrutiny and potential export controls on AI hardware to China.
Flo's take: DeepSeek is no longer just the 'Chinese OpenAI alternative.' At $50B, they have the capital to compete head-on with frontier labs globally. The founder putting in $3B of his own money is a massive vote of confidence.
Vercel launches eve agent framework

Vercel's announcement of the Agent Stack and the eve framework is a strategic move to become the default platform for building and deploying AI agents. Eve is open-source and designed from the ground up for production agent workflows: it handles state persistence (durability), sandboxed code execution, tool integration, skill composition, and crucially, human-in-the-loop approval flows. The 'Next.js for agents' analogy is apt—eve provides conventions and primitives that reduce boilerplate while maintaining flexibility. But the more interesting component is HarnessAgent, part of Vercel AI SDK 7. HarnessAgent provides a unified API that lets developers switch between agent frameworks like Claude Code, OpenAI Codex, and Pi without rewriting their application logic. This is a direct response to the fragmentation in the agent ecosystem, where each provider has its own SDK, tool format, and execution model. For developers, this means you can prototype with one framework and deploy with another, or even run multiple frameworks in parallel. If you're building agent-based applications, eve is worth a serious look, and HarnessAgent is a must-have abstraction for avoiding vendor lock-in.
Flo's take: Vercel is making a land grab for the agent development stack. Eve is well-designed, but the real play is HarnessAgent—a unified API to switch between Claude Code, Codex, and Pi. That's the kind of abstraction the ecosystem desperately needs.
Deep Dive
How to migrate from Gemini CLI to Antigravity CLI in 3 steps
Google's deprecation of Gemini CLI with no overlap period means you need to act today. Antigravity CLI is not a drop-in replacement—it's a fundamentally different architecture built around persistent, stateful agents rather than stateless chat completions. Here's how to migrate without losing your custom skills and workflows.
Step 1: Install Antigravity CLI and run the built-in migration tool. Google has provided a migration utility that scans your existing Gemini CLI configuration, including custom skills, hooks, and extensions. It will map these to Antigravity's plugin architecture. Note that not all features map one-to-one—Antigravity does not have a direct equivalent for Gemini's 'inline chat' mode, so you'll need to refactor those workflows as agent skills.
Step 2: Audit your skills and hooks. Antigravity uses a skill-based architecture where each skill is a self-contained module with defined inputs, outputs, and tools. If you had complex hooks in Gemini CLI, you'll need to decompose them into smaller, composable skills. Antigravity also introduces 'subagents'—nested agents that can be called from a parent agent. Use this pattern to replace deeply nested hooks.
Step 3: Test your workflows in Antigravity's sandbox mode. Antigravity includes a sandboxed execution environment that lets you test agent workflows locally before deploying. Run your migrated skills through the same test suites you used for Gemini CLI. Pay special attention to error handling and state persistence—Antigravity's durability model is different and may surface edge cases you didn't hit before.
The key insight is that Antigravity is not just a CLI tool—it's a platform for building agentic workflows. Embrace the shift from 'ask a question, get code' to 'define an agent that writes and tests code autonomously.' If you invest in learning Antigravity's model now, you'll be ahead of the curve as Google doubles down on agent-first development.
AI coding tools just became aerospace infrastructure. Act accordingly.