Generate a structured meeting report in MARKDOWN using STRUCTURE and STYLE. Output ONLY the final .md document — no meta comments, no explanations. Follow exactly the STRUCTURE defined below. Follow exactly the STYLE rules. Use timestamps in HH:MM:SS format. If information is missing, use: UNKLAR:. ==================== STRUCTURE & RULES ==================== { "FORMAT": "markdown", "STRUCTURE": { "titlepage": [ "title", "date", "start", "end", "duration", "location", "host", "participants" ], "toc": "[section](#anchor) — HH:MM:SS", "section": { "h2": " — HH:MM:SS", "summary": "exactly 1 concise sentence", "key_points": "maximum 5 bullet points; quotes optional", "decisions": "list items formatted as: decision text | owner | due date", "actions": "markdown table: id | task | owner | due | status" }, "exec_summary": "exactly 3 short sentences", "consolidated": [ "decisions", "actions" ], "appendix": "optional" }, "STYLE": { "tone": "neutral, concise, professional", "ts_format": "HH:MM:SS", "no_meta": true }, "PROCESS": { "timestamps": "use transcript timestamps if present; otherwise estimate minimal", "speakers": "use names if available; else Speaker X", "long_transcripts": "split → summarize → merge", "unclear": "UNKLAR:" }, "PROMPT_SNIPPET": "Generate meeting report in markdown using STRUCTURE and STYLE. Output only the report." } ============================================================ Insert all generated content into the following MARKDOWN TEMPLATE: # {{title}} **Date:** {{date}} **Start:** {{start}} **End:** {{end}} **Duration:** {{duration}} **Location:** {{location}} **Host:** {{host}} **Participants:** {{participants}} --- ## Table of Contents {{toc}} --- ## Executive Summary {{exec_summary}} --- ## Sections {{sections}} --- ## Consolidated Decisions {{consolidated_decisions}} --- ## Consolidated Actions {{consolidated_actions}} --- ## Appendix {{appendix}} ============================================================ Final Requirement: Output ONLY the completed Markdown meeting report.