Code with Claude 2026: Checkpoints, Auto Mode, and a Deliberate No-New-Model Keynote
Anthropic's second annual developer conference, Code with Claude 2026, opened in San Francisco on May 6. Unlike many developer conferences, the keynote did not launch a new model — a deliberate choice the company framed as a signal that the focus is now on getting existing models reliably into production rather than chasing benchmark headlines. The two centerpiece announcements were Claude Code Checkpoints and Claude Code Auto Mode, both shipping same-day.
Checkpoints: save state, rewind with confidence
Checkpoints automatically save your code state before every change Claude makes. If a multi-step session takes a wrong turn, you can rewind to any prior state using Esc Esc (double-tap Escape) or the /rewind command, then choose to restore the code, the conversation, or both. The feature was one of the most-requested by Claude Code users, who had previously relied on git commits as manual checkpoints — a workflow that required constant context-switching. Checkpoints operate below the git layer, so you can rewind to mid-session states that were never committed.
# During a Claude Code session:
/rewind # opens checkpoint browser
# choose: restore code only, conversation only, or both
# Or press Esc twice to jump to the most recent checkpoint
Auto Mode: safer autonomous execution
Auto Mode is a new permission model for Claude Code that sits between fully interactive (every action requires approval) and --dangerously-skip-permissions (no approvals at all). In Auto Mode, a secondary model-based classifier evaluates each proposed action and decides whether it requires human confirmation. The classifier uses session context — accumulated denials, action type, file sensitivity — to calibrate its decisions. A backstop rule kicks in if the session accumulates 3 consecutive denials or 20 total, halting the agent and escalating to the human. This makes it safe to leave Claude Code running on long tasks without babysitting every decision.
Use Auto Mode for any session where you want to step away but maintain a safety net. The classifier backstop prevents runaway agents from repeatedly pushing past denials. Reserve --dangerously-skip-permissions only for fully sandboxed CI environments where no production systems are accessible and you have reviewed the task scope completely before starting.
Conference structure: three cities, extended days
The 2026 edition spans three stops: San Francisco (May 6), London (May 19), and Tokyo (June 10). Each main conference day is followed by an "Extended" day aimed at independent developers and early-stage founders, with a focus on hands-on workshops rather than keynotes.