The Workflow That Broke Developer Twitter

Boris Cherny, the Anthropic engineer who built Claude Code, pulled back the curtain on his day-to-day development workflow in early January 2026, and the programming community has not stopped talking about it since. His approach, which leans heavily on parallel AI agents, custom slash commands, and a living knowledge file, represents a paradigm shift in how software gets written at one of the world's most influential AI companies.

Cherny's workflow is built around a concept he calls subagents: specialized AI personas that handle discrete phases of the development lifecycle. Rather than treating Claude Code as a single monolithic assistant, Cherny deploys dedicated agents for different tasks. A code-simplifier agent handles architectural cleanup. A verify-app agent runs end-to-end tests. Each operates independently, allowing Cherny to run multiple development streams simultaneously.

Slash Commands and Radical Automation

At the heart of Cherny's productivity system are slash commands, custom shortcuts committed directly into the project repository. These one-keystroke macros automate complex multi-step operations that would normally require manual orchestration. His most-used command, /commit-push-pr, handles everything from staging changes to opening a pull request, and Cherny says he invokes it dozens of times each day.

The implications are staggering. What used to be a 10-minute ceremony of git operations, code review preparation, and CI pipeline monitoring is now a single keystroke followed by a few seconds of wait time. Multiply that across an entire engineering organization and the productivity gains become enormous.

The CLAUDE.md Knowledge File

Perhaps the most replicable element of Cherny's system is what he calls the CLAUDE.md file. This is a single markdown document checked into the project's git repository that serves as institutional memory for the AI agent. Every time Claude makes a mistake or misunderstands a pattern, the team documents it in CLAUDE.md so the same error never recurs.

Think of it as a living style guide crossed with a bug tracker, except it is written for an AI reader rather than a human one. Over time, this file becomes an increasingly precise specification of the project's conventions, edge cases, and architectural decisions. The result is an AI assistant that gets smarter with every commit.

Developer Community Reacts

The reaction from the development community has been swift and enthusiastic. Jeff Tang, a prominent voice in the developer ecosystem, wrote that anyone not reading Claude Code best practices straight from its creator is falling behind as a programmer. Kyle McNease declared that Anthropic is on fire with these game-changing updates.

On Hacker News, the discussion thread attracted hundreds of comments, with many developers sharing their own experiments replicating Cherny's patterns. Several reported immediate productivity improvements after adopting the CLAUDE.md approach, even when using competing AI coding tools.

Why This Matters Beyond Anthropic

Cherny's workflow is significant not because it is unique to Claude Code, but because it formalizes patterns that the broader AI-assisted development community has been groping toward. The ideas of parallel agents, command automation, and living knowledge files are model-agnostic. Developers using GitHub Copilot, Cursor, or even open-source alternatives can adopt similar strategies.

What sets Cherny apart is the rigor of his implementation. By treating AI-assisted development as a first-class engineering discipline with its own tooling, conventions, and quality assurance processes, he has created a template that scales from solo projects to enterprise teams.

The Future of AI-Augmented Development

The broader trend is unmistakable. AI coding assistants are evolving from autocomplete tools into full development partners. Cherny's workflow suggests that the developers who thrive in this new landscape will not be those who write the most code, but those who orchestrate AI agents most effectively.

As more engineering leaders share their AI-native workflows, expect to see a rapid convergence on best practices. The CLAUDE.md pattern, in particular, seems destined to become standard practice across the industry. For now, Cherny's reveal has given developers a concrete, actionable blueprint for getting the most out of their AI coding tools, and the community is racing to build on it.