用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/u9401066/anesthesia-exam --skill image-question-generator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
MCP tools for PDF ingestion → extract figures, tables, sections → build knowledge graph. Transforms PDF into queryable assets (images, tables, text) with cross-document RAG. Triggers: PDF, ingest, extract, 圖片, 表格, figure, table, manifest, knowledge graph, 知識圖譜, RAG, 文獻分析.
難度分類器,基於 Ragas 標準評估題目難度。Triggers: 難度分類, 難度評估, difficulty, 評估難度, 調整難度.
重複題目檢查器,檢測語意重複和過度相似的題目。Triggers: 查重, 重複檢查, duplicate, 相似題, 題目查重, 檢查重複.
基于 SOC 职业分类
正在显示 SKILL.md
| name | image-question-generator |
| description | 圖片題生成器,從教材擷取圖片並生成相關題目。Triggers: 圖片題, 圖表題, 影像題, image question, 看圖辨識, 圖形題, 心電圖題, X光題. |
從教材中擷取圖片(圖表、心電圖、X光、解剖圖等),並生成相關的視覺識別題目。
優先順序:
# 從索引中搜尋相關圖片
images = image_search(
query=topic,
scope=scope,
types=["chart", "ecg", "xray", "anatomy", "diagram"]
)
# 使用 MCP tool 擷取圖片
image_data = image_extract(
document=doc_id,
page=page_number,
figure_id=figure_id
)
# 包含:
# - image_base64: 圖片資料
# - caption: 圖說
# - context: 周圍文字
# 使用視覺模型分析圖片
analysis = analyze_image(image_data, context={
"caption": caption,
"surrounding_text": context,
"expected_topic": topic
})
# 輸出:
# - key_features: 關鍵特徵
# - labels: 標籤
# - clinical_significance: 臨床意義
prompt = f"""
根據以下圖片生成題目:
【圖片資訊】
- 類型: {image_type}
- 圖說: {caption}
- 關鍵特徵: {key_features}
【題目要求】
- 難度: {difficulty}
- 題型: {question_type}
【輸出】
生成辨識/解讀該圖片的題目
"""
{
"type": "image_mcq",
"image_type": "ecg",
"question": "請判讀此心電圖,最可能的診斷是?",
"image": {
"source": "Miller's Anesthesia",
"page": 1256,
"figure_id": "Fig 45-3",
"caption": "Ventricular Tachycardia"
},
"options": [
"A. 心室頻脈 (VT)",
"B. 心房顫動 (AF)",
"C. 心室顫動 (VF)",
"D. 竇性心搏過速"
],
"answer": "A",
"key_features": [
"寬 QRS 波 (>120ms)",
"規則的 RR 間距",
"心率約 180 bpm"
{
"type": "image_identification",
"image_type": "anatomy",
"question": "請標示圖中 A、B、C 所指的結構名稱。",
"image": {
"source": "Miller's Anesthesia",
"page": 234,
"figure_id": "Fig 12-5",
"caption": "Brachial Plexus Anatomy"
},
"marked_points": ["A", "B", "C"],
"answer": {
"A": "上幹 (Upper Trunk)",
"B": "中幹 (Middle Trunk)",
"C": "下幹 (Lower Trunk)"
}
{
"type": "image_analysis",
"image_type": "chart",
"question": "根據此藥物濃度-時間曲線,下列敘述何者正確?",
"image": {
"source": "Miller's Anesthesia",
"page": 567,
"figure_id": "Fig 24-8",
"caption": "Context-sensitive Half-time Comparison"
},
"options": [
"A. Propofol 的 CSHT 隨輸注時間增加顯著上升",
"B. Remifentanil 的 CSHT 與輸注時間無關",
"C. Fentanyl 適合長時間輸注",
"D. 所有藥物的 CSHT 都隨時間增加"
],
"answer": "B"
}
📷 圖片題生成完成
題目 #1 [心電圖判讀] [Medium] ━━━━━━━━━━━━━━
┌─────────────────────────────────────────┐
│ │
│ [ECG 圖片顯示區域] │
│ │
│ (Fig 45-3: Ventricular Tachycardia) │
│ │
└─────────────────────────────────────────┘
請判讀此心電圖,最可能的診斷是?
A. 心室頻脈 (Ventricular Tachycardia) ✓
B. 心房顫動 (Atrial Fibrillation)
C. 心室顫動 (Ventricular Fibrillation)
D. 竇性心搏過速 (Sinus Tachycardia)
🔑 關鍵特徵:
├── 寬 QRS 波 (>120ms)
├── 規則的 RR 間距
└── 心率約 180 bpm
📚 來源: Miller's Anesthesia P.1256
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
| 類型 | 說明 | 題目方向 |
|---|---|---|
| ECG | 心電圖 | 判讀、診斷 |
| X-ray | X光片 | 辨識、定位 |
| CT/MRI | 斷層影像 | 解剖辨識 |
| Anatomy | 解剖圖 | 結構標示 |
| Chart | 圖表曲線 | 數據解讀 |
| Diagram | 流程/機制圖 | 概念理解 |
| Equipment | 設備照片 | 操作/識別 |