← All skills
Tencent SkillHub · Data Analysis

OnlyBaby

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
references/schemas-and-thresholds.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

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

Contractions JSON – Array of objects with id, startTime, endTime (ISO 8601). 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.

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: 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"). 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"). 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.

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/schemas-and-thresholds.md Docs