Thursday, 30 April
5 min read · 854 words

1. Claude Code v2.1.122: /resume Now Finds Sessions from PR URLs, MCP ToolSearch Fixed, Hooks Resilience

  • Released Apr 28. Three workflow-level fixes: paste any GitHub, GitLab, or Bitbucket PR URL into /resume's search box and it finds the session that created that PR; ToolSearch now catches MCP tools that connected after session start in nonblocking mode (fixing a common "where did my tool go?" bug); malformed hooks entries in settings.json no longer invalidate the entire file — just the bad entry gets dropped.
  • Source: GitHub releases
  • Why it matters: If you've lost track of a Claude Code session that created a PR, paste the PR URL into /resume and find it immediately.
  • Verified

2. Zed 1.0: GPU-Native AI Editor Ships Production Release with Native Multi-Agent Support

  • Zed hit 1.0 today after five years and a million lines of code. Built entirely in Rust on a custom GPU-accelerated UI framework (GPUI), it now supports parallel agent sessions via the Agent Client Protocol — Claude Agent, Codex, OpenCode, and Cursor all work natively. Edit predictions run at keystroke speed. Zed for Business also launching with centralized billing and team management.
  • Source: Zed Blog
  • Why it matters: If you run multiple Claude Code agents in parallel, Zed's native multi-agent support and GPU-native performance make it the most capable open alternative to VS Code for agentic workflows.
  • Verified

3. Warp Terminal Goes Open Source: Agentic Dev Environment Hits #1 Trending, 11,955★ Today

  • Warp, the agentic terminal used by 700K+ developers, open-sourced its core repository today. OpenAI is the founding sponsor, and new agentic management workflows are powered by GPT models. The repo hit 11,955 stars in a single day, trending #1 on GitHub globally. MCP is supported.
  • Source: GitHub
  • Why it matters: Open-sourcing Warp's core means community MCP integrations and Claude Code compatibility layers can now be built and contributed without waiting for the Warp team.
  • Verified

4. Using Claude as a Data-Driven SEO Strategist: 5 to 1,000 Clicks/Week, $0 Ads

  • A r/ClaudeAI post (511 upvotes) detailed a repeatable workflow: export Google Search Console data → feed it to Claude → ask it to identify keyword gaps, zero-click rankings (AI Overviews stealing traffic), CTR failures, and indexing gaps → get specific, fix-able outputs. The poster also used Claude to build an AEO (Answer Engine Optimisation) layer: question-formatted H2s, FAQ schema, and llms.txt to get cited by ChatGPT and Perplexity.
  • Source: Reddit r/ClaudeAI
  • Why it matters: The pattern — feed Claude structured data exports and ask it to find anomalies — applies beyond SEO to error logs, cost reports, and any analytics dump.
  • Emerging

5. Poolside Releases Laguna XS.2: Open-Weight 33B/3B MoE Coder, Single GPU, Apache 2.0

  • Poolside's first public model release: Laguna XS.2 is a 33B total / 3B active MoE coding model with hybrid attention and FP8 KV cache, running on a single GPU and benchmarking near Qwen-3.5 on coding tasks. Companion model Laguna M.1 (225B/23B active) also released. Both Apache 2.0. Ollama shipped same-day support.
  • Source: AINews
  • Why it matters: If you benchmark open-weight coding models for agentic tasks, run ollama run poolside/laguna-xs — a single 3090 should handle it and it's worth measuring against your current local setup.
  • Emerging

# Wrap any Claude API call to capture a forensic decision trail.
# Paste into your system prompt or pre-prompt:

Return your response as a JSON object with exactly three fields:
{
  "answer": "<your complete response>",
  "reasoning": "<2-3 sentences: why you reached this answer>",
  "confidence": "low | medium | high"
}

Confidence guide:
  high   = established fact, direct calculation, explicit instruction
  medium = reasonable inference with known gaps or assumptions
  low    = speculation, incomplete data, or genuinely ambiguous input

Forces structured output with embedded reasoning and confidence — use in any API call or agent pipeline where you need an audit trail of decisions. From The Anthropic Stack's forensic logging guide, Apr 29 | https://theanthropicstack.substack.com/p/build-a-forensic-trail-for-every

  • Ghostty terminal leaving GitHub (3,239pts HN) — Mitchell Hashimoto citing near-daily Actions/PR outages; migration plan underway, read-only mirror stays at current URL. Dev infrastructure signal worth watching. https://mitchellh.com/writing/ghostty-leaving-github

  • Claude Code push notifications — @ClaudeDevs announced phone push notifications when a long task finishes or Claude needs input. No changelog entry found in v2.1.121-123 — may have shipped in an earlier release this week. Check your notification settings. https://x.com/ClaudeDevs

  • pip 26.1 ships lockfiles and dependency cooldowns — pip lock datasette llm writes a pylock.toml; --uploaded-prior-to P4D pins to packages at least 4 days old. Simon Willison's breakdown at https://simonwillison.net/2026/Apr/28/pip-261/