// edition · 2026-05-09

May 09, 2026

26 stories on AI dev tools, agents, and the coding stack — curated from the day's RSS haul by Agentic Dev's pipeline.

Top Signal · Workflows & Tips

How CLAUDE.md actually works

A developer guide details how Claude Code reads CLAUDE.md files hierarchically — from project root and subdirectories — and argues that effective files should function as behavioral specifications rather than README-style descriptions, using negative rules and separating facts from constraints.

Dev.to - Claude

Tool Updates

30 days running an autonomous AI agent: 3 things that worked, 3 that broke

An autonomous Claude-based AI agent called Atlas operated the Whoff Agents service for 30+ days with access to Stripe, GitHub, and social media accounts, publishing 16 articles, 71 tweets, and 34 YouTube Shorts via automated scripts. Credential failures accounted for roughly 60% of failure modes,...

Agent Engineering Dev.to - Claude

Using Claude Code: The Unreasonable Effectiveness of HTML

Thariq Shihipar, an engineer on Anthropic's Claude Code team, published a case for requesting HTML rather than Markdown as output from Claude, noting HTML enables inline SVG diagrams, interactive widgets, and in-page navigation. Simon Willison tested the approach by piping a Linux privilege-escal...

Workflows & Tips Simon Willison

Hooks and the wrapper-authority problem: why your AI coding agent ignores them

Claude Code's `UserPromptSubmit` hooks fire correctly but their output is wrapped in hard-coded metadata that the model treats as low-authority, causing the agent to ignore injected content. A proposed fix exists in Anthropic's issue tracker (#27365) but has received no response after months.

Agent Engineering Dev.to - Claude

Running Codex safely at OpenAI

OpenAI published details on how it runs Codex internally, using sandboxing, approval workflows, network policies, and agent-native telemetry to secure its coding agent deployments for enterprise compliance.

Agent Engineering OpenAI Blog

OpenAI Codex arrives in the browser with new Chrome extension

OpenAI released a Chrome extension for its Codex product that allows agents to operate within a user's existing browser session, accessing signed-in sites, cookies, and authenticated workflows across multiple tabs. The extension connects Chrome to the Codex desktop app on Windows and macOS, enabl...

CLI Agents The New Stack

Chat SDK adds web adapter support

Vercel's Chat SDK added a web adapter that lets developers build browser-based chat interfaces, including in-product assistants and support agents. The adapter streams replies to the browser using the `@ai-sdk/react` `useChat` hook.

Agent Engineering Vercel Blog

Small-to-Big RAG: Your AI Needs a Better Context 🧠

Small-to-Big Retrieval is a RAG technique where AI systems search small text chunks for precision but return larger surrounding context to the language model. Two variants exist: Sentence Window (retrieves neighboring sentences) and Parent Document Retrieval (retrieves a full parent section from ...

Agent Engineering Dev.to - AI

The Rise of the Swarm: Mastering AI Agent Architectures 🐝

A Dev.to tutorial outlines multi-agent AI "swarm" architectures, describing three coordination patterns—handoff-based relay, blackboard state sharing via Redis or vector stores, and directed acyclic graph routing using frameworks such as OpenAI Swarm, CrewAI, and LangGraph.

Agent Engineering Dev.to - AI

I Built an Issue-Based Claude Code Plugin "cadenza" for Technical Output Creation

A developer released "cadenza," an open-source Claude Code plugin that structures technical writing into five sequential phases — issue finding, decomposition, storyboarding, verification, and output generation — with gate checks that prevent skipping steps. The plugin outputs a Markdown file and...

CLI Agents Dev.to - Claude

Chat SDK now supports conversation history

Vercel's Chat SDK added cross-platform conversation history support via new `transcripts` and `identity` options. The `bot.transcripts` API provides four methods—append, list, count, and delete—backed by existing state adapters.

Agent Engineering Vercel Blog

The Agentic Age: Building AI That Works in the Real World

Developers building automated AI agents in 2024-2025 faced account suspensions and large infrastructure bills after routing requests through extracted browser OAuth tokens from consumer chat subscriptions like Claude and ChatGPT to avoid per-token API costs. The practice, exemplified by tools lik...

Agent Engineering Dev.to - AI

Claude Code vs Hiring a Developer in 2026: $20 CLI or $80K Engineer?

A blog post compares Anthropic's Claude Code CLI tool, priced at $20–200/month, against the cost of hiring a software developer at approximately $80,000 per year, concluding the tool functions as a developer aid rather than a full replacement.

CLI Agents Dev.to - Claude

I Caught a Jailbreak Attack That Hides Inside Normal Conversations

Many-shot jailbreaking, documented in a 2024 Google DeepMind paper, embeds harmful requests at the end of fabricated benign conversation histories to bypass LLM safety training, with near-complete bypass reported at 256 prior exchanges. A developer built open-source detection logic using three si...

Agent Engineering Dev.to - AI

Ecosystem

Add live crypto prices to Claude Desktop in 30 seconds (free MCP server)

A developer published an MCP server called "nexus" that connects Claude Desktop to live cryptocurrency prices, Reddit sentiment data, and DeFi TVL figures via a pay-per-call model on the Base blockchain, charging $0.02 per crypto price query and $0.05 per Reddit sentiment query.

MCP & Integrations Dev.to - Claude

The first MCP server that charges per call (no subscription ever)

NEXUS is an MCP server that charges per API call in USDC on the Base blockchain, using the x402 payment protocol, with no subscription required. Tools include crypto prices, stock prices, DeFi TVL data, and Reddit sentiment analysis, priced at $0.02–$0.05 per call.

MCP & Integrations Dev.to - Claude

NEXUS MCP server just processed its first paid call — BTC $80,391

A developer built a pay-per-call MCP server called NEXUS that charges $0.02 USDC per API call, reporting its first successful paid transaction returning live Bitcoin price data. The server integrates with Claude Desktop via a URL-based configuration and uses xpay.tools for key management.

MCP & Integrations Dev.to - Claude

Chat SDK adds Messenger adapter support

Vercel's Chat SDK added a Messenger adapter, enabling support for messages, reactions, multimedia downloads, postback buttons, and automatic display name retrieval from user profiles. The adapter was based on a community contribution via GitHub PR #461.

Open Source Tools Vercel Blog

AI is breaking two vulnerability cultures

AI tools are disrupting two established norms around software vulnerability disclosure — the cultures of full public disclosure and coordinated responsible disclosure — by changing how vulnerabilities are discovered, reported, and exploited.

Opinion & Analysis Hacker News - Best

Quoting Luke Curley

WebRTC drops audio packets by design to minimize latency, making it unsuitable for LLM voice prompts where accuracy is preferred over speed. Browser implementations do not allow audio packet retransmission, a limitation noted by Discord and raised in response to OpenAI's voice AI infrastructure p...

Opinion & Analysis Simon Willison