Skeleton-of-Thought Prompting
Prompt the model to first sketch a skeleton outline of an answer, then expand each point in parallel.
Also known as: SoT Prompting, Skeleton Prompting, Outline-First Prompting
Category: Techniques
Tags: ai, prompting, llm-techniques, optimization, reasoning
Explanation
Skeleton-of-Thought (SoT) prompting is a two-stage technique designed to speed up and structure long-form AI responses. First, the model produces a concise skeleton - a numbered list of the points the answer will cover. Then each point is expanded independently, often in parallel, and the results are concatenated into the final response.
A simplified flow:
```
Stage 1 (skeleton): List the 5-7 key points needed to answer the question, one short line each.
Stage 2 (expansion): For each point in the skeleton, write a detailed paragraph.
```
Why it matters:
- **Latency**: Stage 2 expansions can run concurrently, dramatically reducing wall-clock time for long answers on systems that support parallel generation.
- **Structure**: Answers become more organized because the outline is committed to first, forcing the model to plan before generating.
- **Consistency**: Each section stays focused on its point, reducing meandering or mid-answer topic drift.
- **Editability**: Humans (or automated filters) can review and edit the skeleton before expansion, cheaply redirecting a long response.
Trade-offs:
- Parallel expansion means each section lacks context from sibling sections, so transitions can feel mechanical and cross-references weak.
- Problems requiring genuinely sequential reasoning (where later steps depend on earlier ones) are a poor fit - chain-of-thought or self-ask are better there.
- Skeleton quality dominates final quality; a shallow outline produces a shallow answer regardless of how rich each expansion is.
Good use cases include structured articles, how-to guides, comparison reports, and any response where points are mostly independent. It pairs well with meta-prompting: the skeleton itself can be generated and then critiqued before expansion.
Related Concepts
← Back to all concepts