Hi,👋 we have updated the app and fixed multiple bugs. We are lacking funds, request to free user not to use Adblock. Ads are non intrusive. 😊

Carousel Studio

Repurpose X Threads into LinkedIn & Instagram Carousels

Thread Truncated (Cap Enforced)

Only the first 20 tweets are unrolled into slides to ensure reliable PDF exporting and high server performance.

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
darkzodchi
@zodchiii

Anthropic ran the numbers: unguided Claude Code succeeds just 33% of the time.

Apply Image
Drag Post #2
darkzodchi
@zodchiii

The engineers who beat that odds don't write better prompts. They build structure around the agent before they type a single task.

Drag Post #3
darkzodchi
@zodchiii

Below is that exact structure: the 200-line CLAUDE.md, the slash commands, the writer/reviewer pattern, and the context rule seniors swear by.

Drag Post #4
darkzodchi
@zodchiii

<b>Here's the full setup you need 👇</b>

Drag Post #5
darkzodchi
@zodchiii

Before we dive in, I share daily notes on AI &amp; vibe coding in my Telegram channel: <b><a target="_blank" href="https://t.me/zodchixquant" color="blue">https://t.me/zodchixquant</a></b>🧠

Drag Post #6
darkzodchi
@zodchiii

Apply Image
Drag Post #7
darkzodchi
@zodchiii

## The mindset: structure beats prompting

Drag Post #8
darkzodchi
@zodchiii

The biggest shift is realizing the prompt isn't where the leverage is. Anthropic's internal teams found the gap between high-output engineers and everyone else isn't prompt quality, it's the structure built around Claude before execution starts.

Drag Post #9
darkzodchi
@zodchiii

That structure is a small set of files that control Claude's memory, behavior, and limits. Most people use only CLAUDE.md and miss the rest of the leverage. A senior setup uses all of it, and keeps each piece lean.

Drag Post #10
darkzodchi
@zodchiii

Four pieces below: the CLAUDE.md, the commands, the review pattern, and context control.

Drag Post #11
darkzodchi
@zodchiii

Apply Image
Drag Post #12
darkzodchi
@zodchiii

## 1. A lean CLAUDE.md, capped at 200 lines

Drag Post #13
darkzodchi
@zodchiii

CLAUDE.md loads into the system prompt and stays there the entire session, so every line costs context. The senior rule is to keep it under 200 lines and push detail into rule files that load only when relevant.

Drag Post #14
darkzodchi
@zodchiii

Your CLAUDE.md should hold the essentials:

Drag Post #15
darkzodchi
@zodchiii

<pre><code lang="markdown">## Project One paragraph: what this is, the stack, the entry points. ## Conventions - Use the simplest approach that works. No premature abstraction. - Match existing patterns. Check a neighbor file before inventing. ## Commands - Test: `npm test` - Lint: `npm run lint` ## Rules - Never push to main directly. Open a PR. - Write a commit after each working step, so we can revert cleanly. - Run the tests yourself before saying a task is done.</code></pre>

Drag Post #16
darkzodchi
@zodchiii

The "use the simplest approach" line matters more than it looks. Claude over-engineers by default, adding abstraction layers and defensive code nobody asked for. One line in CLAUDE.md curbs it.

Drag Post #17
darkzodchi
@zodchiii

For anything longer, like detailed style guides, use .claude/rules/*.md with path globs so they load only when Claude touches matching files.

Drag Post #18
darkzodchi
@zodchiii

That keeps the always-on context small.

Drag Post #19
darkzodchi
@zodchiii

## 2. Slash commands for anything you do twice

Drag Post #20
darkzodchi
@zodchiii

At Anthropic, Security Engineering wrote 50% of all custom slash commands in the entire monorepo.