auto: sync OpenClaw config 2026-09-16 22:13
This commit is contained in:
@@ -199,6 +199,24 @@ ORDER BY record_date ASC;
|
||||
- health_indicator_trends - 指标变化趋势
|
||||
- user_health_summary - 用户健康概要
|
||||
|
||||
### 身体尺寸(1张,2026-09-16 新增)
|
||||
- body_measurements - 身体尺寸(静态尺寸+历史,支撑「尺码卡」)
|
||||
- 字段:height 身高 / shoulder_width 肩宽 / chest 胸围 / waist 腰围 / hip 臀围 / arm_length 臂长 / inseam 裤长内长 / note 测法用途备注
|
||||
- **身体尺寸单一真相来源 = fitness 库**,不另开 agent;`user_profiles`(静态档)与 `body_records`(体重/腰围趋势)保持原样不动
|
||||
|
||||
#### 尺码卡查询口径(取每人最新一条 body_measurements)
|
||||
|
||||
```sql
|
||||
SET NAMES utf8mb4;
|
||||
SELECT measure_date, height, shoulder_width, chest, waist, hip, arm_length, inseam, note
|
||||
FROM body_measurements
|
||||
WHERE user_id='yangxuan'
|
||||
ORDER BY measure_date DESC
|
||||
LIMIT 1;
|
||||
```
|
||||
|
||||
输出身高/肩宽/胸围/腰围/臀围/裤长,并**必须标注腰围测法**:本表 waist 为肚脐水平实测,与裤装标注的腰围尺码可能差 2-4cm(买裤时以裤型/版型说明为准,差异写进 note)。
|
||||
|
||||
## Tools
|
||||
|
||||
### Local notes (migrated from TOOLS.md)
|
||||
|
||||
@@ -280,3 +280,15 @@
|
||||
- 不吸烟、不喝酒
|
||||
- 无家族遗传病史
|
||||
- 睡眠:入睡困难,5-7小时,需关注
|
||||
|
||||
## 皮肤护理史
|
||||
|
||||
### 2026-09-16 全脸深层清洁(细胞夹闭口粉刺)
|
||||
- **项目**:细胞夹闭口粉刺全脸深层清洁,40分钟
|
||||
- **地点**:美容院「奢思雅」(付费)
|
||||
- **效果**:黑头有明显清洁
|
||||
- **皮肤表现**:未提及泛红、刺痛、脱皮
|
||||
- **当晚处理**:修复日 → 仅温水清洁(不用洁面产品)、不刷壬二酸、只涂百雀羚B5修护乳
|
||||
- **壬二酸**:停 2-3 天,用酸日顺延至最早 **2026-09-21**
|
||||
- **护理原则**:清洁后 24-72 小时屏障脆弱,以保湿修护为主;若出现泛红刺痛则继续只做保湿修护
|
||||
- **数据库**:health_status_logs id=1(user_id=yangxuan, log_date=2026-09-16, status_type=皮肤护理, severity=轻)
|
||||
|
||||
Reference in New Issue
Block a user