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
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
Cursor released a TypeScript SDK that lets developers build coding agents using the same runtime and models as the Cursor IDE, with features including MCP server connections, agent loop hooks, and subagent controls. Developer reactions have been mixed, with some noting the SDK still carries known...
Agentic IDEs
The New Stack
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
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
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
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 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
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
Amp, an AI coding startup that spun out of Sourcegraph in late 2025, released a rebuilt CLI called Neo, redesigned to support remote control of terminal sessions via a web interface, plugins, and longer-running agent workflows. Developers can start a local CLI session and manage it remotely, incl...
CLI Agents
The New Stack
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
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
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
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
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
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
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
A beginner developer built 10 AI applications over 5 days while completing courses 5 and 6 of the IBM Applied AI Developer Professional Certificate, including a Flask-based sentiment analyzer, a local RAG application, a chatbot, and a voice assistant using Whisper and Piper.
Workflows & Tips
Dev.to - AI
Anthropic partnered with SpaceX to access Colossus 1, a Memphis-based data center with over 220,000 Nvidia GPUs and 300 megawatts of capacity. The deal immediately doubles Claude Code rate limits for paid plans and raises Claude Opus API token limits for Tier 1 users from 30,000 to 500,000 input ...
Industry & Funding
The New Stack
Claude 3.5 Sonnet offers a 200K token context window at $3/$15 per million input/output tokens, compared to GPT-4 Turbo's 128K context window at $10/$30 per million tokens. The two models differ in context capacity, reasoning depth, and cost structure depending on workload.
Model Releases
Dev.to - Claude
Xanther AI reports that adding its context engine to MiniMax M2.5 raised the model's SWE-bench Verified score from 75.8% to 78.2% on 500 real bug instances, at $0.22 per instance compared to $0.75 for Claude 4.5 Opus, which the company says currently leads the official leaderboard at 76.8%.
Model Releases
Dev.to - Claude
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
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
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
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 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
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