ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

huckleberry

Track baby sleep, feeding, diapers, and growth via Huckleberry app API. Use for logging baby activities through natural language.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/aaronn/openclaw-huckleberry-skill
Or

Huckleberry Baby Tracker

Track baby activities (sleep, feeding, diapers, growth) via the Huckleberry app's Firebase backend.

Setup

  1. Install the API:

    # Install from GitHub (required for bottle feeding support until next PyPI release)
    pip install git+https://github.com/Woyken/py-huckleberry-api.git
    # or with uv:
    uv pip install git+https://github.com/Woyken/py-huckleberry-api.git
    
  2. Configure credentials (choose one):

    • Environment variables:
      export HUCKLEBERRY_EMAIL="[email protected]"
      export HUCKLEBERRY_PASSWORD="your-password"
      export HUCKLEBERRY_TIMEZONE="America/Los_Angeles"  # optional
      
    • Config file at ~/.config/huckleberry/credentials.json:
      {
        "email": "[email protected]",
        "password": "your-password",
        "timezone": "America/Los_Angeles"
      }
      

CLI Usage

The CLI is at ~/clawd/skills/huckleberry/scripts/hb.py

# List children
python3 ~/clawd/skills/huckleberry/scripts/hb.py children

# Sleep tracking
python3 ~/clawd/skills/huckleberry/scripts/hb.py sleep-start
python3 ~/clawd/skills/huckleberry/scripts/hb.py sleep-pause
python3 ~/clawd/skills/huckleberry/scripts/hb.py sleep-resume
python3 ~/clawd/skills/huckleberry/scripts/hb.py sleep-complete
python3 ~/clawd/skills/huckleberry/scripts/hb.py sleep-cancel

# Breastfeeding
python3 ~/clawd/skills/huckleberry/scripts/hb.py feed-start --side left
python3 ~/clawd/skills/huckleberry/scripts/hb.py feed-switch
python3 ~/clawd/skills/huckleberry/scripts/hb.py feed-pause
python3 ~/clawd/skills/huckleberry/scripts/hb.py feed-resume --side right
python3 ~/clawd/skills/huckleberry/scripts/hb.py feed-complete
python3 ~/clawd/skills/huckleberry/scripts/hb.py feed-cancel

# Bottle feeding
python3 ~/clawd/skills/huckleberry/scripts/hb.py bottle 120 --type "Formula" --units ml

# Diaper
python3 ~/clawd/skills/huckleberry/scripts/hb.py diaper both --pee-amount medium --poo-amount big --color yellow --consistency loose

# Growth
python3 ~/clawd/skills/huckleberry/scripts/hb.py growth --weight 5.2 --height 55 --head 38 --units metric
python3 ~/clawd/skills/huckleberry/scripts/hb.py growth-get

# History
python3 ~/clawd/skills/huckleberry/scripts/hb.py history --date 2026-01-27
python3 ~/clawd/skills/huckleberry/scripts/hb.py history --days 7 --type sleep --type feed
python3 ~/clawd/skills/huckleberry/scripts/hb.py history --json

Complete Parameter Reference

Sleep Commands

CommandParametersDescription
sleep-startStart a new sleep session (timer begins)
sleep-pausePause the current sleep session
sleep-resumeResume a paused sleep session
sleep-complete--notesEnd sleep and save to history
sleep-cancelCancel without saving to history

Breastfeeding Commands

Metadata

Author@aaronn
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-aaronn-openclaw-huckleberry-skill": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.