// edition · 2026-06-14

June 14, 2026

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

Top Signal · CLI Agents

I run Claude Code and Codex side by side. Here's the division of labor that actually works.

A developer describes using Claude Code and OpenAI's Codex CLI in parallel: Claude Code for interactive, exploratory coding sessions and Codex's non-interactive `codex exec` mode for scripted, repetitive tasks such as generating commit messages and version bumps.

Dev.to - Claude

Tool Updates

Two tiny Claude Code skills that fixed my two biggest agent problems

A developer released two open-source prompt files for Claude Code: "spec," which generates a 13-section specification before coding to reduce ambiguous task guessing, and "review-audit," a read-only code audit across six axes that requires file-and-line evidence before marking any check as passed.

Workflows & Tips Dev.to - Claude

Configurando "Claude Code Free" + OpenRouter.

A tutorial describes configuring "Claude Code Free," a proxy that redirects Anthropic's Claude Code terminal tool to alternative AI providers via OpenRouter, allowing use without official Anthropic authentication. The guide covers Windows installation via PowerShell and manual PATH configuration ...

CLI Agents Dev.to - Claude

The Hive Mind is Real: How Semantic Memory Just Saved My Bacon

A developer blog post describes a conceptual "collective semantic memory" system for AI agents on howiprompt.xyz, where vectorized records of past task failures are stored and retrieved to prevent agents from repeating the same prompt errors.

Agent Engineering Dev.to - AI

Mapping SQLite result columns back to their source `table.column`

Simon Willison investigated methods to map SQLite query result columns back to their source table and column names, aiming to add this capability to Datasette. Using Claude Code, he identified three approaches: the apsw library, ctypes access to SQLite's sqlite3_column_table_name() C function, an...

Workflows & Tips Simon Willison

OpenAI API Relay Setup: Environment Variables That Keep Your Project Clean

A Dev.to guide describes storing OpenAI API relay configuration in three environment variables — base URL, API key, and model name — to avoid hardcoding values in source files, with Python and (implied) other SDK examples using api.wappkit.com as the relay endpoint.

Workflows & Tips Dev.to - Claude

Why AI retrieval and ranking need more than vector search

GigaOm published a report arguing that production AI retrieval systems require more than vector similarity search, citing the need to combine semantic, lexical, behavioral, and business signals in a single pipeline. The report contends that tensor-native architectures handle multi-dimensional dat...

Agent Engineering The New Stack

Ecosystem

Fable 5 vs Opus 4.8: The real stakes, not the spec sheet

Anthropic released Fable 5, its highest-capability generally available model and the first in its new Mythos-class tier, priced at $10 per million input tokens and $50 per million output tokens. The launch drew criticism after a disclosure in its 319-page system card revealed the model would sile...

Model Releases The New Stack

Ollama vs vLLM in 2026: Local Dev Simplicity vs Production Throughput

Ollama and vLLM are two open-source tools for running large language models locally: Ollama targets ease of use for individual developers, while vLLM is designed for high-throughput production inference with support for concurrent requests at scale.

Open Source Tools Dev.to - AI

Loops are replacing prompts. Verification is about to be your biggest problem.

A commentary in The New Stack argues that AI-assisted software development is shifting from human-driven prompts to automated feedback loops — small programs that prompt AI agents, evaluate outputs, and retry until goals are met. The author contends this shifts the developer's role toward buildin...

Opinion & Analysis The New Stack

How to start when the machine writes the code

A developer published a guide outlining six strategies for early-career programmers to build skills as AI handles routine coding tasks, including contributing to real open-source projects, reviewing AI-generated code before shipping it, and building a visible track record of contributions.

Opinion & Analysis Dev.to - AI

Claude Fable 5: Das versteckte Problem hinter der Sperre

Anthropic reportedly released "Claude Fable 5," a flagship model, which the U.S. Commerce Department then restricted to U.S. citizens only, citing a jailbreak; Anthropic subsequently disabled both Fable and Mythos models for all users. The article also notes Fable 5 carries a mandatory 30-day dat...

Model Releases Dev.to - Claude