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
Cortex
@0xCortexl

Anthropic pays their engineers $80,000 a month. Those engineers now merge 8x more code per day than they did a year ago. Not because the model got smarter. Because they stopped prompting Claude and started building systems that prompt it for them.

Apply Image
Drag Post #2
Cortex
@0xCortexl

Brian Cherny, head of Claude Code at Anthropic: "I don't prompt Claude anymore. I have loops running that prompt Claude and figure out what to do. My job is to write loops."

Drag Post #3
Cortex
@0xCortexl

Most developers read that and have no idea what it means in practice. By the end of this article you will - and you'll have everything you need to build your first one this weekend.

Drag Post #4
Cortex
@0xCortexl

<b>What a loop actually is</b>

Drag Post #5
Cortex
@0xCortexl

A prompt is a single instruction. A loop is a goal the AI keeps working toward until it gets there.

Drag Post #6
Cortex
@0xCortexl

The difference is who does the driving. With a prompt you push Claude through every step manually. With a loop you define the goal once and the system runs the full cycle on its own - finding the work, executing it, checking the result and deciding what comes next. All without you in the chair.

Drag Post #7
Cortex
@0xCortexl

<pre><code lang="">Prompt | you type, Claude answers, you type again Loop | system finds work, Claude executes, | system checks result, repeats until done</code></pre>

Drag Post #8
Cortex
@0xCortexl

Every real loop has five stages:

Drag Post #9
Cortex
@0xCortexl

<pre><code lang="">Discover | find what needs doing Plan | decide how to do it Execute | do the work Verify | check against the goal Iterate | not done? feed result back in and go again</code></pre>

Drag Post #10
Cortex
@0xCortexl

Three of these do all the real work.

Drag Post #11
Cortex
@0xCortexl

<b>Verify is the heart.</b> Without a real check on the result you don't have a loop - you have the agent agreeing with itself on repeat. The check has to be objective. A test that passes or fails. A build that compiles or doesn't. A linter that returns zero or non-zero. Not a second agent asked to "review." Two optimists agreeing is not verification.

Drag Post #12
Cortex
@0xCortexl

<b>State is what makes the loop learn.</b> Each pass the AI has to remember what it already tried or it repeats the same mistake forever. A real loop keeps a record outside the conversation - what is done, what failed, what is next. The agent forgets between sessions. The file doesn't.

Drag Post #13
Cortex
@0xCortexl

<b>A stop condition is what keeps it sane.</b> A loop with no exit runs until it succeeds, breaks or drains your budget. Every serious loop has two ways to stop - success, and a hard limit. Without this you've built a machine that bills you in silence.

Drag Post #14
Cortex
@0xCortexl

<b>The 4-condition test before you build anything</b>

Drag Post #15
Cortex
@0xCortexl

A loop earns its cost only when all four of these are true. Miss one and keep it as a manual prompt.

Drag Post #16
Cortex
@0xCortexl

<pre><code lang="">Condition 1 | the task repeats at least weekly | less than weekly - setup cost never pays back Condition 2 | something can automatically reject bad output | a test, build, linter, type check | no automated gate - you're back reviewing every diff Condition 3 | the agent can do the work end to end | not hand half of it back to you mid-task Condition 4 | done is objective, not a judgment call | if quality is a matter of taste, a human still wins</code></pre>

Drag Post #17
Cortex
@0xCortexl

Good first loops:

Drag Post #18
Cortex
@0xCortexl

<pre><code lang="">CI failure triage | nightly, classify failures, draft fixes Dependency bumps | weekly, scan updates, open PRs Lint-and-fix passes | on every PR, apply style fixes automatically Issue-to-PR drafts | on codebases with strong test coverage</code></pre>

Drag Post #19
Cortex
@0xCortexl

Bad first loops - keep a human in the chair:

Drag Post #20
Cortex
@0xCortexl

<pre><code lang="">Architecture rewrites | judgment call, loop will drift Auth or payments code | irreversible mistakes too expensive Production deploys | needs human approval gate Vague product work | done is not objective</code></pre>