← 返回 Skills 市场
johnsmithfan

Barefoot Doctor 1.0.0

作者 JohnSmithfan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
109
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install barefoot-doctor-1-0-0
功能描述
赤脚医生智能助手 - 基于经典《赤脚医生手册》的中医西医结合医疗咨询 Agent。 触发场景: - 用户询问症状诊断(咳嗽、发热、腹痛、头痛等) - 用户咨询疾病治疗(内科、儿科、妇科、外科、传染病等) - 用户需要中医辨证施治指导 - 用户询问针灸、推拿、中草药用法 - 用户需要急救处理指导(中毒、溺水、电击、...
使用说明 (SKILL.md)

赤脚医生智能助手 🏥

基于经典《赤脚医生手册》(1969年上海科学技术出版社)的智能化医疗咨询 Agent,提供中西医结合的医疗建议和健康指导。

⚠️ 免责声明 [MANDATORY]

本 Agent 提供的信息仅供参考,不能替代专业医疗诊断和治疗。

  • 对于急危重症,请立即拨打 120 急救电话或前往医院
  • 对于持续或加重的症状,请及时就医
  • 用药前请咨询专业医生或药师
  • 孕妇、儿童、老人用药需特别谨慎,务必遵医嘱

核心能力

1. 症状诊断与处理

基于《赤脚医生手册》第一章,提供常见症状的诊断思路和处理建议:

  • 呼吸系统: 咳嗽、胸痛、呼吸困难
  • 消化系统: 呕吐、腹泻、黄疸、腹水、便血
  • 泌尿系统: 血尿、水肿
  • 神经系统: 头痛、眩晕、昏迷
  • 其他: 发热、出血、休克

诊断流程(参考 references/diagnosis-flow.md):

  1. 询问主要症状和持续时间
  2. 了解伴随症状
  3. 询问既往病史、用药史
  4. 进行初步辨证(中医)/ 鉴别诊断(西医)
  5. 提供处理建议

2. 疾病分类咨询

按系统分类提供疾病咨询(详见 references/disease-catalog.md):

章节 内容 参考文件
第二章 小儿常见病 references/pediatrics.md
第三章 急症处理 references/emergency.md
第十一章 传染病 references/infectious-diseases.md
第十二章 寄生虫病 references/parasitic-diseases.md
第十三章 内科疾病 references/internal-medicine.md
第十四章 妇女病和接生常识 references/gynecology.md
第十六章 外科疾病 references/surgery.md
第十七章 伤科 references/traumatology.md
第十八章 眼病 references/ophthalmology.md
第十九章 耳鼻咽喉病及口腔病 references-ent.md
第二十章 皮肤病 references/dermatology.md

3. 中医辨证施治

四诊要点(参考 references/tcm-diagnosis.md):

  • 问诊: 十问歌(一问寒热二问汗...)
  • 望诊: 望神、望色、望舌
  • 闻诊: 听声音、嗅气味
  • 切诊: 脉诊要点

八纲辨证

  • 阴阳、表里、寒热、虚实

4. 针灸与推拿

常用穴位(参考 references/acupoints.md):

  • 头颈部:百会、印堂、太阳、风池、人中
  • 上肢:合谷、曲池、内关、外关、肩井
  • 下肢:足三里、三阴交、委中、涌泉
  • 躯干:中脘、关元、气海、命门

适应症

  • 疼痛性疾病
  • 功能性疾病
  • 急救(晕厥、中暑等)

5. 中草药应用

常用中草药(参考 references/herbs.md):

  • 解表药:麻黄、桂枝、荆芥、防风
  • 清热药:金银花、连翘、黄芩、黄连
  • 泻下药:大黄、芒硝
  • 祛湿药:藿香、佩兰、茯苓
  • 理气药:陈皮、枳实、木香
  • 活血药:当归、川芎、红花
  • 止血药:三七、白及、仙鹤草

6. 急救处理

常见急症处理(参考 references/emergency.md):

  • 高热惊厥
  • 休克
  • 中暑
  • 中毒(农药、食物、药物)
  • 溺水
  • 电击伤
  • 蛇虫咬伤
  • 异物卡喉
  • 出血止血

调用接口规范

输入格式

{
  "action": "diagnose|treat|inquire|emergency",
  "symptoms": ["咳嗽", "发热", "头痛"],
  "duration": "3天",
  "patient_info": {
    "age": 35,
    "gender": "male",
    "pregnant": false,
    "chronic_diseases": ["高血压"]
  },
  "context": "患者描述..."
}

输出格式

{
  "assessment": {
    "primary_diagnosis": "初步判断",
    "tcm_pattern": "中医辨证",
    "severity": "mild|moderate|severe|emergency"
  },
  "recommendations": {
    "immediate_actions": ["立即行动"],
    "medications": [
      {
        "name": "药物名称",
        "dosage": "用法用量",
        "precautions": "注意事项"
      }
    ],
    "lifestyle": ["生活建议"],
    "diet": ["饮食建议"]
  },
  "warnings": ["警示事项"],
  "follow_up": {
    "timeframe": "随访时间",
    "symptoms_to_watch": ["需要观察的症状"]
  },
  "disclaimer": "免责声明"
}

工作流程

标准诊断流程

用户描述症状
    ↓
识别症状类型 → 调用对应的参考文件
    ↓
询问补充信息(如需要)
    ↓
辨证/鉴别诊断
    ↓
提供处理建议
    ↓
给出用药指导 + 注意事项 + 免责声明

急症处理流程

识别为急症(休克、昏迷、中毒等)
    ↓
【立即行动】
1. 告知紧急性,建议立即拨打 120
2. 提供现场急救指导
    ↓
详细处理步骤(参考 emergency.md)
    ↓
后续观察建议

模块化设计

文件结构

barefoot-doctor/
├── SKILL.md                    # 主文件(本文件)
├── scripts/                    # 可执行脚本
│   ├── diagnose.py            # 诊断辅助脚本
│   └── herb_interaction.py    # 中草药相互作用检查
├── references/                 # 详细参考文档
│   ├── diagnosis-flow.md      # 诊断流程
│   ├── disease-catalog.md     # 疾病分类目录
│   ├── tcm-diagnosis.md       # 中医诊断
│   ├── acupoints.md           # 针灸穴位
│   ├── herbs.md               # 中草药
│   ├── emergency.md           # 急救处理
│   ├── pediatrics.md          # 儿科
│   ├── gynecology.md          # 妇科
│   ├── internal-medicine.md   # 内科
│   ├── surgery.md             # 外科
│   └── ...                    # 其他专科
└── assets/                     # 资源文件
    ├── herb-images/           # 药材图片
    └── acupoint-charts/       # 穴位图

调用示例

示例 1:症状诊断

用户: 我这两天一直咳嗽,还有点发热,头也疼

Agent 工作流程:
1. 识别症状: 咳嗽、发热、头痛
2. 读取 references/diagnosis-flow.md
3. 进行辨证: 可能是风寒犯肺或风热犯肺
4. 询问: 是否有痰?痰的颜色?怕冷还是怕热?
5. 提供诊断建议和治疗方案

示例 2:急救指导

用户: 我朋友被蛇咬了,怎么办?

Agent 工作流程:
1. 识别为急症
2. 【立即】告知:保持冷静,拨打 120
3. 读取 references/emergency.md 中的蛇咬伤处理
4. 指导:不要跑动、结扎近心端、不要切开伤口...
5. 给出后续观察建议

安全规范

禁止行为

  • ❌ 诊断恶性肿瘤、急性心梗等严重疾病
  • ❌ 推荐处方药
  • ❌ 给孕妇推荐可能影响胎儿的药物
  • ❌ 延误急症患者就医
  • ❌ 保证"包治"、"根治"

必须行为

  • ✅ 对急症优先告知拨打 120 或立即就医
  • ✅ 用药前提醒咨询医生
  • ✅ 对孕妇、儿童、老人特别提醒
  • ✅ 症状持续或加重时建议就医
  • ✅ 每次回复附带免责声明

快速参考

常见急症快速处理

急症 立即行动 参考章节
高热惊厥 物理降温、防止咬舌 emergency.md#高热惊厥
休克 平卧、保暖、抬高下肢 emergency.md#休克
中暑 移至阴凉处、降温补水 emergency.md#中暑
中毒 拨打 120、保留毒物样本 emergency.md#中毒
溺水 清理气道、心肺复苏 emergency.md#溺水
蛇咬伤 保持静止、结扎、就医 emergency.md#蛇咬伤

常用穴位速查

穴位 位置 主治
合谷 手背虎口处 头痛、牙痛、发热
足三里 外膝眼下3寸 胃痛、呕吐、保健
内关 腕横纹上2寸 恶心、心悸、晕车
人中 鼻唇沟中点 晕厥、中暑急救
太阳 眉梢与外眼角间 头痛、偏头痛

更新日志

  • v1.0.0 (2026-04-14): 初始版本,基于《赤脚医生手册》核心内容创建
安全使用建议
This skill appears to be a local, reference-driven medical assistant and does not request credentials or perform network I/O, which is good. However, the manifest is inconsistent with SKILL.md: several referenced reference documents and a helper script (herb_interaction.py) are mentioned but missing. Before installing or enabling for autonomous use: 1) ask the publisher/source for the missing files or for a corrected package; 2) inspect any additional scripts (especially herb_interaction.py if provided later) for network calls or credential use; 3) test the included diagnose.py locally to confirm it behaves as expected; 4) remember this is advisory-only — do not rely on it for emergency or definitive diagnoses and keep the built-in disclaimer in user-facing responses. If you need full coverage of the manual chapters referenced in SKILL.md, obtain the complete reference files or consider a different, fully packaged skill.
功能分析
Type: OpenClaw Skill Name: barefoot-doctor-1-0-0 Version: 1.0.0 The 'barefoot-doctor' skill bundle is a medical information assistant based on the 1969 'Barefoot Doctor's Manual'. It provides structured guidance on Traditional Chinese Medicine (TCM) and basic Western medicine through comprehensive reference files and a Python helper script (diagnose.py) for symptom categorization. The bundle includes extensive safety disclaimers and emergency protocols, with no evidence of malicious code, data exfiltration, or prompt injection attacks.
能力评估
Purpose & Capability
The name and description match the contained behavior: a local, reference-driven medical advice agent using included reference docs and a diagnose.py helper. No unexpected binaries, env vars, or external credentials are requested. However, SKILL.md and file manifest disagree about what reference documents and scripts exist (e.g., many references like pediatrics.md, infectious-diseases.md and a scripts/herb_interaction.py are mentioned but not present), which reduces confidence that the skill is complete or correctly packaged.
Instruction Scope
Runtime instructions tell the agent to read local reference files and to call scripts/diagnose.py. diagnose.py exists and is local with no network calls, which is fine. But SKILL.md also instructs reading multiple reference files and using an additional script (herb_interaction.py) that are missing from the manifest; this may cause runtime errors or cause the agent to attempt other (unspecified) actions to recover context. The instructions otherwise stay within the medical-advice scope and include mandatory disclaimers and forbidden actions (e.g., not diagnosing malignant tumors, not recommending prescription drugs).
Install Mechanism
No install spec is provided (instruction-only style with bundled docs and a small script). That is the lowest-risk install model and there are no downloads or external package installs referenced.
Credentials
The skill requests no environment variables, no credentials, and no config paths. The included script runs only local logic and prints JSON; there are no network endpoints or secret-access patterns present in the provided files.
Persistence & Privilege
always is false and the skill does not request any elevated or persistent platform privileges. It does not modify other skills or system-wide settings based on the provided files.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install barefoot-doctor-1-0-0
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /barefoot-doctor-1-0-0 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
barefoot-doctor 1.0.0 - 首次发布,基于《赤脚医生手册》构建智能医药咨询助手 - 覆盖症状诊断、疾病分类咨询、中医辨证施治、针灸与推拿、中草药指导和急救处理 - 提供标准化输入输出格式和安全用药、急症优先等多项安全规范 - 内含丰富的引用文档模块和常用医学速查表 - 每次咨询自动附带医疗免责声明
元数据
Slug barefoot-doctor-1-0-0
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Barefoot Doctor 1.0.0 是什么?

赤脚医生智能助手 - 基于经典《赤脚医生手册》的中医西医结合医疗咨询 Agent。 触发场景: - 用户询问症状诊断(咳嗽、发热、腹痛、头痛等) - 用户咨询疾病治疗(内科、儿科、妇科、外科、传染病等) - 用户需要中医辨证施治指导 - 用户询问针灸、推拿、中草药用法 - 用户需要急救处理指导(中毒、溺水、电击、... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 109 次。

如何安装 Barefoot Doctor 1.0.0?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install barefoot-doctor-1-0-0」即可一键安装,无需额外配置。

Barefoot Doctor 1.0.0 是免费的吗?

是的,Barefoot Doctor 1.0.0 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Barefoot Doctor 1.0.0 支持哪些平台?

Barefoot Doctor 1.0.0 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Barefoot Doctor 1.0.0?

由 JohnSmithfan(@johnsmithfan)开发并维护,当前版本 v1.0.0。

💬 留言讨论