用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/u9401066/anesthesia-exam --skill scope-analyzer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
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 | scope-analyzer |
| description | 分析出題範圍,識別章節、主題、知識點分佈。Triggers: 分析範圍, 範圍分析, scope, 章節分析, 主題分析, 知識點, analyze scope, 出題範圍. |
分析指定的出題範圍,識別章節結構、主題分佈,計算各知識點的權重以指導出題。
# 解析用戶指定的範圍
scope = parse_scope(user_input)
# 例如: "藥理學第三章" → {book: "藥理學", chapter: 3}
# 例如: "Propofol 相關" → {topic: "Propofol"}
# 從索引中提取範圍內的結構
structure = {
"chapters": [],
"sections": [],
"topics": [],
"key_concepts": []
}
for chunk in index.query(scope):
structure.chapters.add(chunk.chapter)
structure.sections.add(chunk.section)
structure.topics.extend(extract_topics(chunk))
# 計算各主題的內容量(用於難度/出題比例)
weights = {}
for topic in structure.topics:
weights[topic] = {
"content_volume": count_chunks(topic),
"importance": assess_importance(topic),
"suggested_questions": calculate_question_count(topic)
}
{
"scope_id": "scope_20260203_001",
"description": "藥理學第三章:靜脈麻醉藥",
"structure": {
"total_chunks": 234,
"total_pages": 45,
"chapters": ["第三章 靜脈麻醉藥"],
"sections": [
"3.1 Barbiturates",
"3.2 Propofol",
"3.3 Etomidate",
"3.4 Ketamine"
]
},
"topic_weights": {
"Propofol": { "weight": 0.35, "suggested_questions": 7 },
"Barbiturates": { "weight": 0.25, "suggested_questions": 5 },
"Ketamine": { "weight": 0.25, "suggested_questions": 5 },
"Etomidate": { "weight": 0.15, "suggested_questions": 3 }
},
"key_concepts": [
"藥物動力學",
"劑量計算",
"副作用",
"禁忌症"
]
}
📊 範圍分析完成
🎯 分析範圍: 藥理學第三章 - 靜脈麻醉藥
├── 頁數: 45 頁 (P.89-133)
├── 章節: 4 個 sections
└── 知識點: 12 個核心概念
📈 主題權重分佈
├── Propofol ████████████░░ 35% (建議 7 題)
├── Barbiturates █████████░░░░░ 25% (建議 5 題)
├── Ketamine █████████░░░░░ 25% (建議 5 題)
└── Etomidate ██████░░░░░░░░ 15% (建議 3 題)
🔑 核心概念
├── 藥物動力學 (PK/PD)
├── 劑量計算
├── Context-sensitive half-time
├── 副作用與禁忌症
└── 臨床應用場景