// category

CLI Agents

Terminal-native coding agents — Claude Code, Codex CLI, Aider, OpenCode, Gemini CLI.

CLI agents are terminal-native coding assistants — Claude Code, Codex CLI, Aider, OpenCode, Gemini CLI. Unlike IDE extensions, they live in your shell, read your whole repo, run tests, and open PRs. This category covers releases, workflow changes, and the migration from autocomplete-style AI to task-level delegation.

88 stories · last 90 days

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...

Dev.to - Claude · 2026-05-10

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...

Dev.to - Claude · 2026-05-10

🧠 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 ...

Dev.to - Claude · 2026-05-10

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...

The New Stack · 2026-05-09

Stop hand-syncing Claude Code and Codex configs

A developer released ai-config-sync-manager v0.1.0, a Node.js CLI tool that synchronizes configuration files between Claude Code and OpenAI Codex, translating between their differing formats for agents, permissions, and MCP servers. The tool runs via npx and supports six sync areas with automatic...

Dev.to - Claude · 2026-05-08

OpenClaw and Claude can put your AI-generated podcasts in Spotify

Spotify released a command-line tool called "Save to Spotify" that lets AI agents such as Claude Code and OpenAI Codex upload AI-generated audio summaries and podcasts directly to a user's Spotify podcast feed. The tool is available on GitHub and is triggered by adding "save to Spotify" to an AI ...

The Verge - AI · 2026-05-08

Live blog: Code w/ Claude 2026

Anthropic held a "Code w/ Claude 2026" developer event featuring morning keynote sessions focused on Claude Code, its AI coding tool. Simon Willison live-blogged the event for simonwillison.net.

Simon Willison · 2026-05-07

Which Claude Code Hook Do You Need? A Decision Guide

Claude Code supports four hook handler types — command, prompt, agent, and http — across 21 lifecycle events. Command hooks run in under 5ms and produce deterministic results, while prompt hooks invoke an LLM and take 300–2000ms, and agent hooks spawn full Claude Code sessions with file and tool ...

Dev.to - Claude · 2026-05-06

Stop prompting Codex like ChatGPT

A developer guide argues that OpenAI's Codex, an autonomous coding agent that reads repos and runs commands, performs better when given bounded "atomic" tasks with defined outcomes and verification steps rather than the open-ended conversational prompts suited to ChatGPT.

Dev.to - AI · 2026-05-06

Running Claude Code and Claude Desktop on Amazon Bedrock

Claude Code CLI and Claude Desktop can be configured to use Amazon Bedrock as the inference backend by setting environment variables in ~/.claude/settings.json and providing AWS IAM credentials, removing the need for a separate Anthropic API subscription.

Dev.to - Claude · 2026-05-04

Claude Code is powerful—but a black box: how much is it spending? looping? how much context is left? I built claudestat: a real-time dashboard with costs, tool calls, loop detection, and reports. npm i -g @deibygs/claudestat full visibility.

A developer released claudestat, an npm package that provides a real-time monitoring dashboard for Claude Code sessions, tracking token costs, tool calls, context usage, and detecting loops. It is installable via `npm i -g @deibygs/claudestat`.

Dev.to - Claude · 2026-05-04

6 Claude Code skills for indie hackers — with real output samples

A developer outlined six Claude Code workflow configurations for indie hackers: a pre-deploy shipping checklist, launch thread writer, support reply drafter, pricing page generator, architecture decision recorder, and competitor analysis tool. Each is designed to read actual codebase files and ou...

Dev.to - Claude · 2026-05-04

Codex for Claude Code Users: What to Know Before You Try It

A developer documented their shift from Claude Code to OpenAI's Codex for personal projects, citing lower cost and improved model quality around GPT-5.4 and later versions. The guide outlines differences in tooling, subscription plans, and CLI vs. desktop app usage for Claude Code users evaluatin...

Dev.to - Claude · 2026-05-04

Sightings

Simon Willison added a "Sightings" section to his blog that pulls in wildlife photos from his iNaturalist account, back-populating over a decade of observations totaling 208 entries. He built the feature using Claude Code on his phone as an extension of his existing content syndication system.

Simon Willison · 2026-05-03

Building a self-hosted deep-research agent with Claude Code

A developer released Scout, an MIT-licensed self-hosted research agent that uses Claude Code to convert GitHub Issues into cited research reports published to GitHub Pages. The system includes a pre-research "sharpening" step that clarifies ambiguous queries before dispatching parallel sub-agents...

Dev.to - Claude · 2026-05-02

I built Governor to reduce Claude Code token and context waste

A developer released Governor, an open-source Claude Code plugin that compresses memory files, filters build/test log output, and adds usage telemetry to reduce token consumption. Small local benchmarks reported approximately 55% reduction in output tokens and 96% of noisy pytest output blocked.

Dev.to - Claude · 2026-05-02

Claude Code gave me no mirror. I built one.

Developer Robert Nowell released "skill-tree," a tool that analyzes Claude Code session history against 11 collaboration behaviors from Anthropic's February 2026 AI Fluency Index study, scoring users and assigning one of seven archetype cards. It is available as a Claude Code plugin and as an npm...

Dev.to - Claude · 2026-05-02

Codex CLI 0.128.0 adds /goal

OpenAI released Codex CLI version 0.128.0, adding a `/goal` command that causes the coding agent to loop repeatedly until it determines a user-set goal has been completed or a configured token budget is exhausted. The feature is implemented via two prompt templates injected automatically at the e...

Simon Willison · 2026-05-01

Claude Code is Gem

A software engineer with a background in trading systems at Bloomberg described shifting from skepticism about LLMs to regular use of Claude Code after finding that structuring interactions with proper context improved results more than prompt wording alone.

Dev.to - Claude · 2026-04-28

Claude Code Token Usage Hides in History and Tools

In Claude Code, token consumption is dominated by system prompts, conversation history, tool definitions, and CLAUDE.md project files rather than the user's typed input. Anthropic recommends keeping CLAUDE.md under 200 lines and notes that HTML block comments in that file are stripped before cont...

Dev.to - Claude · 2026-04-26

Hijacking OpenClaw with Claude

A developer described a method to connect OpenClaw, an open-source AI agent framework, to Claude by using the authentication built into the Claude Code CLI binary, bypassing the need for a separate API key or web account.

Dev.to - Claude · 2026-04-26

An update on recent Claude Code quality reports

Anthropic confirmed that user complaints about degraded Claude Code performance over the past two months were caused by three separate bugs in the Claude Code harness, not the underlying models. One bug, introduced March 26, caused session memory to be cleared every turn after an idle period rath...

Simon Willison · 2026-04-24

How to get started with Codex

OpenAI published a guide for getting started with Codex, its AI-based coding agent, covering project setup, thread creation, and task completion. The guide is aimed at new users beginning to work with the tool.

OpenAI Blog · 2026-04-24

Beyond Drag-and-Drop: Automating n8n Workflows with Claude Code

A developer tutorial describes using Anthropic's Claude Code CLI to generate n8n workflow JSON files from natural language prompts, bypassing manual node configuration in n8n's visual editor. The approach involves prompting Claude to produce importable JSON that n8n can execute across its 400+ in...

Dev.to - Claude · 2026-04-24

Codex settings

OpenAI published documentation for configuring Codex settings, covering options for personalization, detail level, and permissions to customize how the AI coding agent runs tasks.

OpenAI Blog · 2026-04-24

Automations

OpenAI added an Automations feature to Codex that allows users to schedule and trigger automated tasks, including report generation, summaries, and recurring workflows without manual intervention.

OpenAI Blog · 2026-04-24

What is Codex?

OpenAI offers Codex, an agent-based product designed to automate tasks, integrate with external tools, and generate outputs such as documents and dashboards, extending beyond standard chat interactions.

OpenAI Blog · 2026-04-24

Plugins and skills

OpenAI's Codex supports plugins and skills that allow users to connect external tools, access data sources, and define repeatable workflows to automate tasks.

OpenAI Blog · 2026-04-24

What Building a Geopolitical Simulation Taught Me About Claude Code

A developer built GeoSim, a geopolitical simulation engine using Next.js 14, Supabase, and the Anthropic API, in which six AI agents representing world powers simultaneously plan moves across branching timelines. The project used Claude Code's hook system to auto-run tests on file save and a 216-...

Dev.to - Claude · 2026-04-22

Rally(class project)

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...

Dev.to - Claude · 2026-04-20

You've Been Using Claude Wrong. Here's Agent Mode

A tutorial contrasts using Claude as a chat tool versus agent mode, where Claude Code and Model Context Protocol (MCP) allow the model to read codebases, edit files, run tests, and interact with external tools like GitHub and Slack autonomously. A cited survey found 55% of engineers regularly use...

Dev.to - Claude · 2026-04-19

CLAUDE.md vs System Prompt: What Actually Controls Claude Behavior

In Claude Code, system prompts are ephemeral API-level instructions that reset each session, while CLAUDE.md is a persistent, project-scoped file stored in the repository that Claude reads automatically at session start. When the two conflict, CLAUDE.md instructions are treated as high-priority p...

Dev.to - Claude · 2026-04-18

Claude Code accounts switcher, Finally!!

A developer released "claud-code-account-switcher," an npm package that allows Claude Code users to switch between multiple accounts while preserving each account's authentication, history, plugins, and MCP server configurations. It is available via `npm install -g claud-code-account-switcher`.

Dev.to - Claude · 2026-04-18

Adding a new content type to my blog-to-newsletter tool

Simon Willison updated his blog-to-newsletter tool to include a new content type called "beats" — posts capturing external activity like open source releases and museum visits — by prompting Claude Code to clone a reference GitHub repo and modify the relevant HTML file in a single session.

Simon Willison · 2026-04-18

Codex for (almost) everything

OpenAI released a major update to Codex, used by over 3 million developers weekly, adding background computer use, an in-app browser, image generation via gpt-image-1.5, more than 90 new plugins, GitHub PR review support, SSH connectivity, scheduled task automations, and a memory feature for reta...

OpenAI Blog · 2026-04-17

OpenAI’s big Codex update is a direct shot at Claude Code

OpenAI updated its Codex desktop coding tool with the ability to operate desktop apps on macOS, generate images via gpt-image-1.5, browse the web natively, schedule tasks, and retain memory from past sessions. The update also adds plugins for GitLab, Atlassian Rovo, and Microsoft Suite, with EU a...

The Verge - AI · 2026-04-17

Claude Code can now do your job overnight

Anthropic launched "routines" for Claude Code, allowing automated tasks to run on schedules, via API calls, or GitHub webhooks on Anthropic's cloud infrastructure, replacing manual GitHub Actions setups for tasks like issue triage and smoke testing.

The New Stack · 2026-04-15

Claude Code Routines

Anthropic released documentation for Claude Code Routines, a feature within its Claude coding platform available at code.claude.com.

Hacker News - Best · 2026-04-15

10 GitHub Repos That Turn Claude Code Into a Productivity Machine

Ten open-source GitHub repositories provide extensions and integrations for Claude Code, including Repomix for codebase context, Dify and Flowise for visual workflow builders, and Onyx for self-hosted AI alternatives. Installation is available via terminal commands or plugin marketplace.

Dev.to - Claude · 2026-04-12

Claude Code: Self host model configuration

Claude Code can be configured to use self-hosted models by setting ANTHROPIC_BASE_URL and ANTHROPIC_AUTH_TOKEN environment variables, then running claude with the --model flag to specify a local model like qwen3-coder-next.

Dev.to - Claude · 2026-04-09

GitHub Copilot CLI combines model families for a second opinion

GitHub introduced Rubber Duck, an experimental feature in Copilot CLI that uses a second AI model to review coding agent plans before execution. Testing showed Claude Sonnet paired with GPT-5.4 as Rubber Duck achieved 74.7% of the performance gap between Sonnet and Opus, with larger gains on comp...

GitHub Blog · 2026-04-07