Prompts

Reusable AI prompts for review and QA tasks. Copy and paste into Claude, ChatGPT, Cursor, or any AI assistant.

Copy Review

Use when reviewing any customer-facing copy — UI text, marketing pages, emails, notifications, or in-app messaging. Run before finalizing translations or publishing.

What it checks

CheckWhy it matters
Healing promisesGerman health regulations prohibit unsubstantiated medical claims. We must not promise cures, guaranteed outcomes, or specific health improvements.
Typos & grammarObvious errors erode trust in a health product.
Du vs Sie toneWe use "Du" to stay warm and approachable. "Sie" feels corporate and distant — not who we are.

The prompt

Copy the block below and paste it into your AI assistant. Replace {{COPY}} with the text you want reviewed.

You are a copy reviewer for Circle Health, a health-tech startup based in Berlin.

Review the following copy and check for these three issues:

1. **Healing promises**
   Flag any language that promises cures, guaranteed health outcomes, or specific medical results. Examples of problematic phrasing:
   - "heilt", "garantiert", "wird Ihre Beschwerden beseitigen"
   - "proven to cure", "will eliminate your symptoms", "guaranteed results"
   Health companies in Germany must avoid Heilversprechen (healing promises). Suggest softer alternatives like "kann unterstützen", "zielt darauf ab", or "may help support".

2. **Typos and grammar**
   Identify spelling mistakes, grammatical errors, and awkward phrasing in both German and English. Provide corrections.

3. **Du vs Sie tone**
   We address users with "Du" (informal), not "Sie" (formal). Flag any use of "Sie", "Ihnen", "Ihr" (formal) and rewrite using "Du", "dir", "dein". Our voice is warm, friendly, and human — like a knowledgeable friend, not a distant institution.

For each issue found, provide:
- The problematic text (quote it exactly)
- The category (Healing Promise / Typo / Tone)
- A suggested fix

If the copy passes all checks, confirm it's good to go.

---

**Copy to review:**

{{COPY}}

Example

Input:

Unsere Therapie wird Ihre chronischen Schmerzen beseitigen. Vereinbaren Sie heute noch einen Termin.

Expected issues:

IssueCategoryFix
"wird...beseitigen"Healing Promise"kann helfen...zu lindern"
"Ihre"Tone (Sie)"deine"
"Vereinbaren Sie"Tone (Sie)"Vereinbare"

Rewritten:

Unsere Therapie kann helfen, chronische Schmerzen zu lindern. Vereinbare heute noch einen Termin.

Link Check

Use when reviewing documentation, marketing pages, or any content with links. The AI will extract every link and test whether it works.

What it checks

CheckWhy it matters
Broken links404s and timeouts frustrate users and hurt credibility.
RedirectsOutdated links that redirect should be updated to the final destination.
HTTPS usageAll links should use HTTPS for security. HTTP links trigger browser warnings.
Context matchThe link destination should match what the link text promises.

The prompt

Copy the block below and paste it into your AI assistant. Replace {{CONTENT}} with the content containing links to check.

You are a QA engineer checking links for Circle Health.

Extract and test every link in the content below. For each link:

1. **Extract the URL** — Find all URLs including:
   - Markdown links: [text](url)
   - HTML links: <a href="url">
   - Raw URLs: https://...
   - Relative paths: /path/to/page

2. **Test the link** — Fetch each URL and check:
   - Does it return HTTP 200?
   - Does it redirect? If so, to where?
   - Is the destination page relevant to the link text?
   - Is the URL using HTTPS (not HTTP)?

3. **Report issues** — For each link, report:
   - ✅ OK — Link works and destination matches context
   - ⚠️ Redirect — Link redirects (note final destination)
   - ❌ Broken — Link returns 4xx/5xx or times out
   - 🔒 Insecure — Link uses HTTP instead of HTTPS

Format your response as a table:

| Link Text | URL | Status | Notes |
|-----------|-----|--------|-------|

At the end, provide a summary: total links checked, broken count, redirect count, and any recommendations.

---

**Content to check:**

{{CONTENT}}

Example output

Link TextURLStatus
our blogcircle.health/blog✅ OK
book nowcircle.health/booking⚠️ Redirects to /appointments
old FAQcircle.health/faq-2023❌ 404 Not Found