TopRank Skills

Home / Claw Skills / Git / GitHub / clawhealth-deployer
Official OpenClaw rules 54%

clawhealth-deployer

Deploy ClawHealth (Open Wearables) on this machine and connect it to OpenClaw; users then link data via the ClawHealth iOS app (our published SDK). Does not install OpenClaw—user must already have OpenClaw installed.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 clawhealth-deployer 技能。 若已安装,则直接安装 clawhealth-deployer 技能。

Overview

Skill Key
hengruizzzz/clawhealth-deployer
Author
hengruizzzz
Source Repo
openclaw/skills
Version
-
Source Path
skills/hengruizzzz/clawhealth-deployer
Latest Commit SHA
da67f6a4be604ccd47c5537bfaeac854dbcfb67d

Extracted Content

SKILL.md excerpt

# ClawHealth Deployer

Deploy **ClawHealth** (the Open Wearables backend) on this machine and wire it into OpenClaw’s MCP. Users **link their data** with the **ClawHealth iOS app** (built on our published SDK) so the assistant can answer “How did I sleep last week?” or “What were my steps?” using real health data.

**Prerequisite:** OpenClaw is already installed and running (e.g. via [openclaw.ai](https://openclaw.ai/) or ClawHub). This skill only deploys ClawHealth and connects it to your existing OpenClaw.

## What this skill does

1. Clones the ClawHealth (Open Wearables) repo to `~/ClawHealth` (or `$CLAWHEALTH_INSTALL_DIR`) if not already present.
2. Runs `make deploy-openclaw`: starts Docker (PostgreSQL, Redis, API), runs migrations, seeds sample data, creates an API key, and writes MCP config.
3. Merges the **open-wearables** MCP server into your OpenClaw config (`~/.clawdbot/clawdbot.json5`) so the gateway can talk to ClawHealth.
4. Reminds you to restart the gateway. Users then **link data** by installing the **ClawHealth iOS app** (our published SDK) and syncing HealthKit to this backend—then OpenClaw can query their real data.

## When to use

- User says they want to “deploy ClawHealth”, “install ClawHealth”, “connect health data to OpenClaw”, or “set up Open Wearables for OpenClaw”.
- User already has OpenClaw and wants their assistant to query sleep, activity, or workout data.

## How to run (for the agent)

1. **Check environment:** Ensure `docker`, `git`, `make`, and `node` are available. If Docker isn’t running, prompt the user to start it.
2. **Run the install script** from this skill’s directory:
   ```bash
   bash scripts/install.sh
   ```
   Optional env vars:
   - `CLAWHEALTH_INSTALL_DIR` — where to clone/use the repo (default: `~/ClawHealth`).
   - `CLAWHEALTH_REPO_URL` — repo URL (default: `https://github.com/the-momentum/open-wearables.git`).
3. **Restart OpenClaw gateway** so it loads the new MCP server:
   ```bash
   clawdbot gateway restar...

README excerpt

# ClawHealth Deployer (ClawHub Skill)

This folder is a [ClawHub](https://clawhub.ai/) skill. It teaches OpenClaw how to deploy ClawHealth on the user’s machine and connect it via MCP so the assistant can query health data in chat.

## Install this skill (for OpenClaw users)

If you use ClawHub:

```bash
clawhub install clawhealth-deployer
```

(or search for “ClawHealth” / “health data” on [clawhub.ai](https://clawhub.ai/) and install from there).

Then in OpenClaw, say e.g. “Deploy ClawHealth and connect it to OpenClaw” and the agent will run the install script and merge MCP config.

## Publish this skill (for maintainers)

From this folder:

```bash
clawhub publish . --slug clawhealth-deployer --name "ClawHealth Deployer" --version 1.0.0 --tags latest
```

(Requires `clawhub login` first.)

## Contents

- **SKILL.md** — Skill description and instructions for the agent.
- **scripts/install.sh** — Clones repo (if needed), runs `make deploy-openclaw`, merges MCP into `~/.clawdbot/clawdbot.json5`.
- **scripts/merge-mcp.js** — Node script to merge the open-wearables MCP server into the config file.
- **package.json** — Dependency for `merge-mcp.js` (json5).

Related Claw Skills