The Idea

When AI writes a long response, it generates one word at a time from start to finish. But many responses have sections that don't depend on each other — the paragraph about physical health doesn't need to wait for the paragraph about mental health to be written first.

Skeleton of Thought exploits this. First, ask AI to create a quick outline (the "skeleton"). Then expand each outline point into a full section simultaneously. Because the sections are independent, they can all be written at the same time — cutting wait time roughly in half.

Building Blocks

This composition combines:

One Thing at a Time Structure the Output

It uses structured output to generate an outline, then applies "one thing at a time" to each section independently — with the twist that all sections expand in parallel.

See It in Action

Question: "What are the benefits of regular exercise?"

Stage 1: Skeleton (fast)
1
Generate a quick outline
AI produces the skeleton
1. Physical health improvements
2. Mental health benefits
3. Social and lifestyle advantages
4. Long-term disease prevention
↓ expand all points simultaneously
Stage 2: Parallel Expansion
2
Expand each point at the same time
Point 1 expanding...
"Regular exercise strengthens the cardiovascular system, builds muscle, improves flexibility and balance..."
Point 2 expanding...
"Exercise releases endorphins, reduces cortisol, improves sleep quality, and helps manage anxiety and depression..."
Point 3 expanding...
"Group activities and team sports foster social connections. Regular routines build discipline that carries over..."
Point 4 expanding...
"Consistent exercise significantly reduces the risk of heart disease, type 2 diabetes, certain cancers, and osteoporosis..."
↓ assemble
Stage 3: Combine
3
Assemble the full response
Final result
A complete, well-structured response — produced in roughly half the time it would normally take, because all four sections were written simultaneously.

Why This Works

Standard AI generation is like writing a book from first word to last — every word waits for the one before it. But most long responses have natural sections that are independent of each other. Writing them in parallel is like having four authors each write one chapter simultaneously.

The outline stage is key: it ensures all sections are planned coherently before any are expanded. This prevents overlap and gaps. And because each expansion focuses on just one point, the individual sections tend to be more focused and detailed than they would be in a single long generation.

The Composition

Ask AI for a quick outline first. Then expand every point into a full section simultaneously. Assemble the parts. You get structured, detailed content in roughly half the time.

How to Apply This

When to Use This

When to Skip This

How It Relates

This is the parallel-execution cousin of Chain It. Where Chain It runs steps sequentially (output of step 1 feeds into step 2), Skeleton of Thought runs the expansion steps simultaneously because they're independent. It also complements Structure the Output — that technique asks for organized formatting, while Skeleton of Thought uses structure as a strategy for faster, better generation.