Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

bestyoubestyou 开发

Agent Skill

bestyou 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,318

周安装

173

GitHub Stars

公开资料未说明

下载量

1,398
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bestyou(bestyou 开发)
来源仓库:https://github.com/kentsteffen/bestyou
安装命令:
openclaw skills install bestyou
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install bestyou

简介

连接 BestYou 健康智能设备数据。

  • 协调健身、营养与睡眠形成自适应日程。
  • 通过 MCP 协议集成至 OpenClaw 生态。
  • 安装命令:openclaw skills install bestyou。
  • 需授权访问设备数据以启用完整功能。bestyou 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
bestyou
description
>
homepage
https://bestyou.ai/openclaw-setup
metadata
openclaw
requires
env
primaryEnv
BESTYOU_API_KEY

BestYou Health Intelligence

BestYou brings real health data from your wearables into your AI agent through MCP. It pulls fitness, nutrition, sleep, and recovery signals from Apple Watch, Oura Ring, CGM sensors, and HealthKit, then coordinates them through 19 specialized on-device agents. The result is an adaptive daily action plan that responds to your actual readiness, not generic templates. Query your readiness score, generate workouts matched to your recovery state, analyze meals against your macro targets, and manage your plan through natural conversation.

Privacy note: No health data leaves your device without your explicit consent. BestYou shares processed insights only. Raw HealthKit readings stay on the iPhone. See references/security.md for details.

What Makes This Different

Most health integrations export static data or generate generic prompts. BestYou connects to a live API backed by 19 coordinated AI agents running on-device.

  • Cross-domain coordination. Sleep quality affects training intensity, which affects nutritional needs, which affects recovery. BestYou's agents talk to each other. A bad night of sleep triggers adjustments across your workout, nutrition targets, and recovery priorities automatically.
  • Real wearable data, not manual logging. Heart rate, HRV, sleep stages, activity rings, glucose trends: all pulled from HealthKit. No typing in numbers.
  • Adaptive action plans. Your daily plan is built from your actual readiness, schedule, and recovery state. It adapts as conditions change.
  • 19 specialized agents. Each health domain (sleep, cardiac, nutrition, fitness, stress, hydration, body composition, and more) has a dedicated agent. They coordinate through a readiness engine that produces a single, actionable plan.
  • Metabolic health aware. Tracks glucose patterns, metabolic flexibility indicators, and coordinates nutrition with training for metabolic optimization. Supports GLP-1 users with protein safety floors and resistance training compliance.

Setup

1. Get your API key

Open the BestYou iOS app: More → Connected Apps → OpenClaw → Generate Key

Your key looks like by_mcp_live_.... Full walkthrough: bestyou.ai/openclaw-setup

2. Set the environment variable

export BESTYOU_API_KEY="YOUR_KEY_HERE"

3. Connect via mcporter

If you don't have mcporter (OpenClaw's MCP client) installed yet, you can install it with:

npm install -g mcporter

Add BestYou as an MCP server:

mcporter config add bestyou \
  --url https://mcp.bestyou.ai/mcp \
  --header "Authorization: Bearer $BESTYOU_API_KEY"

Verify with mcporter call bestyou.get_account_link_status.

For a more detailed setup walkthrough, see references/setup.md.


Agent Behavior

Session Start

Always call get_account_link_status first. If the account is not linked or the subscription is inactive, tell the user what to fix (re-link in BestYou app, check subscription) and stop. Do not call other tools until status is confirmed.

Daily Coaching Flow

  1. Call get_daily_briefing with today's date to pull the narrative, readiness score, and recommended actions.
  2. Summarize in 2-3 sentences: how the user is doing, what stands out.
  3. Recommend 1-2 concrete actions from the briefing.

Plan Management

  • Call get_todays_action_plan to see scheduled blocks (workouts, meals, recovery) for the day.
  • Present blocks grouped by time period (morning, afternoon, evening).
  • When the user asks about adjustments, show them what's on the plan and help them prioritize.

Fitness

  • generate_workout: Ask for type (strength, mobility, cardio, mixed, hiit), duration, available equipment, and experience level before generating. Optional: body parts, target areas, goal, injuries, warmup/cooldown preferences.

Nutrition

  • analyze_meal_text: Accept a text description of what the user ate. Optionally include a timestamp. Returns macro breakdown, components, and insights on how the meal fits the day's targets.

Progress and Trends

  • get_progress_snapshot: Shows domain-level scores (sleep, cardiac, fitness, nutrition, hydration, glucose, etc.), top insights, recommendations, and cross-domain patterns.
  • get_weekly_summary: End-of-week review with trends, achievements, and next week focus areas.

Style

Direct, calm, practical. You're a coach, not a cheerleader. State what matters, skip the filler.

Safety

  • Never expose internal IDs, suggestion IDs, session IDs, tokens, or raw auth values in responses.
  • Never share raw health data outside the conversation. Only surface processed insights.
  • If a tool returns an error, explain the issue plainly without leaking technical details.

Tool Reference

ToolWhen to useRequired parameters
get_account_link_statusFirst call every session. Confirms link, subscription, scopes.(none)
get_daily_briefingUser asks "how am I doing today?" or starts a health conversation.date (YYYY-MM-DD)
get_todays_action_planUser wants to see today's plan or scheduled blocks.date (optional)
get_progress_snapshotUser asks "how am I doing overall?" or wants domain scores.date (YYYY-MM-DD)
get_weekly_summaryEnd-of-week review or "how was my week?"weekEndDate (optional)
generate_workoutUser wants a new workout built from scratch.type, duration, equipment, experienceLevel
analyze_meal_textUser describes food they ate for nutritional analysis.description

generate_workout parameters

Required: type (strength/mobility/cardio/mixed/hiit), duration (minutes), equipment (array of strings), experienceLevel (Beginner/Intermediate/Advanced)

Optional: bodyParts, targetAreas, goal, injuries, includeWarmup, warmupStyle (dynamic/activation), warmupDuration, includeCooldown, cooldownStyle (static/foam_rolling/combined), cooldownDuration


Example Conversations

Morning check-in

User: "What's my day look like?" Agent: Call get_account_link_status, then get_daily_briefing with today's date. Summarize readiness, highlight top priorities, suggest 1-2 actions.

Logging a meal

User: "Just had a chicken burrito bowl with brown rice and guac" Agent: Call analyze_meal_text with description="chicken burrito bowl with brown rice and guacamole". Report macros and how it fits the day's targets.

Progress check

User: "How am I doing overall?" Agent: Call get_progress_snapshot with today's date. Highlight strongest and weakest domains, surface top recommendation.

Weekly review

User: "How was my week?" Agent: Call get_weekly_summary. Highlight trends (improving/declining domains), top achievement, and next week's focus areas.

Quick workout

User: "Give me a 20-minute bodyweight workout focused on strength" Agent: Call generate_workout with type="strength", duration=20, equipment=["bodyweight"], experienceLevel="Intermediate". Present the workout clearly with exercises, sets, reps, and rest periods.

Notes

  • API key source: Generated in the BestYou iOS app, not a web dashboard.
  • Free trial: Use code OPENCLAW1MO for one free month of BestYou Pro.
  • Privacy: BestYou shares processed insights only. Raw health data (HealthKit, sensor data) never leaves the device. No data is stored locally by this skill.
  • Playground: Test your connection at mcp.bestyou.ai/openclaw before wiring into your agent.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.74%
按下载量换算1,129

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills