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
Thariq
@trq212

Skills have become one of the most used extension points in Claude Code. They’re flexible, easy to make, and simple to distribute.

Apply Image
Drag Post #2
Thariq
@trq212

But this flexibility also makes it hard to know what works best. What type of skills are worth making? What's the secret to writing a good skill? When do you share them with others?

Drag Post #3
Thariq
@trq212

We've been using skills in Claude Code extensively at Anthropic with hundreds of them in active use. These are the lessons we've learned about using skills to accelerate our development.

Drag Post #4
Thariq
@trq212

## What are Skills?

Drag Post #5
Thariq
@trq212

If you’re new to skills, I’d recommend <a target="_blank" href="https://code.claude.com/docs/en/skills" color="blue">reading our docs</a> or watching our newest course on <a target="_blank" href="https://anthropic.skilljar.com/introduction-to-agent-skills" color="blue">new Skilljar on Agent Skills</a>, this post will assume you already have some familiarity with skills.

Drag Post #6
Thariq
@trq212

A common misconception we hear about skills is that they are “just markdown files”, but the most interesting part of skills is that they’re not just text files. They’re folders that can include scripts, assets, data, etc. that the agent can discover, explore and manipulate.

Drag Post #7
Thariq
@trq212

In Claude Code, skills also have a <a target="_blank" href="https://code.claude.com/docs/en/skills#frontmatter-reference" color="blue">wide variety of configuration options</a> including registering dynamic hooks.

Drag Post #8
Thariq
@trq212

We’ve found that some of the most interesting skills in Claude Code use these configuration options and folder structure creatively.

Drag Post #9
Thariq
@trq212

# Types of Skills

Drag Post #10
Thariq
@trq212

After cataloging all of our skills, we noticed they cluster into a few recurring categories. The best skills fit cleanly into one; the more confusing ones straddle several. This isn't a definitive list, but it is a good way to think about if you're missing any inside of your org.

Drag Post #11
Thariq
@trq212

Apply Image
Drag Post #12
Thariq
@trq212

## <b>1. Library & API Reference</b>

Drag Post #13
Thariq
@trq212

Skills that explain how to correctly use a library, CLI, or SDKs. These could be both for internal libraries or common libraries that Claude Code sometimes has trouble with. These skills often included a folder of reference code snippets and a list of gotchas for Claude to avoid when writing a script.

Drag Post #14
Thariq
@trq212

<b>Examples:</b>

Drag Post #15
Thariq
@trq212

• billing-lib — your internal billing library: edge cases, footguns, etc.

Drag Post #16
Thariq
@trq212

• internal-platform-cli — every subcommand of your internal CLI wrapper with examples on when to use them

Drag Post #17
Thariq
@trq212

• frontend-design — make Claude better at your design system

Drag Post #18
Thariq
@trq212

## <b>2. Product Verification</b>

Drag Post #19
Thariq
@trq212

Skills that describe how to test or verify that your code is working. These are often paired with an external tool like playwright, tmux, etc. for doing the verification.

Drag Post #20
Thariq
@trq212

Verification skills are extremely useful for ensuring Claude's output is correct. It can be worth having an engineer spend a week just making your verification skills excellent.