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
Codez
@0xCodez

You’re paying <b>$20–$200</b>/month for Claude and using it like a paid version of ChatGPT. <b>9 </b>out of 10 users have never set up automation that runs without them clicking buttons.

Apply Image
Drag Post #2
Codez
@0xCodez

No <b>/loop</b>, no <b>scheduled tasks</b>, no <b>Routines</b>, no <b>triggers</b>. The tool that’s supposed to work while you sleep is <i>still waiting for you to type</i>. This is the 14-step roadmap to the full automation stack - and the hours back in your week.

Drag Post #3
Codez
@0xCodez

> Follow my Substack to get fresh AI alpha: <a target="_blank" href="https://movez.substack.com/" color="blue">movez.substack.com</a>

Drag Post #4
Codez
@0xCodez

Claude Code has been quietly shipping an entire automation stack over the last three months. /loop launched.

Drag Post #5
Codez
@0xCodez

Auto Mode landed March 24. Cloud Routines opened in research preview April 14. By May 2026, the picture is complete: <b>three layers of automation that go from your terminal to Anthropic’s cloud</b>, each one earning its place by removing a different reason for you to babysit.

Drag Post #6
Codez
@0xCodez

This is the 14-step roadmap to all three layers - every detail verified against the official docs at code.claude.com/docs as of June 2026. The arc is simple: get the manual loop right, make it persist across restarts, push it to the cloud where your laptop doesn’t matter.

Drag Post #7
Codez
@0xCodez

Apply Image
Drag Post #8
Codez
@0xCodez

<b>14 steps. 3 tiers. One Claude that works while you sleep.</b>

Drag Post #9
Codez
@0xCodez

---

Drag Post #10
Codez
@0xCodez

## 01. The /loop command. <i>Explicit and natural language, both work.</i>

Drag Post #11
Codez
@0xCodez

The fastest way to make Claude Code do anything on a schedule. Inside any session, run /loop &lt;interval&gt; &lt;prompt&gt;.

Drag Post #12
Codez
@0xCodez

Under the hood it calls three native tools: CronCreate, CronList, CronDelete. The intervals use a number plus unit: m for minutes, h for hours, d for days. The minimum is 1 minute - 30s rounds up.

Drag Post #13
Codez
@0xCodez

Apply Image
Drag Post #14
Codez
@0xCodez

<pre><code lang="python">&gt; /loop 1m say hello ▲ Claude CronCreate(*/1 * * * * : say hello) ✓ Scheduled c21d95a0 (Every minute) - Job: say hello - Cadence: Every 1 minute (*/1 * * * *) - Job ID: c21d95a0 - Duration: Recurring tasks auto-expire after 7 days - Cancel anytime: CronDelete c21d95a0</code></pre>

Drag Post #15
Codez
@0xCodez

You don’t actually need to type /loop at all. Claude understands natural language schedules just as well:

Drag Post #16
Codez
@0xCodez

• every 10 minutes, check the deployment status

Drag Post #17
Codez
@0xCodez

• every weekday at 7am, summarize the overnight commits

Drag Post #18
Codez
@0xCodez

• at 6:30pm today, post a status update to Slack

Drag Post #19
Codez
@0xCodez

Times use the local machine’s time zone, not UTC. Any slash command available in Claude Code can be placed inside a /loop - including /run, /review, even another /loop if you’re feeling adventurous.

Drag Post #20
Codez
@0xCodez

---