← All skills
Tencent SkillHub · Data Analysis

WHO Growth Charts

Generate WHO child growth charts (height, weight, BMI) with percentile curves. Downloads official WHO reference data on demand. Use when users ask about child growth tracking, percentiles, or want growth charts for their kids.

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

Generate WHO child growth charts (height, weight, BMI) with percentile curves. Downloads official WHO reference data on demand. Use when users ask about child growth tracking, percentiles, or want growth charts for their kids.

⬇ 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
SKILL.md, scripts/growth_chart.py

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.2.3

Documentation

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

Features

Height-for-age (0-19 years) Weight-for-age (0-10 years) BMI-for-age (0-19 years) Supports boys and girls Downloads WHO data on demand from cdn.who.int (cached locally) Overlays child's actual measurements with trend line

Examples

HeightWeightBMI<img src="examples/anna_height.png" width="250"><img src="examples/anna_weight.png" width="250"><img src="examples/anna_bmi.png" width="250">

Prerequisites

Install Python dependencies: pip install pandas matplotlib scipy openpyxl

Basic Chart Generation

python3 ./scripts/growth_chart.py "Child Name" "DD.MM.YYYY" --sex F --type all Arguments: name: Child's name (used in chart title) birthdate: Date of birth in DD.MM.YYYY format --sex / -s: F (female) or M (male) — default: F --type / -t: height, weight, bmi, or all — default: all --data / -d: JSON file with measurement data --output / -o: Output directory for charts

With Measurement Data

Create a JSON file with height/weight measurements (heights in meters, weights in kg): { "heights": [ ["2024-01-15T10:00:00", 1.05] ], "weights": [ ["2024-01-15T10:00:00", 17.5] ] } python3 ./scripts/growth_chart.py "Emma" "06.07.2016" --sex F --data emma_data.json --type all

Integration with Withings

Combine with withings-family skill to fetch weight data automatically: # Get Withings weight data (assuming withings-family skill is installed) python3 ../withings-family/scripts/withings.py emma body > /tmp/withings.json # Parse and generate charts # (The growth chart script handles Withings JSON format if implemented, otherwise transform it)

Output

By default, charts and cache are written to: <workspace>/who-growth-charts/ <workspace>/who-growth-charts/cache/ Where <workspace> is the folder that contains your skills/ directory (auto-detected from CWD or script location).

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
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/growth_chart.py Scripts