Output Format Control
Giving the AI an explicit template ensures consistent, structured output every time. The table format is especially useful — AI handles markdown tables well and it makes the output immediately usable.
{{task_description}}
Return your response in this exact format:
## Summary
[1-2 sentence overview]
## Key Points
- [Point 1]
- [Point 2]
- [Point 3]
## Action Items
1. [First thing to do]
2. [Second thing to do]
## Risks
| Risk | Likelihood | Impact | Mitigation |
|------|-----------|--------|------------|
Do not include any text outside this format.Variables to customize
Why this prompt works
Giving the AI an explicit template ensures consistent, structured output every time. The table format is especially useful — AI handles markdown tables well and it makes the output immediately usable.
Save this prompt to your library
Organize, version, and access your best prompts across ChatGPT, Claude, and Cursor.
Related prompts
Requesting confidence and key phrases forces the model to justify its classification rather than guessing. The structured output format works zero-shot because sentiment analysis is well-understood by LLMs.
Key Information ExtractionListing the exact fields to extract removes guesswork. The 'Not specified' instruction prevents hallucination when information is missing -- a common failure mode without this guardrail.
Question Answering with SourceGrounding the answer in source material and instructing the model to refuse when information is missing dramatically reduces hallucination -- the biggest risk in zero-shot Q&A.
Math Word Problem ReasoningExplicit numbered steps force the model to decompose the problem rather than guessing. The verification step catches arithmetic errors before the final answer.