用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/u9401066/anesthesia-exam --skill mcq-generator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
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, 相似題, 題目查重, 檢查重複.
| name | mcq-generator |
| description | 選擇題生成器,使用 MCP 工具查詢知識庫並生成有真實來源的選擇題。Triggers: 選擇題, 單選題, 多選題, MCQ, multiple choice, 四選一, 五選一, 選項題. |
專門生成選擇題(Multiple Choice Questions),使用 MCP 工具確保:
用戶: "出 5 題選擇題"
Agent: 從記憶中編造題目 + 編造來源
→ 來源是假的!
flowchart TD
A[用戶: 出題] --> B[asset-aware__consult_knowledge_graph]
B --> C{有相關內容?}
C -->|是| D[asset-aware__search_source_location]
C -->|否| E[告知用戶需要先索引教材]
D --> F[根據真實內容生成題目]
F --> G[exam-generator__exam_validate_question]
G -->|通過| H[exam-generator__exam_save_question + 真實來源]
G -->|失敗| F
# 使用 asset-aware-mcp 的 RAG 查詢
result = asset-aware__consult_knowledge_graph(
query="propofol pharmacology mechanism",
mode="hybrid"
)
# 返回: 相關知識內容 + 來源文件
# 取得精確的頁碼和位置
source = asset-aware__search_source_location(
doc_id="miller9",
query="GABA-A receptor",
block_types=["Text"]
)
# 返回:
# - page: 156
# - bbox: [72, 340, 520, 380]
# - snippet: "Propofol exerts its effects primarily through..."
# 基於查詢結果生成題目
question = {
"question_text": "Propofol 的主要作用機轉是?",
"options": [
"A. 阻斷 NMDA 受體",
"B. 增強 GABA-A 受體活性", # 正確 - 來自文獻
"C. 活化鈉離子通道",
"D. 抑制多巴胺釋放"
],
"correct_answer": "B",
"explanation": "Propofol 主要透過增強 GABA-A 受體活性..."
}
# 驗證格式
exam-generator__exam_validate_question(
question_text=question["question_text"],
options=question["options"],
correct_answer=question["correct_answer"]
)
# 儲存(包含真實來源)
exam-generator__exam_save_question(
question_text=question["question_text"],
options=question["options"],
correct_answer=question["correct_answer"],
explanation=question["explanation"],
source_doc="Miller's Anesthesia 9th Ed",
source_page=156,
source_lines="12-18",
source_text="Propofol exerts its effects primarily through...",
difficulty="medium",
topics=["藥理學", "Propofol", "GABA"]
)
| 難度 | 類型 | 特徵 | MCP 查詢模式 |
|---|---|---|---|
| Easy | Single-hop Specific | 單一事實記憶 | mode="local" |
| Medium | Single-hop Abstract | 需要理解概念 | mode="hybrid" |
| Hard | Multi-hop Reasoning | 連結多個概念 | mode="global" + 多次查詢 |
📝 選擇題生成完成
題目 #1 [Medium] ━━━━━━━━━━━━━━━━━━━━━━━━━━
Propofol 的主要作用機轉是?
A. 阻斷 NMDA 受體
B. 增強 GABA-A 受體活性 ✓
C. 活化鈉離子通道
D. 抑制多巴胺釋放
📚 來源: Miller's Anesthesia 9th Ed
📄 P.156, L.12-18
📝 "Propofol exerts its effects primarily through..."
✅ 已驗證
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
asset-aware__consult_knowledge_graphasset-aware__search_source_location 驗證