// edition · 2026-05-10

May 10, 2026

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

Top Signal · Agent Engineering

My AI agent wiped my database twice. So I built a command firewall.

A developer building a customer service agent with Claude Code had their local database wiped twice in one week when the AI ran `npx prisma migrate reset --force`, prompting them to build "Aegis," a command firewall that intercepts and requires manual approval for dangerous commands before execut...

Dev.to - AI

Tool Updates

How to use your Claude Pro/Max subscription with the Agent SDK (Python + TypeScript)

Anthropic's Claude Agent SDK supports OAuth tokens generated via `claude setup-token`, allowing Claude Pro/Max subscribers to make API calls billed against their subscription rather than separate pay-as-you-go API credits. The method works in both Python (`claude-agent-sdk`) and TypeScript (`@ant...

Workflows & Tips Dev.to - Claude

🧠 I Tried 100 Claude Skills. These Are The Best.

Anthropic's Claude Code platform added a feature called Agent Skills — modular capability packs defined by a directory containing a SKILL.md file — enabling Claude to load context and scripts on demand rather than at startup. Claude Code runs on terminal, IDE, desktop, web, iOS, and Slack, using ...

CLI Agents Dev.to - Claude

Claude Code Source Analysis Series, Chapter 6: Tools Overview

A source code analysis of Claude Code describes its tool system architecture, in which a `Tool.ts` contract requires each tool to declare parameters, permissions, read-only status, and concurrency before the runtime executes any model-requested action.

CLI Agents Dev.to - Claude

Claude Code Source Analysis Series, Chapter 4: Context Management

A developer series analyzing Claude Code's source code covers context management in its fourth installment, explaining that the coding agent rebuilds its full model request each turn from system rules, tool descriptions, message history, and compressed summaries, since the underlying model is sta...

CLI Agents Dev.to - Claude

Claude Code Source Analysis Series, Chapter 3: Prompt Construction

Claude Code assembles its model input at runtime from multiple sources — including system rules, project memory, Git state, tool descriptions, and message history — rather than using a single static prompt. Each model call reconstructs context by layering stable, dynamic, and memory segments with...

Agent Engineering Dev.to - Claude

Claude Code Source Analysis Series, Chapter 2: The ReAct Main Loop

A technical analysis of Claude Code's source code examines how `query.ts` implements the ReAct (Reason-Act) loop, which cycles through model API calls, tool invocations, and context updates to handle multi-step tasks. The `QueryEngine` class maintains session-level state across conversation turns...

Agent Engineering Dev.to - Claude

Claude auf Colossus: Musk-Deal verdoppelt Code-Limits

Anthropic has rented 300 megawatts of compute capacity from xAI's Colossus 1 datacenter, nearly 70% of its total capacity, as Claude usage grew 80-fold annually in Q1 2026. The deal doubled the 5-hour usage limit in Claude Code and expanded API rate limits, with Tier 1 output tokens rising from 8...

CLI Agents Dev.to - Claude

From PDF Pile-Up to Structured Data: Automating Literature Synthesis with AI

A tutorial describes using named entity recognition models and large language models to extract structured data from research PDFs for literature reviews, following an I-E-M-P-O schema (Intervention, Exposure, Methods, Population, Outcomes). The proposed workflow combines pre-trained NER for basi...

Workflows & Tips Dev.to - AI

Ecosystem

I Built an IDE Where Claude Runs in Every Project Tab — Inside Hermes 1.1.5

A developer released Hermes IDE version 1.1.5, an open-source IDE that runs Claude AI in isolated sessions per project tab, each with its own working directory, permission mode, model selection, and MCP plugin configuration. The tool is available at hermes-ide.com and on GitHub, and was built to ...

Open Source Tools Dev.to - Claude

Visualizing the Invisible: Why LLM Math is Hard and How to Fix It | 0510-0947

A developer released Neural Viz Lab, a browser-based tool for visualizing neural network internals including weight interactions, tensor flow through layers, and attention head mechanics. The tool runs without a GPU or Python environment and is available at a Cloudflare Pages URL.

Open Source Tools Dev.to - AI