返回顶部
a

anatomy-quiz-master解剖测验大师

Generate interactive anatomy quizzes for medical education with multiple

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.0
安全检测
已通过
199
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

anatomy-quiz-master

解剖学测验大师

概述

综合性解剖学教育工具,可生成涵盖大体解剖学、神经解剖学和临床解剖学的交互式测验,具有自适应难度和详细解释。

核心能力:

  • - 区域测验:头颈部、胸部、腹部、骨盆、四肢
  • 多种题型:识别、功能、临床关联
  • 自适应难度:基础、中级、高级水平
  • 图像整合:解剖图像标注识别
  • 进度追踪:表现分析和薄弱区域识别
  • 考试模式:USMLE风格限时模拟

使用时机

✅ 使用此技能的场景:

  • - 医学生准备解剖学实践考试
  • 解剖学讲座或解剖课后自我评估
  • 识别薄弱解剖区域进行针对性学习
  • 为学习小组创建练习题
  • 为解剖学评估不及格的学生提供补救
  • 准备USMLE第一步解剖学题目
  • 助教为实验室生成测验材料

❌ 不应使用的场景:

  • - 作为解剖学主要学习资源 → 应首先使用教科书/图谱
  • 替代尸体解剖实验室出勤 → 仅用于补充练习
  • 病理学或生理学问题 → 使用这些主题的专业技能
  • 委员会考试注册或安排 → 使用官方NBME资源

集成:

  • - 上游:usmle-case-generator(临床情境),anki-card-creator(闪卡导出)
  • 下游:study-limitations-drafter(弱点分析),performance-tracker(进度监控)

核心能力

1. 区域解剖学测验

按身体区域生成针对性测验:

python
from scripts.quiz_generator import QuizGenerator

generator = QuizGenerator()

生成胸部测验

quiz = generator.generate_quiz( region=thorax, topics=[heart, lungs, mediastinum, thoracic_wall], difficulty=intermediate, n_questions=20 )

导出至LMS

quiz.export(format=json, filename=thorax_quiz.json)

支持的区域:

区域子主题题型
头颈部颅骨、脑神经、三角区、内脏识别、通路、临床
胸部
心脏、肺、纵隔、胸膜 | 关系、听诊、影像 |
| 腹部 | 胃肠道、腹膜后腔、血管 | 腹膜反折、血管供应 |
| 骨盆 | 器官、会阴、壁 | 性别差异、临床关联 |
| 上肢 | 肩部、上臂、前臂、手 | 肌肉动作、神经支配、临床 |
| 下肢 | 髋部、大腿、小腿、足 | 步态、筋膜室、临床检查 |
| 背部 | 脊柱、脊髓、肌肉 | 节段、标志、临床 |

2. 神经解剖学通路追踪

神经通路的专业测验:

python

神经解剖学测验


neuroquiz = generator.generateneuro_quiz(
pathwaytype=motor, # 或 sensory, cranialnerves, reflexes
include_lesions=True,
clinical_correlations=True
)

通路类型:

  • - 运动通路:皮质脊髓束、皮质延髓束、基底节环路
  • 感觉通路:背柱、脊髓丘脑束、三叉神经
  • 脑神经:全部12对脑神经及其核团和临床检查
  • 反射弧:深腱反射、浅反射、内脏反射
  • 血管:动脉供应、静脉引流、卒中综合征

3. 临床关联题

将解剖学与临床场景整合:

python
clinicalquiz = generator.generateclinical_quiz(
region=abdomen,
scenariotypes=[surgery, radiology, physicalexam],
difficulty=advanced
)

题目格式:

临床场景:
一名45岁男性,表现为向背部放射的上腹痛。
CT显示小网膜囊内有一肿块。

问题:哪条动脉紧贴胰腺体部后方走行,在切除术中可能面临风险?

A) 脾动脉
B) 肠系膜上动脉
C) 肝总动脉
D) 胃左动脉

正确答案:B) 肠系膜上动脉

解释:SMA自L1水平从主动脉发出,经过胰腺颈部后方和钩突前方...

4. 自适应学习系统

根据表现调整难度:

python
from scripts.adaptive import AdaptiveEngine

engine = AdaptiveEngine()

追踪学生表现

studentprogress = engine.trackperformance( studentid=student001, quiz_results=results, timeperquestion=True )

生成针对薄弱区域的个性化测验

personalized = engine.generateadaptivequiz( studentprogress=studentprogress, focusareas=[thoraxvessels, cranial_nerves], mastery_threshold=0.80 )

自适应功能:

  • - 间隔重复:以最佳间隔重新测试错误主题
  • 难度递进:连续答对3题后提升难度
  • 时间压力:逐步减少时间限制以训练速度
  • 弱点识别:按解剖结构追踪表现

常见模式

模式1:考前全面复习

场景:学生准备2周后的解剖学实践考试。

bash

生成全身综合测验


python scripts/main.py \
--mode comprehensive \
--regions all \
--difficulty intermediate \
--n-questions 100 \
--timed \
--output prepracticeexam.json

针对识别的薄弱区域

python scripts/main.py \ --mode adaptive \ --focus abdomen,pelvis \ --difficulty advanced \ --n-questions 30 \ --output weakareasreview.json

学习计划:

  • - 第1周:综合测验(所有区域)
  • 第2周:重点复习得分<80%的区域
  • 考前3天:限时模拟考试
  • 考前1天:轻量复习标记的难题

模式2:实验室课程准备

场景:学生准备上肢尸体解剖实验室。

python

实验前识别测验


prelab = generator.generateimage_quiz(
region=upper_limb,
structure_types=[muscles, vessels, nerves],
label_type=pins, # 标注识别格式
n_questions=15
)

实验后临床关联

postlabclinical = generator.generateclinicalquiz( region=upper_limb, clinicaltypes=[fractures, nerveinjuries, vascular] )

实验室整合:

  • - 实验前:15分钟识别测验
  • 实验期间:参考关键标志
  • 实验后:将解剖学与疾病关联的临床关联测验

模式3:USMLE第一步准备

场景:医学生准备USMLE第一步。

bash

USMLE风格临床解剖学


python scripts/main.py \
--mode usmle \
--clinical-focus \
--mix-basic-advanced 70:30 \
--n-questions 40 \
--timed-per-question 60 \
--output usmleanatomypractice.json

USMLE功能:

  • - 临床病例格式
  • 基于图像的题目(放射学、病理学)
  • 两步推理(识别结构→临床意义)
  • 时间压力模拟(每题60-90秒)

模式4:助教实验室测验

场景:助教需要生成每周实验室测验。

python

每周实验室测验


taquiz = generator.generateta_quiz(
week_number=5,
region=thorax,
practical_stations=8,
timeperstation=3, # 分钟
includeprosectionimages=True
)

自动生成答案

answerkey = taquiz.generateanswerkey( includeacceptablevariations=True, gradingrubric=partialcredit )

助教工具:

  • - 基于站点的实践考试格式
  • 包含可接受变体的答案
  • 评分标准
  • 按题目统计的表现数据

完整工作流程示例

综合解剖学学习课程:

bash

步骤1:诊断测验以识别薄弱区域


python scripts/main.py \
--mode diagnostic \
--regions all \
--n-questions 50 \
--output diagnostic_results.json

步骤2:生成针对性学习计划

python scripts/main.py \ --analyze-results diagnostic_results.json \ --generate-study-plan \ --days 14 \ --output study_plan.md

步骤3:按计划进行每日测验

python scripts/main.py \ --mode daily \ --study-plan study_plan.md \ --day 1 \ --output day1_quiz.json

步骤4:间隔重复复习

python scripts/main.py \

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 anatomy-quiz-master-1776266595 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 anatomy-quiz-master-1776266595 技能

通过命令行安装

skillhub install anatomy-quiz-master-1776266595

下载

⬇ 下载 anatomy-quiz-master v0.1.0(免费)

文件大小: 10.4 KB | 发布时间: 2026-4-17 14:04

v0.1.0 最新 2026-4-17 14:04
Initial release of Anatomy Quiz Master: Interactive anatomy quiz generator for medical education.

- Generates quizzes by anatomical region (gross anatomy, neuroanatomy, clinical anatomy) with selectable topics and difficulty.
- Supports various question types: identification, function, clinical correlation, and image-based labeling.
- Includes adaptive learning features such as progress tracking, spaced repetition, and weakness identification.
- Provides clinical scenario integration and USMLE-style timed exam mode.
- Features use-case patterns for exam prep, lab sessions, and teaching assistants.
- Enables export for learning management systems and integration with related study tools.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部