Oral Health Management Skill
Record dental examinations, manage treatment records, track oral health status, and analyze oral health trends.
Medical Disclaimer
This system is for health tracking and educational purposes only, and does not provide medical diagnosis or treatment advice.
Cannot Do:
- All oral health issues should be evaluated by a professional dentist
- Do not handle emergencies (severe toothache, trauma, etc.)
- Cannot replace professional dental examination and treatment
Can Do:
- Record and track oral health data
- Provide dental examination records and reminders
- Provide oral health assessment
- Provide general oral care recommendations
核心流程
用户输入 → 识别操作类型 → [checkup] 解析检查结果 → 保存记录
↓
[treatment] 解析治疗信息 → 保存记录
↓
[hygiene] 解析习惯 → 更新记录 → 保存
↓
[issue] 解析问题 → 保存记录
↓
[status/trend/reminder] 读取数据 → 显示报告
步骤 1: 解析用户输入
操作类型识别
| Input Keywords |
Operation Type |
| checkup |
checkup - Checkup record |
| treatment |
treatment - Treatment record |
| hygiene |
hygiene - Oral hygiene habits |
| issue |
issue - Oral problem |
| status |
status - View status |
| trend |
trend - Trend analysis |
| reminder |
reminder - Checkup reminder |
| screening |
screening - Disease screening |
步骤 2: 参数解析规则
Tooth Numbering (FDI System)
| User Input |
Tooth |
| 16, tooth 16 |
16 (upper right first molar) |
| 26, tooth 26 |
26 (upper left first molar) |
| 36, tooth 36 |
36 (lower left first molar) |
| 46, tooth 46 |
46 (lower right first molar) |
治疗类型识别
| Input Keywords |
Type |
| filling |
filling |
| root_canal |
root_canal |
| extraction |
extraction |
| implant |
implant |
| crown |
crown |
| bridge |
bridge |
| denture |
denture |
| orthodontic |
orthodontic |
| scaling |
scaling |
| periodontal |
periodontal |
口腔问题类型
| Input Keywords |
Type |
| toothache |
toothache |
| bleeding |
bleeding |
| ulcer |
ulcer |
| sensitivity |
sensitivity |
| swelling |
swelling |
| bad_breath |
bad_breath |
| dry_mouth |
dry_mouth |
| clicking |
clicking |
Severity
| Input |
Severity |
| mild |
mild |
| moderate |
moderate |
| severe |
severe |
步骤 3: 生成 JSON
检查记录数据结构
{
"id": "checkup_20250610_001",
"date": "2025-06-10",
"teeth_status": {
"16": { "condition": "caries", "note": "Decay" },
"26": { "condition": "filling", "note": "Filled" }
},
"periodontal_status": {
"bleeding_on_probing": false,
"probing_depth": "2-3mm",
"gingival_recession": "none"
},
"soft_tissue": "normal",
"occlusion": "normal",
"tmj": "normal",
"examined_by": "",
"notes": "Regular checkup recommended"
}
治疗记录数据结构
{
"id": "treatment_20250610_001",
"date": "2025-06-10",
"tooth_number": "26",
"treatment_type": "filling",
"material": "composite_resin",
"cost": 300,
"anesthesia": "local",
"notes": "Composite resin filling"
}
卫生习惯数据结构
{
"last_updated": "2025-06-10",
"brushing": {
"frequency": "twice_daily",
"method": "bass_method",
"duration_minutes": 2
},
"flossing": {
"frequency": "daily",
"time": "evening"
},
"mouthwash": {
"frequency": "sometimes",
"type": "fluoride"
}
}
步骤 4: 保存数据
- 读取
data/oral-health-tracker.json
- 更新对应记录段
- 写回文件
FDI牙位标记法
恒牙编号(1-32)
- 右上象限:18 17 16 15 14 13 12 11
- 左上象限:21 22 23 24 25 26 27 28
- 左下象限:38 37 36 35 34 33 32 31
- 右下象限:48 47 46 45 44 43 42 41
乳牙编号(51-85)
- 右上象限:55 54 53 52 51
- 左上象限:61 62 63 64 65
- 左下象限:75 74 73 72 71
- 右下象限:85 84 83 82 81
Hygiene Score
| Score |
Description |
| 9-10 |
Excellent: Brushing 2+ times daily, flossing daily, regular cleanings |
| 7-8 |
Good: Brushing 2 times daily, flossing 3+ times weekly |
| 5-6 |
Fair: Brushing 1-2 times daily, occasionally flossing |
| 3-4 |
Poor: Brushing once daily, rarely flossing |
| 1-2 |
Very Poor: Irregular brushing, no flossing |
Cavity Risk Level
| Risk |
Description |
| Low |
Low sugar diet, good hygiene habits, fluoride toothpaste, regular checkups |
| Medium |
Moderate sugar intake, fair hygiene, occasional fluoride products |
| High |
High sugar diet, poor hygiene, irregular checkups, history of cavities |
Periodontal Health Classification
| Grade |
Description |
| Healthy |
No bleeding, probing depth 1-3mm, no attachment loss |
| Gingivitis |
Bleeding on probing, probing depth 3-4mm |
| Mild Periodontitis |
Probing depth 4-5mm, mild attachment loss |
| Moderate Periodontitis |
Probing depth 5-6mm, moderate attachment loss |
| Severe Periodontitis |
Probing depth >6mm, severe attachment loss |
Emergency Guide
Requires Emergency Care (within 24 hours)
- Severe toothache unrelieved by medication
- Trauma causing tooth loss or fracture
- Facial swelling, especially with fever
- Excessive gum bleeding that won't stop
Needs Prompt Care (within 1 week)
- Persistent toothache over 3 days
- Mouth ulcer not healing after 2 weeks
- Unknown lump or white patch in mouth
Routine Appointment (within 1 month)
- Regular checkup and cleaning
- Mild tooth sensitivity
- Cosmetic dental consultation
更多示例参见 examples.md。
1---2name: oral-health3description: Manage oral health tracking including dental checkups, treatment records, hygiene habits, problem monitoring, and screening. Use for dental visit records, cavity tracking, gum health, and oral care management.4---56# Oral Health Management Skill78Record dental examinations, manage treatment records, track oral health status, and analyze oral health trends.910## Medical Disclaimer1112This system is for health tracking and educational purposes only, and does not provide medical diagnosis or treatment advice.1314**Cannot Do:**15- All oral health issues should be evaluated by a professional dentist16- Do not handle emergencies (severe toothache, trauma, etc.)17- Cannot replace professional dental examination and treatment1819**Can Do:**20- Record and track oral health data21- Provide dental examination records and reminders22- Provide oral health assessment23- Provide general oral care recommendations2425## 核心流程2627```28用户输入 → 识别操作类型 → [checkup] 解析检查结果 → 保存记录29 ↓30 [treatment] 解析治疗信息 → 保存记录31 ↓32 [hygiene] 解析习惯 → 更新记录 → 保存33 ↓34 [issue] 解析问题 → 保存记录35 ↓36 [status/trend/reminder] 读取数据 → 显示报告37```3839## 步骤 1: 解析用户输入4041### 操作类型识别4243| Input Keywords | Operation Type |44|---------------|----------------|45| checkup | checkup - Checkup record |46| treatment | treatment - Treatment record |47| hygiene | hygiene - Oral hygiene habits |48| issue | issue - Oral problem |49| status | status - View status |50| trend | trend - Trend analysis |51| reminder | reminder - Checkup reminder |52| screening | screening - Disease screening |5354## 步骤 2: 参数解析规则5556### Tooth Numbering (FDI System)5758| User Input | Tooth |59|-----------|------|60| 16, tooth 16 | 16 (upper right first molar) |61| 26, tooth 26 | 26 (upper left first molar) |62| 36, tooth 36 | 36 (lower left first molar) |63| 46, tooth 46 | 46 (lower right first molar) |6465### 治疗类型识别6667| Input Keywords | Type |68|---------------|------|69| filling | filling |70| root_canal | root_canal |71| extraction | extraction |72| implant | implant |73| crown | crown |74| bridge | bridge |75| denture | denture |76| orthodontic | orthodontic |77| scaling | scaling |78| periodontal | periodontal |7980### 口腔问题类型8182| Input Keywords | Type |83|---------------|------|84| toothache | toothache |85| bleeding | bleeding |86| ulcer | ulcer |87| sensitivity | sensitivity |88| swelling | swelling |89| bad_breath | bad_breath |90| dry_mouth | dry_mouth |91| clicking | clicking |9293### Severity9495| Input | Severity |96|-------|----------|97| mild | mild |98| moderate | moderate |99| severe | severe |100101## 步骤 3: 生成 JSON102103### 检查记录数据结构104105```json106{107 "id": "checkup_20250610_001",108 "date": "2025-06-10",109 "teeth_status": {110 "16": { "condition": "caries", "note": "Decay" },111 "26": { "condition": "filling", "note": "Filled" }112 },113 "periodontal_status": {114 "bleeding_on_probing": false,115 "probing_depth": "2-3mm",116 "gingival_recession": "none"117 },118 "soft_tissue": "normal",119 "occlusion": "normal",120 "tmj": "normal",121 "examined_by": "",122 "notes": "Regular checkup recommended"123}124```125126### 治疗记录数据结构127128```json129{130 "id": "treatment_20250610_001",131 "date": "2025-06-10",132 "tooth_number": "26",133 "treatment_type": "filling",134 "material": "composite_resin",135 "cost": 300,136 "anesthesia": "local",137 "notes": "Composite resin filling"138}139```140141### 卫生习惯数据结构142143```json144{145 "last_updated": "2025-06-10",146 "brushing": {147 "frequency": "twice_daily",148 "method": "bass_method",149 "duration_minutes": 2150 },151 "flossing": {152 "frequency": "daily",153 "time": "evening"154 },155 "mouthwash": {156 "frequency": "sometimes",157 "type": "fluoride"158 }159}160```161162## 步骤 4: 保存数据1631641. 读取 `data/oral-health-tracker.json`1652. 更新对应记录段1663. 写回文件167168## FDI牙位标记法169170### 恒牙编号(1-32)171- 右上象限:18 17 16 15 14 13 12 11172- 左上象限:21 22 23 24 25 26 27 28173- 左下象限:38 37 36 35 34 33 32 31174- 右下象限:48 47 46 45 44 43 42 41175176### 乳牙编号(51-85)177- 右上象限:55 54 53 52 51178- 左上象限:61 62 63 64 65179- 左下象限:75 74 73 72 71180- 右下象限:85 84 83 82 81181182## Hygiene Score183184| Score | Description |185|-------|-------------|186| 9-10 | Excellent: Brushing 2+ times daily, flossing daily, regular cleanings |187| 7-8 | Good: Brushing 2 times daily, flossing 3+ times weekly |188| 5-6 | Fair: Brushing 1-2 times daily, occasionally flossing |189| 3-4 | Poor: Brushing once daily, rarely flossing |190| 1-2 | Very Poor: Irregular brushing, no flossing |191192## Cavity Risk Level193194| Risk | Description |195|------|-------------|196| Low | Low sugar diet, good hygiene habits, fluoride toothpaste, regular checkups |197| Medium | Moderate sugar intake, fair hygiene, occasional fluoride products |198| High | High sugar diet, poor hygiene, irregular checkups, history of cavities |199200## Periodontal Health Classification201202| Grade | Description |203|-------|-------------|204| Healthy | No bleeding, probing depth 1-3mm, no attachment loss |205| Gingivitis | Bleeding on probing, probing depth 3-4mm |206| Mild Periodontitis | Probing depth 4-5mm, mild attachment loss |207| Moderate Periodontitis | Probing depth 5-6mm, moderate attachment loss |208| Severe Periodontitis | Probing depth >6mm, severe attachment loss |209210## Emergency Guide211212### Requires Emergency Care (within 24 hours)213- Severe toothache unrelieved by medication214- Trauma causing tooth loss or fracture215- Facial swelling, especially with fever216- Excessive gum bleeding that won't stop217218### Needs Prompt Care (within 1 week)219- Persistent toothache over 3 days220- Mouth ulcer not healing after 2 weeks221- Unknown lump or white patch in mouth222223### Routine Appointment (within 1 month)224- Regular checkup and cleaning225- Mild tooth sensitivity226- Cosmetic dental consultation227228更多示例参见 [examples.md](examples.md)。