2026-W11
Mar 9 – Mar 15, 2026

Radar W11 — Anthropic's Debug Console, Supabase Vector GA, and the Editor Wars Heat Up

Anthropic ships a new debugging console, Supabase Vector hits GA, Continue.dev v2.0 lands improved AI integration, and the Zed vs Cursor editor war heats up.

3 high 1 medium 0 low 7 min · Mar 14, 2026

High Impact

launch Anthropic Console
Anthropic Launches Console for Agent Debugging

Anthropic released a new debugging console designed to help developers trace and debug AI agent behavior in real-time. The tool provides detailed visibility into model reasoning, token usage, and execution flows, addressing a critical gap in agent development workflows. Available in the Anthropic Cookbook suite.

launch Supabase Vector
Supabase Vector Reaches General Availability

Supabase's vector search capabilities graduated to GA, enabling developers to build semantic search and RAG applications directly within Postgres. The release includes optimized pgvector integration, embeddings API support, and improved performance for production workloads. A significant milestone for open-source vector database adoption.

update Continue.dev → profile
Continue.dev v2.0 Transforms AI Code Completion

Continue.dev released v2.0 with major improvements to IDE integration, multi-model support, and context awareness. The update includes native Cursor and Windsurf compatibility, enhanced codebase indexing, and a redesigned agent orchestration system. A significant step toward unified AI coding assistants.

Medium Impact

update Zed
Zed v0.160 Brings Performance Gains and Collaboration Enhancements

Zed released v0.160 with improved rendering performance, expanded language server support, and refined collaborative editing features. The update addresses user feedback on responsiveness and adds better integration with AI-powered workflows. Part of Zed's steady progress as a modern editor alternative.

Tool Radar — Week of March 10, 2026: Agent Debugging, Vector Search, and the Editor Wars Heat Up

Every week, the developer tooling landscape shifts in ways that matter — not because of press releases, but because something quietly ships that changes how you build. This week’s radar covers four tools worth your attention: a debugging console for Claude agents, PostgreSQL eating the vector database market, a v2.0 moment for open-source IDE agents, and Zed throwing a punch at every AI editor in the room. Let’s get into it.


🧪 Anthropic Cookbook Console — Finally, a Debugger for Claude Agents

What it does: The Anthropic Cookbook ships an interactive REPL console purpose-built for debugging Claude Agent SDK flows. You get real-time visibility into token usage, tool calls, and agent routing decisions as they happen.

Why it matters for your stack: If you’ve spent any time building multi-step agentic systems with Claude, you know the pain — agents fail silently, tool calls misfire, and routing decisions are a black box until something breaks in production. This console surfaces all of that live. Token costs, which tool got invoked, why the agent took a particular branch — it’s the console.log equivalent for a world where your code makes decisions.

This is an Anthropic-first tool, which means it’s optimized for Claude’s SDK specifically. Don’t expect generic agent compatibility here. But if Claude is already in your stack, the debugging gap just got meaningfully smaller.

:::callout tip Standout: Token-level visibility during routing decisions is the feature teams running cost-sensitive agent pipelines have been waiting for. Map your tool call graph before you hit production. :::

Shipped: March 12, 2026 Anthropic SDK Python on GitHub


🐘 Supabase Vector — PostgreSQL Just Ate Your Vector Database

What it does: Supabase Vector brings managed vector search directly into PostgreSQL via the pgvector extension. Build full RAG pipelines — embeddings, similarity search, retrieval — without spinning up a separate vector database.

Why it matters for your stack: The argument for dedicated vector databases (Pinecone, Weaviate, Qdrant) has always been performance at scale plus operational simplicity. Supabase Vector chips away at both. If your data already lives in Postgres — and for most teams, it does — adding a second database system for vectors introduces real operational overhead: another auth layer, another sync job, another thing to monitor.

Going GA this week is a meaningful signal. This isn’t a beta experiment; it’s infrastructure-tier positioning. For autonomous agents that need to retrieve context fast, keeping vectors co-located with relational data means fewer hops, simpler queries, and less architectural debt to explain to your future self.

The question isn’t whether pgvector matches Pinecone at 100M vectors. The question is whether you actually have 100M vectors — and whether the operational simplicity trade-off is worth it before you do.

:::callout tip Standout: The killer use case here is hybrid search — combine vector similarity with SQL filters in a single query. WHERE user_id = ? AND embedding <-> $1 < 0.3 is a genuinely powerful pattern that dedicated vector DBs make awkward. :::

Shipped: March 10, 2026 (GA) Supabase Vector


🔌 Continue.dev v2.0 — Open-Source IDE Agents Reach Production Readiness

What it does: Continue.dev v2.0 is an open-source IDE plugin for VS Code, JetBrains, and Cursor that connects your editor to agent frameworks — local models, remote models, or whatever you’re running. MIT licensed, production-ready as of this release.

Why it matters for your stack: Most AI coding tools lock you into their model. Cursor talks to Cursor’s backend. Claude Code talks to Anthropic. The value proposition of Continue has always been model agnosticism — you bring the model, it brings the editor integration. V2.0 is the release where that stops feeling experimental.

The JetBrains support alone opens this up to the significant chunk of the enterprise developer base that hasn’t migrated to VS Code. And for teams running local models for data privacy reasons — think healthcare, finance, anything with compliance constraints — Continue is one of the few production-viable options that doesn’t route code through third-party infrastructure.

The “agent framework” framing in v2.0 is the notable upgrade. This isn’t just autocomplete; it’s toolchain connectivity. Connect your IDE to retrieval systems, custom tools, and multi-step workflows. The open-source community around Continue is now building integrations faster than any single vendor could ship them.

:::callout tip Standout: MIT license means you can fork, extend, and deploy this inside your own infrastructure without negotiating commercial terms. That’s rare in this category and worth more than it sounds. :::

Shipped: March 14, 2026 Continue.dev


⚡ Zed v0.160 — Multi-Cursor Debugging for the Async World

What it does: Zed’s v0.160 release introduces a debugging mode that surfaces multiple execution breakpoints simultaneously — designed specifically for async and concurrent code where a single-thread mental model falls apart.

Why it matters for your stack: Debugging async Rust, concurrent Go, or heavily parallelized Python has always required mentally stitching together breakpoints across execution contexts. Most debuggers weren’t designed for this and it shows. Zed’s multi-cursor debugging mode renders multiple active breakpoints as first-class UI elements — you’re not tabbing between threads, you’re seeing the full execution state at once.

Zed is worth watching in the editor wars specifically because it’s differentiating on performance and native-first architecture while others differentiate on AI integration. V0.160 is a signal that they’re also competing on developer ergonomics for systems programmers — not just vibe-coding velocity.

The competitive context matters: Cursor, Windsurf, and Claude Code are all racing to own the AI-augmented editor space. Zed is taking a different bet — that the best AI editor is also just the best editor, full stop.

Shipped: March 13, 2026 Zed Editor


Quick Comparison: AI-Augmented Editors Right Now

EditorModel Lock-inLocal Model SupportStandout Feature
CursorPartial (multi-model)LimitedBest-in-class autocomplete UX
Claude CodeAnthropic onlyNoDeep Claude integration
WindsurfPartialLimitedCascade agentic flows
Continue.devNone (MIT)YesOpen ecosystem, JetBrains support
Zed v0.160NoneVia ContinuePerformance + multi-cursor debugging

The through-line this week: infrastructure is consolidating (Supabase eating vector DB), debugging is catching up to agentic complexity (Anthropic Console, Zed), and the open-source layer is maturing fast (Continue.dev v2.0). Stack decisions made this month will look different than ones made six months ago. Worth paying attention.

Back next week with more from the radar.