用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/u9401066/anesthesia-exam --skill essay-generator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 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, 相似題, 題目查重, 檢查重複.
正在显示 SKILL.md
| name | essay-generator |
| description | 問答題/申論題生成器,支援簡答、解釋、比較、分析等題型。Triggers: 問答題, 申論題, 簡答題, essay, short answer, 解釋題, 比較題, 分析題. |
專門生成問答題/申論題,支援:
essay_types = {
"definition": "請定義/說明...", # 定義型
"explanation": "請解釋...的機制", # 解釋型
"comparison": "請比較...與...的異同", # 比較型
"case_analysis": "根據以下情境...", # 案例型
"enumeration": "請列舉...", # 列舉型
"application": "如何應用...於..." # 應用型
}
contexts = asset-aware__get_section_content(
query=topic,
scope=scope,
top_k=10 # 問答題需要更多上下文
)
prompt = f"""
根據以下教材內容生成一道{essay_type}問答題:
【教材內容】
{contexts}
【要求】
- 類型: {essay_type}
- 難度: {difficulty}
- 預期作答長度: {expected_length}
【輸出格式】
{{
"question": "題目內容",
"type": "{essay_type}",
"expected_points": ["要點1", "要點2", "要點3"],
"scoring_rubric": {{
"full_marks": 10,
"criteria": [
{{"point": "提及核心概念", "score": 3}},
{{"point": "解釋正確", "score": 4}},
{{"point": "舉例適當", "score": 3}}
]
}},
"sample_answer": "參考答案...",
"source": [
{{"page": 42, "lines": "15-20", "text": "..."}},
{{"page": 45, "lines": "5-10", "text": "..."}}
]
}}
"""
{
"type": "definition",
"question": "請說明什麼是 Minimum Alveolar Concentration (MAC),並列舉影響 MAC 的因素。",
"expected_points": [
"MAC 的定義",
"1 MAC 的臨床意義",
"影響因素(年齡、溫度、藥物等)"
],
"scoring_rubric": {
"full_marks": 10,
"criteria": [
{"point": "正確定義 MAC", "score": 3},
{"point": "說明 1 MAC 意義", "score": 2},
{"point": "列出 3+ 影響因素", "score": 3}
{
"type": "comparison",
"question": "請比較 Propofol 與 Etomidate 在麻醉誘導時的優缺點。",
"expected_points": [
"起效速度比較",
"心血管穩定性比較",
"腎上腺抑制作用",
"適用情境差異"
],
"scoring_rubric": {
"full_marks": 15,
"criteria": [
{"point": "Propofol 特性完整", "score": 4},
{"point": "Etomidate 特性完整", "score": 4},
{"point": "比較有條理", "score":
{
"type": "case_analysis",
"question": "一位 65 歲男性,有冠狀動脈疾病病史,需要進行急診腹部手術。請說明麻醉誘導藥物的選擇考量。",
"expected_points": [
"病人評估重點",
"藥物選擇理由",
"劑量調整考量",
"監測重點"
],
"context": {
"patient": "65歲男性",
"history": "冠狀動脈疾病",
"procedure": "急診腹部手術"
}
}
📝 問答題生成完成
題目 #1 [比較題] [Hard] ━━━━━━━━━━━━━━━━━━━━━
請比較 Succinylcholine 與 Rocuronium 作為
快速誘導插管肌肉鬆弛劑的優缺點,並說明
各自的適應症和禁忌症。(15分)
📊 評分標準:
├── Succinylcholine 特性 (4分)
├── Rocuronium 特性 (4分)
├── 比較分析 (4分)
└── 臨床選擇建議 (3分)
📚 來源:
├── Miller's Anesthesia P.523-528
└── Miller's Anesthesia P.534-540
💡 參考答案要點:
├── 起效速度: Sux 45-60s vs Roc 60-90s
├── 作用時間: Sux 5-10min vs Roc 30-45min
├── Sux 禁忌: 高血鉀風險、惡性高熱
└── Sugammadex 可逆轉 Rocuronium
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━