The argument in one line.
Most Claude Code power users are operating at 20% capacity because the CLI's highest-leverage features — hooks, worktrees, teleport, and batch — are invisible until someone shows you where the switch is.
Read if. Skip if.
- You use Claude Code daily but start every session the same way with no hooks, no agents, and no autopilot.
- You want to run parallel Claude instances without the fear of two agents overwriting the same file.
- You work across desktop and mobile and want seamless session continuity without saving anything manually.
- You have heard terms like hooks, worktrees, or /btw and skipped past them assuming they were too technical.
- You are new to Claude Code and still learning the basics — this video assumes you are already running sessions regularly.
- You are looking for prompt-writing strategy or output quality tips, not CLI feature coverage.
The full version, fast.
Boris Cherny published a 15-feature thread that hit 2M views; this video is the practical companion. Features cluster into three areas: mobility (mobile app, teleport, remote control), automation (hooks, /loop, /schedule), and parallelism (worktrees and /batch for running 3-30 isolated agents simultaneously). The most underused feature is hooks — they inject context deterministically into every session whether Claude wants it or not, unlike CLAUDE.md which Claude can effectively ignore. The highest-leverage combo for power users is worktrees plus /batch, which eliminates file-conflict risk when running parallel agents at scale.
Chat with this breakdown — free.
Sign in and you get 23 free chat messages on us — ask for the hook, quote a framework, find the exact transcript moment, generate a markdown action plan. Bring your own key when you want unlimited.
Create a free account →Where the time goes.

01 · Intro
Context: Boris Cherny's viral tips thread. Promise: 15 features, practical demos.

02 · Mobile App
Code from iOS/Android via the Claude app. Plan mode on mobile, GitHub sync, push/pull workflow.

03 · Teleport
Resume unsaved mobile sessions on desktop with claude --teleport. Lists sessions by name.

04 · Remote Control
Monitor heavy desktop tasks from mobile. Name sessions for multi-task clarity.

05 · Autopilot: loop and schedule
Autopilot mode. /loop runs while terminal is open; /schedule executes in the cloud on a time interval.

06 · Hooks
Deterministic event-based rules in settings.json. Auto-inject brand guidelines on every session start.

07 · Cowork Dispatch
Full computer-use access. Claude can physically click extensions, open apps, reload browsers.

08 · Claude in Chrome
Visual inspection loop using your real browser. Claude writes code, checks it visually, fixes issues.

09 · slash config Settings
Toggle thinking mode, remote control, Claude in Chrome, teammate mode from one unified menu.

10 · Live Preview
Real-time HTML preview in Claude desktop app. No localhost required, changes visible as they happen.

11 · Session Forking with branch
Fork a session to explore an aggressive/experimental path. Original session ID remains resumable.

12 · Side Queries with btw
Fire a side query during an active task without flooding main context window.

13 · Git Worktrees
Three desks, three agents, zero file conflicts. claude -w syntax for named isolated lanes.

14 · batch Command
Spin up 5-30 parallel workers for breadth tasks. Token-heavy — use with caution on rate-limited accounts.

15 · bare Flag
Skip all CLAUDE.md and skills injection. Requires API key; subscription login returns not-logged-in error.

16 · add-dir for Multi-Repo Access
Bring external directories into session context. Useful for templates and brand assets across projects.

17 · Custom Agents
Name a markdown file in .claude/agents/, start session with personality and tools pre-loaded via --agent flag.

18 · Outro
Links to community and Claudemaxxing guide.
Lines worth screenshotting.
- Hooks in settings.json are deterministic — Claude cannot skip them the way it can deprioritize a CLAUDE.md instruction.
- claude --teleport resumes any unsaved mobile session on desktop; the session never needs to be explicitly saved first.
- /loop runs autopilot as long as your terminal is open; /schedule runs in the cloud independent of your machine state.
- Worktrees give each agent an isolated workspace — three desks, three agents, zero risk of two processes writing the same file.
- /batch can spin up 30 parallel workers but burns tokens at the same rate — it is breadth over depth, not free parallelism.
- Claude in Chrome uses your existing authenticated browser session, so there is no re-authentication overhead unlike headless agent browsers.
- --bare strips all CLAUDE.md and skills injection but requires an API key; subscription logins return not logged in errors.
- --add-dir pulls external directories like brand assets or templates into session context without moving any files.
- Custom agents are just markdown files in .claude/agents/ — the filename becomes the agent name, invoked with claude --agent name.
- /btw runs a side query during an active task without polluting the main context window.
- /branch forks the current conversation to explore a risky path; the original session ID stays alive and resumable anytime.
- Naming a remote-control session prevents confusion when monitoring multiple concurrent tasks from mobile.
- Hooks can be configured by tagging the claude-code-guide agent which writes correct settings.json syntax so you never touch JSON manually.
Fifteen features, three categories, one upgrade path.
The highest-leverage Claude Code features are invisible by default — and knowing which category a feature belongs to tells you exactly when to reach for it.
- Hooks are the most underused feature: they inject context deterministically into every session, unlike CLAUDE.md which Claude can deprioritize when the context window fills.
- Session mobility features (teleport, remote control, mobile app) remove the constraint that serious Claude Code work requires being at a desktop — the session follows you.
- /loop and /schedule create genuine autopilot: Claude re-executes a task on your specified interval, with /loop tied to terminal uptime and /schedule running in the cloud independently.
- Worktrees eliminate the file-conflict risk that makes most people hesitant to run parallel agents — each agent gets an isolated workspace with no shared files.
- /batch scales breadth tasks to dozens of parallel workers but at full token cost per worker; it is the right tool for update-all-files tasks, not deep single-task reasoning.
- /branch lets you explore a risky experimental path without contaminating the main context window — the original session ID stays alive for resumption.
- /btw allows mid-task side queries without interrupting or flooding the active session, solving the problem of needing quick context while something longer is running.
- --add-dir is the cleanest way to bring shared assets like brand guidelines or templates into any project session without restructuring your file system.
- Custom agents are just named markdown files — the filename becomes the CLI invocation, and the file defines personality, tools, and instructions injected at session start.
Terms worth knowing.
- Teleport
- A Claude Code CLI command that lists and resumes existing unsaved sessions from any machine, enabling seamless handoff between mobile and desktop.
- Remote Control
- A /remote-control command that exposes a running desktop Claude Code session to the mobile app, letting you monitor and interact with a heavy task from your phone.
- Hooks
- Event-driven rules stored in .claude/settings.json that fire automatically at session start, before/after tool use, or after edits — guaranteed to execute regardless of Claude's context decisions.
- Cowork Dispatch
- A Claude Code desktop feature that grants full computer-use access to Claude, allowing it to physically click, open apps, and interact with the entire OS rather than just the terminal.
- Git Worktrees
- Isolated working directories within a single git repo, used here to give each Claude agent its own file sandbox so multiple agents can run in parallel without overwriting each other.
- /batch
- A Claude Code slash command that spins up multiple parallel worker agents to execute a breadth task like updating pricing across 20 proposal files simultaneously.
- --bare flag
- A CLI flag that strips all CLAUDE.md, skills, and injected context from a Claude Code session — currently requires API key authentication to function.
- --add-dir
- A CLI flag that adds one or more external directories to the session context without requiring those files to be inside the current project folder.
- /btw
- A slash command that fires a side query to Claude during an active running task, returning an answer without interrupting or merging into the main session context.
- /branch
- A slash command that forks the current Claude Code conversation into a new branch, letting you explore an alternate path while preserving the original session ID for resumption.
Things they pointed at.
Lines you could clip.
“This is deterministic. This will get shoved into that context window whether Claude Code wants it or not.”
“Would you trust a chef who can't taste their own food?”
“If you are rich in tokens, feel free to go for this. But if you are erring on the side of caution, you're being frugal, I would avoid this — for now.”
Word for word.
Don't just watch it. Burn it in.
See every word as it's spoken — crank it to 2× and still catch all of it. The same dual-channel trick behind Amazon's Kindle + Audible.
The bait, then the rug-pull.
When the person who built the tool tells you you are leaving 80 percent of it on the table, you pay attention. Boris Cherny's 15-feature tips thread hit two million views in 24 hours — and Mark Kashef spent the next day turning every one into a hands-on demo.
Named ideas worth stealing.
Autopilot Mode
Combining /loop (terminal-bound) with /schedule (cloud-executed) to make Claude self-executing on a time interval.
The Three-Desk Metaphor
Worktrees as separate physical desks — each agent has its own workspace, files, and task lane. No agent touches another's desk.
Deterministic Context Injection
Hooks vs CLAUDE.md: hooks fire whether Claude wants them or not; CLAUDE.md is Claude's suggestion box. For non-negotiable constraints — use hooks.
How they asked for the click.
“Check out the first link in the description below — maybe I'll see you in my early adopters community.”
Soft sell at the very end after delivering full value.






























































