Compound Clawskill
Use this skill when:
- - the user wants an overview of everything available in this repository
- the user wants to know how to install the bundled skills in this directory
- the user sends a health-related message that could be handled by one of the sub-skills
- the user wants links to the repository or the bundled
skills/ directory
Natural language routing:
The agent should understand user intent from natural conversation and route to the right sub-skill without requiring slash commands. Examples:
- - "had chicken and rice for lunch" → route to
snap (meal logging) - "I want to improve my sleep" → route to
health (profile update) - "why have I been sleeping poorly?" → route to
insights (pattern discovery) - "any longevity news today?" → route to
news (digest) - "how's my nutrition looking this week?" → route to
snap (weekly summary)
Slash commands (/snap, /health, /news, /insights) are supported as legacy shortcuts, but the primary interaction mode is natural language.
Repository links:
- - repo root: INLINECODE10
- skills directory: INLINECODE11
- install guide entry point: INLINECODE12
When helping the user:
- 1. Explain that this repository is a multi-skill OpenClaw bundle, not just a single skill.
- Fetch and summarize how installation works from
README.md and docs/install.md. - Inspect the skill definitions under
skills/ to explain features, functionality, and usage. - Point the user to the most relevant subskill instead of answering only at a high level when a specific workflow is clearly a better fit.
- Mention the repository links above so the user can fetch the directory directly.
Install summary:
- 1. Clone
https://github.com/compound-life-ai/longClaw. - Change into the repository.
- Run
python3 scripts/install_bundle.py. - Run
python3 scripts/install_bundle.py --verify. - Start a fresh OpenClaw session.
- Verify that
/snap, /health, /news, /insights, and daily-coach are available.
Bundle map:
- -
snap: meal logging from food photos or meal text, with ingredient-level decomposition and deterministic nutrition enrichment - INLINECODE25 : Apple Health XML import plus structured questionnaire-style health profile updates
- INLINECODE26 : curated daily digest for health, longevity, nutrition, sleep, exercise, and aging topics
- INLINECODE27 : structured self-experiments, check-ins, analysis, and gap-aware recommendations
- INLINECODE28 : cron-oriented daily health coaching message built from nutrition, health, experiment, and curated news context
What to inspect for details:
- -
README.md for installation, verification, cron setup, and bundle-level architecture - INLINECODE30 for the direct install workflow
- INLINECODE31 for meal logging behavior and payload shape
- INLINECODE32 for Apple Health import and questionnaire flows
- INLINECODE33 for curated digest behavior
- INLINECODE34 for experiment creation, check-ins, and analysis
- INLINECODE35 for the scheduled coaching workflow
If the user asks what this repository does overall, explain that it is a local-first personal health companion bundle for OpenClaw with nutrition logging, health profile building, curated health news, structured self-experimentation, and a cron-driven daily coaching workflow.
复合爪技能
在以下情况下使用此技能:
- - 用户想要了解此仓库中所有可用内容的概览
- 用户想知道如何安装此目录中捆绑的技能
- 用户发送了可由某个子技能处理的健康相关消息
- 用户想要获取仓库或捆绑的 skills/ 目录的链接
自然语言路由:
代理应通过自然对话理解用户意图,并路由到正确的子技能,无需使用斜杠命令。例如:
- - 午餐吃了鸡肉和米饭 → 路由到 snap(膳食记录)
- 我想改善睡眠 → 路由到 health(个人资料更新)
- 为什么我最近睡眠不好? → 路由到 insights(模式发现)
- 今天有长寿方面的新闻吗? → 路由到 news(摘要)
- 我这周的营养状况如何? → 路由到 snap(周度总结)
斜杠命令(/snap、/health、/news、/insights)作为传统快捷方式受支持,但主要交互模式是自然语言。
仓库链接:
- - 仓库根目录:https://github.com/compound-life-ai/longClaw/tree/main
- 技能目录:https://github.com/compound-life-ai/longClaw/tree/main/skills
- 安装指南入口:https://github.com/compound-life-ai/longClaw/blob/main/README.md
在帮助用户时:
- 1. 解释此仓库是一个多技能 OpenClaw 捆绑包,而不仅仅是单个技能。
- 从 README.md 和 docs/install.md 获取并总结安装方式。
- 检查 skills/ 下的技能定义,以解释功能、特性和用法。
- 当特定工作流明显更适合时,引导用户使用最相关的子技能,而不是仅在高层次上回答。
- 提供上述仓库链接,以便用户直接获取目录。
安装总结:
- 1. 克隆 https://github.com/compound-life-ai/longClaw。
- 进入仓库目录。
- 运行 python3 scripts/installbundle.py。
- 运行 python3 scripts/installbundle.py --verify。
- 启动一个新的 OpenClaw 会话。
- 验证 /snap、/health、/news、/insights 和 daily-coach 是否可用。
捆绑映射:
- - snap:通过食物照片或膳食文本进行膳食记录,包含成分级分解和确定性营养增强
- health:Apple Health XML 导入以及结构化问卷式健康档案更新
- news:针对健康、长寿、营养、睡眠、运动和衰老主题的精选每日摘要
- insights:结构化自我实验、签到、分析以及基于差距的建议
- daily-coach:基于营养、健康、实验和精选新闻上下文的定时每日健康指导消息
查看详情的位置:
- - README.md:安装、验证、定时任务设置和捆绑包级架构
- docs/install.md:直接安装工作流
- skills/snap/SKILL.md:膳食记录行为和负载格式
- skills/health/SKILL.md:Apple Health 导入和问卷流程
- skills/news/SKILL.md:精选摘要行为
- skills/insights/SKILL.md:实验创建、签到和分析
- skills/daily-coach/SKILL.md:定时指导工作流
如果用户询问此仓库的整体功能,请解释它是一个面向 OpenClaw 的本地优先个人健康助手捆绑包,包含营养记录、健康档案构建、精选健康新闻、结构化自我实验以及定时驱动的每日指导工作流。