VitaVault iOS app integration - sync Apple Health data directly to your AI agent. Auto-setup webhook, token generation, and HTTPS exposure. Works with any iP...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install vitavault或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install vitavault⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/vitavault/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: vitavault description: VitaVault iOS app integration - sync Apple Health data directly to your AI agent. Auto-setup webhook, token generation, and HTTPS exposure. Works with any iPhone, no Mac required. license: Apache-2.0 compatibility: Any OpenClaw agent. Pairs with VitaVault iOS app (free on App Store). metadata: category: health platforms: ios author: BrandonS7 ---
Sync Apple Health data from VitaVault iOS app directly to your OpenClaw agent. No shared servers, no middleman - data flows phone to your agent only.
> No Mac required. Install VitaVault from TestFlight (beta) or the App Store.
When your user asks to set up VitaVault sync, follow these steps automatically. Don't ask the user to do the technical parts - handle it yourself and hand them the URL + token at the end.
# Generate a secure random token
python3 -c "import secrets; print(secrets.token_hex(32))" > ~/.config/vitavault/sync-token
mkdir -p ~/.config/vitavault
TOKEN=$(cat ~/.config/vitavault/sync-token)
echo "Token: $TOKEN"
VITAVAULT_SYNC_TOKEN="$TOKEN" nohup python3 scripts/webhook.py --host 0.0.0.0 --port 8787 > /tmp/vitavault-webhook.log 2>&1 &
The webhook listens for health data POSTs and saves snapshots to ~/vitavault/data/.
The VitaVault iOS app requires HTTPS (iOS App Transport Security). You MUST expose the webhook over HTTPS. Detect what's available and use the first option that works:
Option A: Tailscale Funnel (recommended if Tailscale is installed)
# Check if Tailscale is available
tailscale status 2>/dev/null
# If yes, expose via Funnel:
sudo tailscale funnel --bg --set-path /vitavault http://127.0.0.1:8787
# Your URL will be: https://<your-tailscale-hostname>/vitavault
tailscale funnel status # to see the URL
Option B: Cloudflare Tunnel (if cloudflared is installed)
cloudflared tunnel --url http://localhost:8787
# Gives you a temporary https://*.trycloudflare.com URL
# For permanent: set up a named tunnel with a custom domain
Option C: VPS with a domain + reverse proxy (nginx/caddy) If the host already has a domain with HTTPS (nginx, caddy, etc.), add a reverse proxy rule:
location /vitavault {
proxy_pass http://127.0.0.1:8787;
}
URL would be: https://yourdomain.com/vitavault
Option D: ngrok (quick testing)
ngrok http 8787
# Gives you a temporary https://*.ngrok-free.app URL
curl -s https://YOUR-URL/health
# Should return: {"ok": true}
Tell your user:
> Open VitaVault on your iPhone -> Settings -> OpenClaw > > Webhook URL: https://YOUR-URL > Sync Token: > > Paste both in and tap Connect.
That's it. Once connected, VitaVault auto-syncs health data every time the app opens.
The webhook should survive reboots. Create a systemd service:
cat > /tmp/vitavault-webhook.service << 'EOF'
[Unit]
Description=VitaVault Webhook Receiver
After=network.target
[Service]
Type=simple
User=$USER
Environment=VITAVAULT_SYNC_TOKEN=<TOKEN>
ExecStart=/usr/bin/python3 /path/to/skills/vitavault/scripts/webhook.py --host 127.0.0.1 --port 8787
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
EOF
# Adjust paths and token, then:
sudo cp /tmp/vitavault-webhook.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now vitavault-webhook
Once data is syncing, use these scripts to read it:
# Latest snapshot summary
python3 scripts/summary.py
# Raw latest JSON
python3 scripts/query.py latest
# Last 7 days
python3 scripts/query.py week
# Date range
python3 scripts/query.py range 2026-02-01 2026-02-28
Data is stored locally at ~/vitavault/data/ as timestamped JSON files.
Once synced, your agent can:
Users can also export data manually from VitaVault (no webhook needed):
Pre-formatted for AI analysis. Users export from VitaVault and paste directly.
Structured data with nested metrics, dates, and units.
One row per day, opens in Excel/Google Sheets.
When a user shares an export:
VitaVault sync data flows directly: iPhone -> your OpenClaw agent. No shared backend, no central relay, no third-party storage. Data is saved on your agent's host at ~/vitavault/data/ and nowhere else.
安装 Vitavault 后,可以对 AI 说这些话来触发它
Help me get started with Vitavault
Explains what Vitavault does, walks through the setup, and runs a quick demo based on your current project
Use Vitavault to vitaVault iOS app integration - sync Apple Health data directly to ...
Invokes Vitavault with the right parameters and returns the result directly in the conversation
What can I do with Vitavault in my developer & devops workflow?
Lists the top use cases for Vitavault, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/vitavault/ 目录(个人级,所有项目可用),或 .claude/skills/vitavault/(项目级)。重启 AI 客户端后,用 /vitavault 主动调用,或让 AI 根据上下文自动发现并使用。
Vitavault 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Vitavault 可免费安装使用。请查阅仓库了解许可证信息。
VitaVault iOS app integration - sync Apple Health data directly to your AI agent. Auto-setup webhook, token generation, and HTTPS exposure. Works with any iP...
Vitavault 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Vitavault
Identifies repetitive steps in your workflow and sets up Vitavault to handle them automatically