Modern AI doesn't just read — it sees. You can hand it screenshots, photos, diagrams, PDFs, spreadsheets, and handwritten notes. The model processes them as first-class inputs alongside your text.
But most people use multimodal like a parlor trick: 'What's in this image?' That wastes the capability. The real power is combining visual input with structured text prompts — giving the AI both the thing to analyze AND specific instructions for how to analyze it.
The rule: an image replaces a thousand words of description, but you still need the prompt to tell the model what to DO with what it sees.
You are a senior UX designer who has shipped 20+ B2B SaaS products.
I'm attaching a screenshot of our dashboard's main view. Review it against these specific criteria:
For each issue:
Context: this is a project management dashboard for teams of 5–20. Our users are non-technical project managers. The primary action should be 'Create New Task.'
[attaches screenshot]
I'm attaching a photo of a restaurant receipt. Extract the data into this exact JSON schema:
{
"restaurant": "string",
"date": "YYYY-MM-DD",
"items": [
{
"name": "string (as printed, preserve original spelling)",
"quantity": "number",
"unit_price": "number (2 decimal places)",
"total": "number (2 decimal places)"
}
],
"subtotal": "number",
"tax": "number",
"tax_rate_pct": "number or null if not shown",
"tip": "number or null if not shown",
"total": "number",
"payment_method": "string or null if not shown",
"confidence_notes": ["string — list anything unclear, smudged, or partially visible"]
}
Rules:
[attaches receipt photo]
Claude processes images inline with text. Place analytical instructions BEFORE the image when possible — Claude attends to instructions more reliably when they precede the visual input.