Carousel Studio

Repurpose X Threads into LinkedIn & Instagram Carousels

Canvas & Ratio

Choose your destination platform format


Layout Template

Choose a content structure for your slides


Preset Themes


Typography & Sizing

Title Font Size36px
Body Font Size18px
Header & Footer Size12px

Brand Kit Customization

AGENCY

Configure brand assets for headers & footers

MULTI-PROFILES (AGENCY)
AGENCY
SAVE PRESETS (AGENCY)

Outro Slide CTA

Customize your closing call-to-action slide

#1
#2
#3

Background Pattern

Source Content

Build Your Carousel

Drag and drop any post card below onto a slide, or use the quick buttons to insert content/images instantly!

Drag Post #1
Boris Cherny
@bcherny

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.

Drag Post #2
Boris Cherny
@bcherny

1/ Did you know Claude Code has a mobile app? Personally, I write a lot of my code from the iOS app. It's a convenient way to make changes without opening a laptop. Download the Claude app for iOS/Android > Code tab on the left.

Apply Image
Drag Post #3
Boris Cherny
@bcherny

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 for all sessions" set in my /config. <a target="_blank" href="https://code.claude.com/docs/en/remote-control" color="blue">code.claude.com/docs/en/remote…</a>

Drag Post #4
Boris Cherny
@bcherny

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 shepherd my PRs to production - /loop 30m /slack-feedback, to automatically put up PRs for Slack feedback every 30 mins - /loop /post-merge-sweeper to put up PRs to address code review comments I missed - /loop 1h /pr-pruner to close out stale and no longer necessary PRs - lots more!.. Experiment with turning workflows into skills + loops. It's powerful. <a target="_blank" href="https://code.claude.com/docs/en/scheduled-tasks" color="blue">code.claude.com/docs/en/schedu…</a>

Drag Post #5
Boris Cherny
@bcherny

4/ Use hooks to deterministically run logic as part of the agent lifecycle For example, use hooks to: - Dynamically load in context each time you start Claude (SessionStart) - Log every bash command the model runs (PreToolUse) - Route permission prompts to WhatsApp for you to approve/deny (PermissionRequest) - Poke Claude to keep going whenever it stops (Stop) See <a target="_blank" href="https://code.claude.com/docs/en/hooks" color="blue">code.claude.com/docs/en/hooks</a>

Drag Post #6
Boris Cherny
@bcherny

5/ Cowork Dispatch I use Dispatch every day to catch up on Slack and emails, manage files, and do things on my laptop when I'm not at a computer. When I'm not coding, I'm dispatching. Dispatch is a secure remote control for the Claude Desktop app. It can use your MCPs, browser, and computer, with your permission. <a target="_blank" href="http://claude.com/product/cowork#dispatch" color="blue">claude.com/product/cowork…</a>

Drag Post #7
Boris Cherny
@bcherny

6/ Use the Chrome extension for frontend work The most important tip for using Claude Code is: give Claude a way to verify its output. Once you do that, Claude will iterate until the result is great. Think of it like any other engineer: if you ask someone to build a website but they aren't allowed to use a browser, will the result look good? Probably not. But if you give them a browser, they will write code and iterate until it looks good. Personally, I use the Chrome extension every time I work on web code. It tends to work more reliably than other similar MCPs. Download the extension for Chrome/Edge here: <a target="_blank" href="https://code.claude.com/docs/en/chrome" color="blue">code.claude.com/docs/en/chrome</a>

Drag Post #8
Boris Cherny
@bcherny

7/ Use the Claude Desktop app to have Claude automatically start and test web servers Along the same vein, the Desktop app bundles in the ability for Claude to automatically run your web server and even test it in a built-in browser. You can set up something similar in CLI or VSCode using the Chrome extension, or just use the Desktop app. <a target="_blank" href="https://code.claude.com/docs/en/desktop#preview-your-app" color="blue">code.claude.com/docs/en/deskto…</a>

Drag Post #9
Boris Cherny
@bcherny

8/ Fork your session People often ask how to fork an existing session. Two ways: 1. Run /branch from your session 2. From the CLI, run claude --resume &lt;session-id&gt; --fork-session

Apply Image
Drag Post #10
Boris Cherny
@bcherny

9/ Use /btw for side queries I use this all the time to answer quick questions while the agent works

Apply Image
Drag Post #11
Boris Cherny
@bcherny

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 worktree, or hit the "worktree" checkbox in the Claude Desktop app. For non-git VCS users, use the WorktreeCreate hook to add your own logic for worktree creation. Learn more: <a target="_blank" href="https://x.com/bcherny/status/2025007393290272904" color="blue">x.com/bcherny/status…</a>

Drag Post #12
Boris Cherny
@bcherny

11/ Use /batch to fan out massive changesets /batch interviews you, then has Claude fan out the work to as many worktree agents as it takes (dozens, hundreds, even thousands) to get it done. Use it for large code migrations and others kinds of parallelizable work. <a target="_blank" href="https://x.com/bcherny/status/2027534984534544489" color="blue">x.com/bcherny/status…</a>

Drag Post #13
Boris Cherny
@bcherny

12/ Use --bare to speed up SDK startup by up to 10x By default, when you run claude -p (or the TypeScript or Python SDKs) we search for local CLAUDE.md's, settings, and MCPs. But for non-interactive usage, most of the time you want to explicitly specify what to load via --system-prompt, --mcp-config, --settings, etc. This was a design oversight when we first built the SDK, and in a future version, we will flip the default to --bare. For now, opt in with the flag.

Apply Image
Drag Post #14
Boris Cherny
@bcherny

13/ Use --add-dir to give Claude access to more folders When working across multiple repositories, I usually start Claude in one repo and use --add-dir (or /add-dir) to let Claude see the other repo. This not only tells Claude about the repo, but also gives it permissions to work in the repo. Or, add "additionalDirectories" to your team's settings.json to always load in additional folders when starting Claude Code. <a target="_blank" href="https://code.claude.com/docs/en/cli-reference" color="blue">code.claude.com/docs/en/cli-re…</a>

Drag Post #15
Boris Cherny
@bcherny

14/ Use --agent to give Claude Code a custom system prompt &amp; tools Custom agents are a powerful primitive that often gets overlooked. To use it, just define a new agent in .claude/agents, then run claude --agent=&lt;your agent's name&gt; <a target="_blank" href="https://code.claude.com/docs/en/sub-agents" color="blue">code.claude.com/docs/en/sub-ag…</a>

Apply Image
Drag Post #16
Boris Cherny
@bcherny

15/ Use /voice to enable voice input Fun fact: I do most of my coding by speaking to Claude, rather than typing. To do the same, run /voice in CLI then hold the space bar, press the voice button on Desktop, or enable dictation in your iOS settings.

Drag Post #17
Boris Cherny
@bcherny

Hope this was useful! I wanted to keep going but had to stop myself. Will post more soon. What are your favorite underrated Claude Code features?