# Send OnlyBaby to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "only-baby-skill",
    "name": "OnlyBaby",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/jacklandrin/only-baby-skill",
    "canonicalUrl": "https://clawhub.ai/jacklandrin/only-baby-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/only-baby-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=only-baby-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/schemas-and-thresholds.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/only-baby-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/only-baby-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/only-baby-skill",
    "agentUrl": "https://openagent3.xyz/skills/only-baby-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/only-baby-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/only-baby-skill/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jacklandrin
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/only-baby-skill)
- [Send to Agent page](https://openagent3.xyz/skills/only-baby-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/only-baby-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/only-baby-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/only-baby-skill)