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)
|
||||
|
||||
Reference in New Issue
Block a user