Prompt chaining is a fixed sequence with useful checkpoints
A single prompt asks a model to understand a task, plan it, perform it, check it, and present the result in one pass. That can be perfectly adequate for simple work. It becomes fragile when the request contains several different kinds of reasoning. Prompt chaining separates those jobs into a sequence of model calls, usually coordinated by application code.
Anthropic describes prompt chaining as decomposing a task into a sequence of steps, with each model call processing the previous output. The important detail is the gate: the application can run a programmatic check between calls to see whether the work is still on track. A chain is therefore more than putting several prompts in a row. It is a workflow with contracts and decision points.
The sequence is normally known in advance. A marketing workflow might extract a brief, propose three angles, check them against brand rules, write the selected draft, and produce channel variants. A support workflow might classify a request, retrieve policy, draft a response, check for unsupported claims, and route a sensitive case to a person. The model performs steps; the application owns the route.
This makes chaining different from an autonomous agent. An agent may choose which tool to call and when to stop based on the current state. A chain usually has a predetermined shape, even if some steps use a model. That predictability is useful when the process needs repeatable approvals, clear testing, or a known audit trail.