# Patient Visual Consent

> Generate patient informed consent documents with embedded simulation images, bilingual disclaimers, and procedure parameters for aesthetic medicine. Use for 知情同意书, consent form, patient documentation, or legal/visual consent packs with cosmetic simulation attachments.

- Skill: `freakyglorian-create/patient-visual-consent` (Agent Skill)
- Install (CLI): `npx skillmds@latest add freakyglorian-create/patient-visual-consent`
- Raw SKILL.md: https://api.skillmd.com/api/skills/freakyglorian-create/patient-visual-consent/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: freakyglorian-create (https://skillmd.com/u/freakyglorian-create)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/freakyglorian-create/patient-visual-consent

---


# Patient Visual Consent

Combine **legal consent structure** + **simulation visuals** + **parameter transparency** into one consultation deliverable.

## Document Sections

1. **Patient & procedure info** (name, date, physician, procedures discussed)
2. **Simulation attachment** (before | after side-by-side, watermarked)
3. **Parameter disclosure** (JSON or table: what was adjusted digitally)
4. **Limitations** (bilingual disclaimer block)
5. **Signature blocks** (patient, physician, witness)

## Disclaimer Block (mandatory)

```
【效果模拟声明 · Simulation Disclaimer】

1. 附图为计算机生成的效果模拟，非术后实际照片。
   Attached images are computer-generated simulations, not actual post-operative photos.

2. 实际手术效果受个体解剖、愈合、手术方式等因素影响，可能与模拟存在差异。
   Actual results vary due to anatomy, healing, and surgical technique.

3. 模拟不构成效果保证或合同承诺。
   Simulation does not guarantee outcomes or constitute a binding commitment.

4. 最终决策应基于医师面诊评估。
   Final decisions require in-person physician evaluation.
```

## Output Formats

- PDF (primary, for signing)
- HTML (preview in browser)
- Markdown (draft for physician edit)

## Workflow

```
- [ ] Collect: patient info, before photo, simulation output, procedure list
- [ ] Embed images with watermark
- [ ] Attach parameter table from sim JSON
- [ ] Insert disclaimer (do not shorten)
- [ ] Export PDF via weasyprint or reportlab
```

## Template Variables

```yaml
patient_name: ""
physician_name: ""
date: "2026-08-19"
procedures:
  - name: "隆鼻术（模拟讨论）"
    simulated: true
    params: {bridge_lift: 10, tip_rotation: 5}
images:
  before: before.jpg
  simulation: simulated.jpg
disclaimer_version: "1.0"
```

## Script

```bash
python scripts/generate_consent.py consent.yaml --output consent.pdf
```

## Legal Note

Template is a **starting point** — physician/legal counsel must review for jurisdiction (CN medical advertising law, 医美广告合规). Never auto-remove disclaimer sections.

