Build lectures with consistent format for the NextGenMed website. Use when creating new lecture files, converting HTML content to lecture format, or ensuring lectures follow the standardized structure with meta, video embed, sections, mechanisms table, implementation pathway, and references.
This skill creates lecture files with a strict, consistent format for the NextGenMed website. All lectures must follow the exact same structure, styling, and organization to maintain uniformity across the educational platform.
When building a lecture, you must provide:
Every lecture MUST follow this exact sequence:
All lecture data is structured as JSON following this exact format:
{
"meta": {
"track": "",
"subtrack": "",
"title": "",
"duration": "",
"primary_tags": ["", "", ""],
"abstract": ""
},
"video": {
"video_url": "",
"caption": "Watch the full lecture here."
},
"sections": [
{
"id": "fundamental-shift",
"heading": "The Fundamental Shift",
"type": "text",
"paragraphs": ["...", "..."]
},
{
"id": "mechanism",
"heading": "How [Core Concept] Works",
"type": "text",
"paragraphs": ["...", "..."]
},
{
"id": "evidence",
"heading": "Clinical Performance Evidence",
"type": "text",
"paragraphs": ["...", "..."]
},
{
"id": "applications",
"heading": "[Domain] Applications",
"type": "text",
"paragraphs": ["...", "..."]
},
{
"id": "mechanisms-table",
"heading": "Key Mechanisms and Clinical Takeaways",
"type": "table",
"columns": ["Core Mechanism", "Clinical Application", "Implementation Consideration"],
"rows": [
["...", "...", "..."]
]
},
{
"id": "implementation",
"heading": "Implementation Pathway",
"type": "text",
"paragraphs": ["**Start with...** ...", "**Build...** ..."]
},
{
"id": "path-forward",
"heading": "The Path Forward",
"type": "text",
"paragraphs": ["...", "..."]
}
],
"references": [
"[1] ...",
"[2] ..."
]
}
The content sections between the video and the mechanisms table should cover:
Always include a structured table with three columns:
Structured with bold subheadings like:
Concluding section that synthesizes key points and provides direction.
When invoked, provide:
Title: "Deep Learning in Radiology"
Descript iframe: <iframe src="https://..."></iframe>
Output: /lectures/radiology/deep-learning.html
Content: /input/deep-learning-content.html
The skill will: