24 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 outlined five workflows for using Claude Code: grepping before edits, writing failing tests before fixes, requiring plain-English explanations before code generation, reading personal markdown notes for context, and enforcing single-step checkpoints on multi-part tasks.
Dev.to - Claude
A developer published a method for adding persistent memory to Claude AI coding agents using a file-based system with a lightweight index loaded each session and on-demand retrieval of structured markdown files covering user profiles, project state, corrections, and external references. The appro...
CLI Agents
Dev.to - Claude
A developer guide outlines methods for monitoring multiple concurrent AI coding agents across tools like Claude Code, Cursor, and Codex, which each use different event models. Approaches range from manual terminal watching to zsh shell hooks and Claude Code's built-in hooks system for triggering ...
Workflows & Tips
Dev.to - Claude
A Dev.to guide identifies four factors that compound token costs when using Claude Opus 4.7: retry loops, context bloat, disabled prompt caching, and verbose tool schemas. The article claims these multipliers can push actual costs to 8x projected amounts, and that addressing all four can reduce c...
Pricing & Plans
Dev.to - Claude
A developer running an autonomous AI agent 24/7 for 30 days reported total monthly API costs of $60–120, with Anthropic's Claude accounting for $45–90 of that. The pipeline uses Claude Sonnet as the primary model, Claude Opus sparingly for strategic tasks, and Mistral Voxtral for text-to-speech, ...
Pricing & Plans
Dev.to - Claude
Vercel's AI SDK v6 is a TypeScript library providing a unified API for multiple AI model providers including OpenAI, Anthropic, and Google, with provider switching via a single string change. Version 6 adds an AI Gateway for routing, improved streaming APIs, Zod-based structured output validation...
Workflows & Tips
Dev.to - AI
A developer built a .NET background service that monitors Kubernetes pods for failures such as CrashLoopBackOff and OOMKilled, sends the last 100 lines of logs to the Claude API for analysis, and automatically opens a GitHub pull request with a root cause assessment and suggested fix within appro...
Agent Engineering
Dev.to - Claude
Claude Opus 4.7 uses an updated tokenizer that produces approximately 1.46x more tokens than Opus 4.6 for raw text, and up to 3x more for high-resolution images, according to testing with Anthropic's token counting API. Since Opus 4.7 retains Opus 4.6's pricing of $5 per million input tokens, the...
Pricing & Plans
Simon Willison
DataArt engineer Eugene Kiselev built a Python-based AI agent that extracts kubectl commands from Kubernetes lab docs, executes them in a live cluster, and rewrites the docs after fixing errors. Testing local models via Ollama, Gemma 3:4B consistently identified all 16 commands per run, while the...
Agent Engineering
Dev.to - AI
Anthropic's Claude includes a Design feature that generates React components with Tailwind CSS styling from natural language prompts or screenshots, producing browser-runnable code without design tokens, collaboration tools, or vector editing capabilities. Unlike Figma, which targets designer-to-...
Workflows & Tips
Dev.to - Claude
A technical article examines tokenization mechanics across Anthropic's Claude 3 model variants, including Opus, Sonnet, and Haiku, covering token counting methods, context window limits of up to 200,000 tokens, and cost estimation using Anthropic's official tokenizers library.
Workflows & Tips
Dev.to - Claude
SmartBear updated its Swagger toolset with two features: a centralized Swagger Catalog for API portfolio visibility and CI/CD-integrated drift detection that flags divergence between OpenAPI specifications and generated code before deployment. The updates target a problem where AI coding tools ca...
Agent Engineering
The New Stack
A developer built a Laravel agent using OpenClaw, an AI assistant capable of reasoning, planning, and generating its own tools, to monitor a SaaS payment API's subscriptions, transactions, and anomalies. The project documented practical lessons including sandbox isolation, deterministic fallbacks...
Agent Engineering
Dev.to - AI
A developer built a Laravel agent using OpenClaw, an AI assistant capable of reasoning, planning, and generating its own tools, to monitor a SaaS payment API's subscriptions, transactions, and anomalies. The project documented practical lessons including sandbox isolation, deterministic fallbacks...
Agent Engineering
Dev.to - AI
Two students built Rally, a location-based social platform for posting and joining local activities, as a class project over two 2-week sprints using Anthropic's Claude Code for planning, coding, testing, and deployment. Their workflow included a CLAUDE.md configuration file, automated lint and t...
CLI Agents
Dev.to - Claude
OpenClaw is an AI agent framework that separates "plugins" (runtime extensions) from "skills" (markdown-based behavioral instructions), with skills stored in a precedence-based directory hierarchy. The article outlines the skill file structure and offers guidance on selecting skills from the Claw...
Agent Engineering
Dev.to - AI
A developer launched a third-party API wrapper for Anthropic's Claude at simplylouie.com, charging a flat $2/month for unlimited requests. Anthropic's direct API pricing runs $15–75 per million tokens depending on the model.
Pricing & Plans
Dev.to - Claude
Whoff Agents, a set of Claude Code skill packs and tools, launched on Product Hunt on April 21st, offering products priced from $29 to $99, including a TDD/debugging skill pack, a Next.js SaaS boilerplate, and an MCP security scanner covering 22 attack vectors.
CLI Agents
Dev.to - Claude
Simon Willison documented changes in the system prompt between Anthropic's Claude Opus versions 4.6 and 4.7, comparing the instructions baked into the two model releases.
Model Releases
Hacker News - Best
Salesforce announced "Salesforce Headless 360," exposing its Salesforce, Agentforce, and Slack platforms as APIs, MCP, and CLI for AI agent access without a browser. Commentators Matt Webb and Brandur Leach separately argue that AI agents' preference for programmatic access is driving a broader s...
Opinion & Analysis
Simon Willison
Opinion & Analysis
Dev.to - AI
OpenClaw's plugin ecosystem supports native gateway packages for channels, model providers, memory, voice, and web search, installable via CLI with validated manifests. The most mature plugins cover browser access, memory, and observability, while business-automation categories such as CRM and in...
Open Source Tools
Dev.to - AI
Anthropic has introduced Claude Design, a workspace that generates visual outputs — including slide decks, landing pages, and marketing assets — from plain-language prompts. The tool reportedly includes automatic brand style learning to apply consistent fonts and colors across outputs.
Opinion & Analysis
Dev.to - Claude
A developer spent two years and approximately 2,000 lines of code attempting to build a personal AI system designed to represent their own personality and thought patterns. The project went through multiple failed iterations, beginning with simple string-matching logic before the developer conclu...
Opinion & Analysis
Dev.to - AI