Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

only-baby-skill仅有婴儿技能

Agent Skill

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

总安装

48,263

周安装

2,052

GitHub Stars

1

下载量

16,908
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install only-baby-skill

简介

分析宫缩 JSON 和婴儿日志 JSON,以评估妈妈的临产/宫缩情况以及婴儿的喂养和尿布状态。当用户提供(或引用)宫缩_*.json 和 BabyLogs_*.json 文件并想要了解妈妈是否安全、宝宝是否健康,或要求宫缩、喂养或换尿布的摘要时使用。

SKILL.md

name
only-baby-skills
description
Analyze contraction JSON and baby log JSON to assess mum's labour/contraction situation and baby's feeding and diaper status. Use when the user provides (or references) contractions_*.json and babyLogs_*.json files and wants to know if mum is safe and baby is healthy, or asks for a summary of contractions, feeding, or diaper changes.

Analyze Mum & Baby Logs

Analyze two JSON data sources to produce a safety and health summary: mum's contraction situation and baby's milk feeding and diaper change status. Always end with a clear verdict and any recommendations.

When to Use

  • User provides or references contraction and baby log JSON files (e.g. contractions_*.json, babyLogs_*.json).
  • User asks whether mum is safe, baby is healthy, or for a summary of contractions / feeding / diapers.

Input Files

  1. Contractions JSON – Array of objects with id, startTime, endTime (ISO 8601).
  2. Baby logs JSON – Object with babyLog (array of entries) and birthday (ISO 8601). Each entry has id, timestamp, type, and type-specific details:

- type === "feeding": feedingDetails.volumeML (number, mL). - type === "diaper": diaperDetails.hasPee, diaperDetails.hasPoo (booleans). - type === "breastFeeding": breastFeedingDetails.durationSeconds (number).

See references/schemas-and-thresholds.md for exact schemas and health/safety thresholds.

Workflow

1. Load and parse both JSON files

  • Resolve file paths from user message or workspace (e.g. Downloads, project paths).
  • Parse contractions as an array; baby data as object with babyLog and birthday.

2. Analyze contractions

  • Sort contractions by startTime (ascending = chronological).
  • For each contraction compute duration = endTime - startTime (in seconds/minutes).
  • Compute interval = time from previous contraction's endTime to current startTime (minutes). For the first contraction, interval is N/A.
  • Summarize: count, time range of data, typical duration, typical interval, and any pattern (e.g. regular vs irregular).
  • Apply safety rules from references/schemas-and-thresholds.md (e.g. 5-1-1 rule, when to seek care).

3. Analyze baby logs

  • From birthday and latest log timestamp, compute baby's age (e.g. days or weeks).
  • Split babyLog by type: feeding, diaper, and breastFeeding.
  • Feeding (bottle/expressed): extract feedingDetails.volumeML and timestamp. Compute total volume and feed count over last 24 h (and optionally last 48 h). Compute average volume per feed, average volume per hour (total mL / hours in window), and approximate interval between feeds.
  • BreastFeeding: extract breastFeedingDetails.durationSeconds and timestamp. Compute session count and total duration (e.g. total minutes) over last 24 h (and optionally last 48 h). Optionally report average session length.
  • Diaper: count wet (diaperDetails.hasPee), dirty (diaperDetails.hasPoo), and both. Compute counts over last 24 h (and optionally last 48 h).
  • Compare to age-appropriate thresholds in references/schemas-and-thresholds.md (feeds/sessions per day, wet/dirty diaper expectations).

4. Produce report and verdict

Output:

  1. Mum – Contraction summary

Count, date range, duration/interval stats, pattern. Then: Mum safe? (Yes / Monitor / Seek care) with short reason and any next step (e.g. "Continue timing; if 5-1-1, go to hospital").

  1. Baby – Feeding & diaper summary

Age; bottle feeds in last 24 h (count + total mL); breastfeeding sessions in last 24 h (count + total duration if present); diapers in last 24 h (wet/dirty). Then: Baby healthy? (Yes / Monitor / Concern) with short reason and any recommendation (e.g. "Ensure 8+ feeds and 6+ wet diapers per day").

  1. Caveat

One line: this is not medical advice; when in doubt, contact a midwife, OB, or paediatrician.

Output format

Use clear headings and bullet points. Lead with the two verdicts (mum safe? baby healthy?) then expand with numbers and brief reasoning. Keep the report scannable and under one screen where possible.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.55%
按下载量换算13,281

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills