TokenPad

14 prompts

Prompts that survive production

Not a list of clever phrasings. Each of these is written the way it would be written for a system that runs a million times a month — delimited, with the output contract stated and the edge cases decided.

And each one shows the version most people write, and the specific failure it produces. That part is the reason to read the page.

Writing

Analysis

Code

Support

Data

What makes these different

Most prompt libraries are a phrase and a promise. They work in the demo, and they fail in the ways nobody wrote down: the summary that rounds a figure, the extractor that invents an invoice number, the classifier that labels everything because it was never given permission to say “unclear”.

Every prompt here carries four things instead. The prompt itself, production shaped. The reason behind each rule, so you can adapt it rather than only paste it. The naive version and the exact failure it produces. And an honest list of what it still gets wrong.

The pattern underneath all of them

Read three or four and the same structure appears every time, because it is the structure that works: the task stated first, anything you did not write wrapped in delimiters, the output format shown rather than described, and every edge case decided in advance — what to do when the answer is not there, when two options fit, when the input is the wrong kind of thing entirely.

That last part is where most prompts fail. A model given a question its context cannot answer will answer anyway unless told what else to do. Almost every hallucination in a production system traces back to an edge case nobody decided.

Building one that is not here

The prompt generator assembles the same structure from an expert-authored blueprint for tasks these pages do not cover. Run the result through the prompt linter, which finds the unmeasurable words and the missing delimiters, and then the prompt review checklist before it reaches real traffic.

Before shipping any of them at volume, measure what they cost. A 400 token prompt at a million requests a month is a budget line, and the token counter and cost calculator turn that into a number in about a minute.