{
  "schemaVersion": "1.0",
  "item": {
    "slug": "who-growth-charts",
    "name": "WHO Growth Charts",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/odrobnik/who-growth-charts",
    "canonicalUrl": "https://clawhub.ai/odrobnik/who-growth-charts",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/who-growth-charts",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=who-growth-charts",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/growth_chart.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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/who-growth-charts"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/who-growth-charts",
    "agentPageUrl": "https://openagent3.xyz/skills/who-growth-charts/agent",
    "manifestUrl": "https://openagent3.xyz/skills/who-growth-charts/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/who-growth-charts/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Features",
        "body": "Height-for-age (0-19 years)\nWeight-for-age (0-10 years)\nBMI-for-age (0-19 years)\nSupports boys and girls\nDownloads WHO data on demand from cdn.who.int (cached locally)\nOverlays child's actual measurements with trend line"
      },
      {
        "title": "Examples",
        "body": "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\">"
      },
      {
        "title": "Prerequisites",
        "body": "Install Python dependencies:\n\npip install pandas matplotlib scipy openpyxl"
      },
      {
        "title": "Basic Chart Generation",
        "body": "python3 ./scripts/growth_chart.py \"Child Name\" \"DD.MM.YYYY\" --sex F --type all\n\nArguments:\n\nname: Child's name (used in chart title)\nbirthdate: Date of birth in DD.MM.YYYY format\n--sex / -s: F (female) or M (male) — default: F\n--type / -t: height, weight, bmi, or all — default: all\n--data / -d: JSON file with measurement data\n--output / -o: Output directory for charts"
      },
      {
        "title": "With Measurement Data",
        "body": "Create a JSON file with height/weight measurements (heights in meters, weights in kg):\n\n{\n  \"heights\": [ [\"2024-01-15T10:00:00\", 1.05] ],\n  \"weights\": [ [\"2024-01-15T10:00:00\", 17.5] ]\n}\n\npython3 ./scripts/growth_chart.py \"Emma\" \"06.07.2016\" --sex F --data emma_data.json --type all"
      },
      {
        "title": "Integration with Withings",
        "body": "Combine with withings-family skill to fetch weight data automatically:\n\n# Get Withings weight data (assuming withings-family skill is installed)\npython3 ../withings-family/scripts/withings.py emma body > /tmp/withings.json\n\n# Parse and generate charts\n# (The growth chart script handles Withings JSON format if implemented, otherwise transform it)"
      },
      {
        "title": "Output",
        "body": "By default, charts and cache are written to:\n\n<workspace>/who-growth-charts/\n<workspace>/who-growth-charts/cache/\n\nWhere <workspace> is the folder that contains your skills/ directory (auto-detected from CWD or script location)."
      }
    ],
    "body": "Generate WHO Child Growth Standards charts with percentile curves and child data overlay.\n\nFeatures\nHeight-for-age (0-19 years)\nWeight-for-age (0-10 years)\nBMI-for-age (0-19 years)\nSupports boys and girls\nDownloads WHO data on demand from cdn.who.int (cached locally)\nOverlays child's actual measurements with trend line\nExamples\nHeight\tWeight\tBMI\n<img src=\"examples/anna_height.png\" width=\"250\">\t<img src=\"examples/anna_weight.png\" width=\"250\">\t<img src=\"examples/anna_bmi.png\" width=\"250\">\nPrerequisites\n\nInstall Python dependencies:\n\npip install pandas matplotlib scipy openpyxl\n\nUsage\nBasic Chart Generation\npython3 ./scripts/growth_chart.py \"Child Name\" \"DD.MM.YYYY\" --sex F --type all\n\n\nArguments:\n\nname: Child's name (used in chart title)\nbirthdate: Date of birth in DD.MM.YYYY format\n--sex / -s: F (female) or M (male) — default: F\n--type / -t: height, weight, bmi, or all — default: all\n--data / -d: JSON file with measurement data\n--output / -o: Output directory for charts\nWith Measurement Data\n\nCreate a JSON file with height/weight measurements (heights in meters, weights in kg):\n\n{\n  \"heights\": [ [\"2024-01-15T10:00:00\", 1.05] ],\n  \"weights\": [ [\"2024-01-15T10:00:00\", 17.5] ]\n}\n\npython3 ./scripts/growth_chart.py \"Emma\" \"06.07.2016\" --sex F --data emma_data.json --type all\n\nIntegration with Withings\n\nCombine with withings-family skill to fetch weight data automatically:\n\n# Get Withings weight data (assuming withings-family skill is installed)\npython3 ../withings-family/scripts/withings.py emma body > /tmp/withings.json\n\n# Parse and generate charts\n# (The growth chart script handles Withings JSON format if implemented, otherwise transform it)\n\nOutput\n\nBy default, charts and cache are written to:\n\n<workspace>/who-growth-charts/\n<workspace>/who-growth-charts/cache/\n\nWhere <workspace> is the folder that contains your skills/ directory (auto-detected from CWD or script location)."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/odrobnik/who-growth-charts",
    "publisherUrl": "https://clawhub.ai/odrobnik/who-growth-charts",
    "owner": "odrobnik",
    "version": "1.2.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/who-growth-charts",
    "downloadUrl": "https://openagent3.xyz/downloads/who-growth-charts",
    "agentUrl": "https://openagent3.xyz/skills/who-growth-charts/agent",
    "manifestUrl": "https://openagent3.xyz/skills/who-growth-charts/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/who-growth-charts/agent.md"
  }
}