Overview
- Skill Key
- harrylabs0913/health-manager
- Author
- harrylabs0913
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/harrylabs0913/health-manager
- Latest Commit SHA
- 39719279627eceb3969507c871c88b235680d325
Health data management system for tracking blood pressure, heart rate, exercise, and medication. Use when: (1) recording daily health metrics like blood pressure and heart rate, (2) tracking exercise activities and workouts, (3) managing medication schedules and reminders, (4) generating health reports and trend analysis, (5) monitoring health goals and progress. 适用场景:记录血压心率等健康指标、追踪运动锻炼、管理用药提醒、生成健康报告和趋势分析、监测健康目标。
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 health-manager 技能。 若已安装,则直接安装 health-manager 技能。
# Health Manager - 健康管理 综合健康数据管理系统,记录和分析血压、心率、运动等健康数据。 ## 功能特性 ### 1. 数据模型与存储 - SQLite 数据库存储 - 血压记录表(收缩压、舒张压、心率、时间、备注) - 运动记录表(类型、时长、步数、消耗、时间) - 用药记录表(药物、剂量、时间) - 用户配置表 - 提醒配置表 ### 2. 数据录入功能 - CLI 命令录入血压数据 - CLI 命令录入运动数据 - CLI 命令录入用药记录 - 批量导入(CSV/JSON格式) ### 3. 数据分析 - 血压趋势计算(7天/30天平均) - 心率变化分析 - 运动统计(按类型、按日) - 异常值检测 ### 4. 智能提醒 - 用药提醒配置 - 血压监测提醒 - 运动提醒 ### 5. 报告生成 - 日报生成 - 周报生成 - 健康手册生成(Markdown) ## 安装 ```bash cd ~/.openclaw/workspace/skills/health-manager npm install npm run build ``` ## 使用方法 ### 血压管理 ```bash # 添加血压记录 health bp add 120 80 --heart-rate 72 --notes "早晨测量" # 查看血压记录 health bp list # 查看血压趋势 health bp trend 7 # 查看异常血压 health bp abnormal ``` ### 运动管理 ```bash # 添加运动记录 health ex add walking 30 --steps 5000 --calories 150 # 查看运动记录 health ex list # 查看运动统计 health ex stats 7 ``` ### 用药管理 ```bash # 添加用药记录 health med add "降压药" "1片" --unit "片" # 查看用药记录 health med list # 查看今日用药 health med today ``` ### 报告生成 ```bash # 生成日报 health report daily health report daily 2024-01-15 --output report.md # 生成周报 health report weekly health report weekly --output weekly.md # 生成健康手册 health report handbook --output handbook.md ``` ### 数据导入导出 ```bash # 导出数据 health data export blood_pressure --format csv --output bp.csv health data export-all ./backups # 导入数据 health data import blood_pressure data.csv health data import exercise data.json ``` ### 配置管理 ```bash # 查看配置 health config list # 设置配置项 health config set user.name "张三" # 初始化用户配置 health config init --name "张三" --age 50 --height 170 --weight 70 ``` ### 提醒管理 ```bash # 查看提醒 health reminder list # 初始化默认提醒 health...
# Health Manager > 智能健康数据管理助手,让健康管理更简单 [](LICENSE) [](https://github.com/your-repo/health-manager) --- ## 项目简介 **Health Manager** 是一个命令行健康数据管理工具,帮助你轻松记录、分析和理解自己的健康数据。无论是血压监测、心率跟踪,还是运动记录和用药管理,Health Manager 都能提供简洁高效的管理体验。 ### ✨ 核心价值 - **简化记录** - 一条命令完成数据录入,支持简写和快捷方式 - **智能分析** - 自动生成趋势分析,识别健康模式 - **个性化报告** - 生成专属健康手册,方便与医生分享 - **贴心提醒** - 用药、监测、运动提醒,养成健康习惯 --- ## 功能特性 ### 📊 健康数据记录 | 数据类型 | 支持字段 | 快捷命令 | |---------|---------|---------| | 血压 | 收缩压、舒张压、脉搏、体位、手臂 | `health-manager record bp` | | 心率 | 心率值、活动状态、设备来源 | `health-manager record hr` | | 运动 | 类型、时长、距离、卡路里、心率 | `health-manager record ex` | | 用药 | 药品名称、剂量、服药时间、备注 | `health-manager record med` | ### 📈 趋势分析 - **可视化图表** - 血压、心率、运动趋势一目了然 - **智能识别** - 自动识别异常数据和健康模式 - **对比分析** - 周期对比,了解健康变化趋势 - **目标追踪** - 对照个人健康目标,追踪完成情况 ### ⏰ 智能提醒 - **用药提醒** - 定时提醒服药,支持多次和周期设置 - **监测提醒** - 血压、心率测量提醒 - **运动提醒** - 运动计划提醒,养成运动习惯 - **异常预警** - 数据异常时主动提醒 ### 📖 健康手册 - **月度报告** - 汇总当月数据,分析健康状态 - **季度总结** - 更长周期的趋势分析 - **年度总览** - 全年健康数据全景展示 - **多种格式** - 支持 PDF、HTML、Markdown 输出 --- ## 快速开始 ### 安装 ```bash # 克隆仓库 git clone https://github.com/your-repo/health-manager.git cd health-manager # 安装依赖 npm install # 全局链接(可选) npm link ``` ### 初始化 ```bash # 初始化配置 health-manager init # 设置个人信息 health-manager config set user.name "张三" health-manager config set user.age 45 ``` ### 第一次记录 ```bash #...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
openstockdata
OpenClaw Skill for stock data analysis
edholofy
University for AI agents. 92 courses, 4400+ scenarios, any model via OpenRouter. Auto-training loops generate per-model SKILL.md documents. Works with Claude Code, OpenClaw, Cursor, Windsurf. No fine-tuning required.
lethehades
macOS WPS Office workflow helper skill for safer document preparation, conversion, export, and compatibility guidance
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
cecwxf
Run OpenAI Codex CLI from OpenClaw for coding tasks in a target project directory. Use when the user asks OpenClaw to use Codex for implementation, debugging, refactoring, review, or scripted coding workflows.