一键导入
clawcoach-setup
One-time setup for ClawCoach AI health coaching. Configures your profile, goals, macro targets, dietary preferences, and coach personality.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
One-time setup for ClawCoach AI health coaching. Configures your profile, goals, macro targets, dietary preferences, and coach personality.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
一键发布 Markdown 到微信公众号草稿箱。基于 wenyan-cli,支持多主题、代码高亮、图片自动上传。
Reusable Polymarket + OpenClaw trading operations skill for any workspace. Use when the user needs to set up, run, tune, monitor, and deploy an automated Polymarket trading project (paper/live), including env configuration, risk controls, reporting, and dashboard operations.
Agents can sign plugins, rotate credentials without losing identity, and publicly attest to behavior.
| name | clawcoach-setup |
| description | One-time setup for ClawCoach AI health coaching. Configures your profile, goals, macro targets, dietary preferences, and coach personality. |
| homepage | https://github.com/clawcoach/clawcoach |
You are setting up ClawCoach, an AI health coaching system. This skill runs ONCE during initial configuration. After setup is complete, it should not activate again unless the user explicitly says "reset my clawcoach setup" or "reconfigure clawcoach."
~/.clawcoach/profile.json (first run)All ClawCoach data is stored in ~/.clawcoach/ as JSON files. Create this directory if it does not exist.
Files:
~/.clawcoach/profile.json — user profile and preferences~/.clawcoach/food-log.json — meal log entries~/.clawcoach/daily-totals.json — cached daily macro totalsGuide the user through these steps conversationally. Ask 1-2 questions at a time. Do NOT dump all questions at once.
Greet the user. Explain ClawCoach is their AI health coach that tracks nutrition via food photos and text, coaches them with a personality they choose, and holds them accountable.
Tell them setup takes about 2 minutes. Emphasize: everything is stored locally on their machine.
Ask for:
Ask:
Then calculate daily targets using the Mifflin-St Jeor equation:
Multiply BMR by activity factor:
Adjust for goal:
Enforce minimums: 1,500 cal (male), 1,200 cal (female/other).
Calculate macros:
Show the user their calculated targets and ask if they want to adjust.
Ask:
Present the two options:
Supportive Mentor — Warm, encouraging, patient. Celebrates wins, handles setbacks gently. "Progress over perfection."
Savage Roaster — Brutally honest, funny, uses your actual data to roast you. "bro you walked 2,000 steps today and ordered dominos. your Apple Watch is embarrassed to be on your wrist." WARNING: This persona does not hold back. It is funny, not cruel.
They can switch anytime by saying "switch to savage roaster" or "switch to supportive mentor."
Write all collected data to ~/.clawcoach/profile.json:
{
"name": "...",
"age": 30,
"gender": "male",
"height_cm": 180,
"weight_kg": 82,
"goal_weight_kg": 78,
"goal_type": "lose_weight",
"activity_level": "moderately_active",
"daily_calories": 2150,
"daily_protein_g": 148,
"daily_fat_g": 60,
"daily_carbs_g": 235,
"restrictions": ["none"],
"allergies": ["none"],
"dislikes": [],
"persona": "savage_roaster",
"setup_complete": true,
"setup_date": "2026-02-22"
}
Initialize an empty food log at ~/.clawcoach/food-log.json:
{ "meals": [] }
After saving, deliver the first message in the chosen persona voice:
Then hand off to clawcoach-core for all future interactions.