What's Up Claude Code: Week of February 10th
TL;DR
Claude Code shipped ten releases this week (v2.1.32 → v2.1.42). The big additions: fast mode for Opus 4.6 (2.5x speedup), a proper claude auth CLI for managing credentials, automatic memory so Claude remembers context across sessions, and agent teams graduating from proof-of-concept to genuinely usable with hooks, memory frontmatter, and teammate messaging fixes.
Meanwhile, Anthropic closed a $30B round—and buried in the announcement was a striking number: Claude Code’s ARR has doubled, hitting $2.5B year to date.
1. Fast Mode for Opus 4.6
The headline feature this week: fast mode now works with Opus 4.6 (v2.1.36). This gives you approximately 2.5x faster responses by routing through optimized inference. If you’re on Opus, you can toggle it with /fast — no config changes needed. Docs here.
For context, OpenAI shipped their own speed play this week — GPT-5.3-Codex-Spark at 1,000+ tok/s via a Cerebras partnership. The emerging pattern is clear: raw intelligence is table stakes; latency is the new differentiator for coding agents. Both Anthropic and OpenAI are racing to make “thinking” feel instant.
2. Agent Teams: From Demo to Daily Driver
Agent teams (the multi-agent collaboration feature behind the C compiler demo) got a wave of polish this week:
TeammateIdleandTaskCompletedhook events (v2.1.33) — automate workflows when agents finish or go idlememoryfrontmatter for agents — persistent memory scoped touser,project, orlocal- Restricted subagent spawning — use
Task(agent_type)in agent “tools” frontmatter to control which sub-agents can be created - tmux teammate sessions fixed — inter-agent messaging now works reliably in tmux
- Plugin discoverability — plugin names show in skill descriptions and the
/skillsmenu
If you tried agent teams when they launched with v2.1.32 and hit rough edges — worth giving them another look. The tmux fix alone makes the multi-pane workflow practical.
3. claude auth CLI
A small but welcome addition (v2.1.41): proper authentication management from the command line.
claude auth login # authenticate
claude auth status # check current auth state
claude auth logout # sign out
Previously, managing auth required manual token juggling or going through the VS Code extension. This is especially useful for CI/CD pipelines, remote machines, and multi-account setups.
4. Automatic Memory
Starting in v2.1.32, Claude Code automatically records and recalls memories as it works. No setup needed — it learns your preferences, project patterns, and past decisions, then uses them in future sessions.
This is a subtle but significant shift in how Claude Code sessions feel. Instead of re-explaining your project structure every time, Claude builds up context over time. Combined with the new agent memory frontmatter for scoped persistence, the “fresh start every session” friction is meaningfully reduced.
5. Hidden --sdk-url Flag: WebSocket Client for Browser/Mobile
Spotted in the Discord community this week: Claude Code has a hidden --sdk-url flag that enables a WebSocket client, opening the door to browser and mobile UIs connecting to a running Claude Code instance. This isn’t officially documented yet, but it signals Anthropic is laying groundwork for Claude Code beyond the terminal — think remote sessions from your phone, or web-based frontends talking to a local Claude Code backend.
Combined with the new remote session browsing from claude.ai (VS Code), the trend is clear: Claude Code is decoupling from “you must be in a terminal.”
6. Opus 4.6 Thinking Hits #1 on LMArena
Claude Opus 4.6 with thinking mode reached #1 on LMArena in both Text Arena (Elo 1504) and Code Arena (Elo 1576). This matters for Claude Code users because it validates what many have felt anecdotally — Opus 4.6 with extended thinking is currently the strongest coding model available, and the benchmark data backs it up.
7. Windows ARM64 & Quality of Life
Windows ARM64 support (v2.1.41) brings native binaries for Surface Pro and other ARM Windows devices.
Other nice-to-haves this week:
/renameauto-generates session names from conversation context (no more “Untitled” soup)- VS Code session picker now shows git branch and message count, searchable by branch
- Remote session browsing — OAuth users can browse and resume sessions from claude.ai in VS Code
- Startup performance boost via deferred Zod schema construction
- Better prompt cache hit rates by moving date out of system prompt (v2.1.42)
8. Bug Fixes Worth Knowing About
Ten releases means a lot of bug fixes. The ones most likely to have bitten you:
- AWS auth refresh hanging indefinitely — now has a 3-minute timeout (v2.1.41)
- FileReadTool blocking on FIFOs and
/dev/stdin— fixed (v2.1.41) - Heredoc delimiter parsing — improved to prevent command smuggling (v2.1.38)
- Permission wait time inflating subagent elapsed time — no longer counted (v2.1.41)
- VS Code terminal scroll-to-top regression — fixed (v2.1.38)
- Background task notifications not delivered in streaming Agent SDK mode — fixed (v2.1.41)
- Auto-compact failure notifications — no longer shown to users (v2.1.41)
- Proactive ticks firing while in plan mode — fixed (v2.1.41)
9. Anthropic’s $30B Round — What It Means for Claude Code
Anthropic closed a $30B raise at a $380B valuation. Revenue hit $14B, ahead of the $10B projected six months ago. The number that matters for this community: Claude Code’s ARR doubled, reaching $2.5B year to date.
That kind of revenue growth signals two things: enterprises are adopting coding agents at scale, and Anthropic is going to keep investing heavily in Claude Code. Expect the pace of releases (ten in one week!) to continue.
Built with Claude Code
Some standout projects and deep dives from the community this week:
Velo — A full desktop email client, 100% coded with Claude. Built with Tauri, React, and Rust, it’s local-first (SQLite, no cloud sync), has Superhuman-style keyboard shortcuts, AI categorization, threaded conversations, and a command palette. 81 component files, 27 DB service files, 64 test files — not a toy demo. velomail.app
Paracord — A self-hosted, decentralized Discord alternative with voice chat, video calls, game streaming, and text messaging. Built by someone with a non-software day job who started the project on a Tuesday. Light enough to run on a Raspberry Pi.
agtx — A kanban-style terminal app for autonomous multi-session Claude Code. Each task gets its own git worktree and tmux window, with automatic session management and resume capability. Includes a PR workflow and multi-project dashboard — basically what agent teams looks like as a TUI.
Claude Code Mastery Starter Kit — 59.9M tokens ($2,239 in API usage) worth of Claude Code lessons distilled into one git clone. Battle-tested CLAUDE.md rules, 3 hooks that block secrets and lint on save, 16 slash commands, custom agents and skills. Based on the Claude Code Mastery guides (287K views on V4 alone).
CCC vs GCC — A thorough independent benchmark of Anthropic’s Claude-built C Compiler (CCC) against GCC. Tests compilation of the Linux kernel, SQLite, FFmpeg, and more. The deep dive explains why the compiler is actually the “easy” part — the assembler and linker are where the real complexity lives. Great homework by the community on one of the most impressive Claude Code demos yet.
RKD Telemetry Extractor — Reverse-engineered the proprietary Race-Keeper binary telemetry format used at professional track days. Extracts GPS, accelerometer, and gyroscope data from .rkd files. Dual implementations (Python + Go) producing byte-for-byte identical output. The first public documentation of the RKD binary format — built with Claude Code.
Roro — A creative UI approach: play games, work on todos, or take notes while your AI is thinking. Works on top of ChatGPT, Claude, Gemini, Manus, and Perplexity. Solves the “staring at a spinner” problem with something actually useful.
Community Corner
Another packed week for Claude Code meetups around the world:
This week:
- 🇩🇰 Copenhagen — non-technical focus (PMs, designers, researchers)
- 🇪🇪 Tallinn — talks on Opus 4.6 and getting company buy-in
- 🇬🇧 London Curious #2 — cowork-style evening
- 🇳🇴 Trondheim — beginner-friendly intro + subagents workshop
- 🇫🇷 Cannes — casual builders gathering
- 🇨🇴 Bogotá — first ever Claude Code meetup in Colombia!
- 🇺🇸 LA Cowork — brand-building workshop with Claude
Coming up next week:
- 🇬🇧 London Central #3 (Feb 16)
- 🇺🇸 Denver (Feb 17) & Boulder (Feb 19)
- 🇮🇳 Bengaluru (Feb 18) — Anthropic engineers flying in
- 🇳🇱 Amsterdam (Feb 19)
- 🇬🇧 London MCP Hack Night (Feb 20)