Claude Code lead Boris Cherny published a feature guide covering mobile handoff, /teleport, /remote-control, scheduled loops, hooks, Dispatch, browser testing, worktrees, /batch, and CLI flags like --bare. The guide shows Claude Code being used as a persistent automation surface, so teams can evaluate whether to lean on remote sessions and repo-scale fan-out.

/batch, and CLI flags that change runtime behavior feature guide./teleport and /remote-control session handoff./loop and /schedule for recurring PR and Slack workflows scheduled loops, while hooks can run deterministic logic at lifecycle events like SessionStart, PreToolUse, and PermissionRequest hooks./batch fan-out for migrations batch, multi-repo access via --add-dir add-dir, custom agents via --agent custom agents, and --bare to cut SDK startup by "up to 10x" in non-interactive runs bare mode.Cherny's thread is not a product launch so much as a map of features that already exist but are easy to miss. The practical change is packaging: instead of scattered docs, one maintainer-level post now ties together mobile, remote control, scheduled tasks, hooks, browser tooling, worktrees, and agent configuration into a single operating model for Claude Code feature guide.
That matters because the tool's surface area has grown fast enough that users are building their own references. A recent Hacker News thread around a community cheat sheet describes Claude Code as changing often enough that a quick reference saves users from "digging through docs" HN thread, and the cheat sheet itself tracks slash commands, MCP setup, memory files, CLI flags, and recent changes such as conditional hooks cheat sheet.
The mobile angle is one concrete example. Cherny says "I write a lot of my code from the iOS app" through the app's Code tab mobile app. That is paired with cross-device continuity rather than a separate mobile-only mode.
The cross-device model has two paths. Cherny says claude --teleport or /teleport can continue a cloud session on your machine, while /remote-control lets a phone or browser control a locally running session session handoff. Anthropic's remote-control docs add the implementation detail that the session keeps running on the user's machine, with access to local files, tools, and project config rather than moving that context into the cloud.
Automation is the other half of the guide. Cherny calls /loop and /schedule "two of the most powerful features" and says he runs loops for /babysit, /slack-feedback, /post-merge-sweeper, and /pr-pruner to handle rebases, code review follow-up, and stale PR cleanup scheduled loops. The docs behind scheduled tasks separate session-scoped local loops from cloud tasks, which is a meaningful deployment distinction if the job needs local file access.
Hooks push this further into programmable agent behavior. Cherny's examples include loading context on SessionStart, logging every bash command on PreToolUse, routing permission prompts to WhatsApp on PermissionRequest, and nudging the model to continue on Stop hooks. For browser-facing work, he says the most important tip is to give Claude "a way to verify its output," and recommends the Chrome extension for frontend tasks because it "tends to work more reliably" than similar MCP approaches Chrome extension. Dispatch extends the same remote-control idea to the desktop app, where Cherny says it can manage Slack, email, files, and MCP-backed tools from away from the laptop Dispatch.
The guide's scaling primitives are worktrees, fan-out, and narrower process startup. Cherny says Claude Code has "deep support for git worktrees," using claude -w or the desktop worktree checkbox to run many parallel sessions in one repository; he adds, "I have dozens of Claudes running at all times" worktrees. /batch sits on top of that model: he says it interviews the user, then fans work out to as many worktree agents as needed, including "dozens, hundreds, even thousands," for migrations and other parallelizable changes batch.
Repository scope and agent scope are also now first-class knobs. --add-dir or /add-dir grants access to additional folders for multi-repo work, and the same setting can be made persistent with additionalDirectories in team settings add-dir. --agent lets teams define custom agents in .claude/agents with their own system prompts and tool access custom agents, which Anthropic's subagent docs position as a way to preserve context and route tasks to specialized assistants.
For SDK users, Cherny also flags a performance gotcha: default startup still searches for local CLAUDE.md, settings, and MCPs, but --bare skips that implicit loading for non-interactive runs. He says this can speed SDK startup by "up to 10x," and says the current default was a "design oversight" that Anthropic plans to flip in a future release bare mode.
Posted by phasE89
This is a practical reference for people using Claude Code in real development workflows. The useful bits are the shortcut map, slash commands like `/clear`, `/model`, and `/mcp`, memory/rules files, MCP setup, and the fact that the sheet is updated as the tool changes.
Posted by phasE89
A comprehensive, community-maintained reference cheat sheet for Claude Code (CC), a terminal-based AI coding tool. Covers recent changes (e.g., PowerShell tool, conditional hooks in v2.1.84-2.1.86), keyboard shortcuts (e.g., Ctrl+C cancel, Ctrl+O transcript), MCP servers management, slash commands (e.g., /clear, /model, /mcp), memory files (CLAUDE.md), workflows, tips, and settings. Updated daily, multilingual versions available, printable via Ctrl+P.
I wanted to share a bunch of my favorite hidden and under-utilized features in Claude Code. I'll focus on the ones I use the most. Here goes.
2/ Move sessions back and forth between mobile/web/desktop and terminal Run "claude --teleport" or /teleport to continue a cloud session on your machine. Or run /remote-control to control a locally running session from your phone/web. Personally, I have "Enable Remote Control Show more
3/ Two of the most powerful features in Claude Code: /loop and /schedule Use these to schedule Claude to run automatically at a set interval, for up to a week at a time. I have a bunch of loops running locally: - /loop 5m /babysit, to auto-address code review, auto-rebase, and Show more
10/ Use git worktrees Claude Code ships with deep support for git worktrees. Worktrees are essential for doing lots of parallel work in the same repository. I have dozens of Claudes running at all times, and this is how I do it. Use claude -w to start a new session in a Show more