Track baby sleep, feeding, diapers, and growth via Huckleberry app API. Use for logging baby activities through natural language.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install openclaw-huckleberry-skill或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install openclaw-huckleberry-skill⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/openclaw-huckleberry-skill/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: huckleberry description: Track baby sleep, feeding, diapers, and growth via Huckleberry app API. Use for logging baby activities through natural language. homepage: https://github.com/aaronn/openclaw-huckleberry-skill metadata: clawdbot: emoji: "👶" requires: bins: ["python3"] packages: ["huckleberry-api"] install: - id: pip-huckleberry kind: pip package: huckleberry-api label: Install huckleberry-api (pip) ---
Track baby activities (sleep, feeding, diapers, growth) via the Huckleberry app's Firebase backend.
```bash # 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 ```
- Environment variables: ```bash export HUCKLEBERRY_EMAIL="[email protected]" export HUCKLEBERRY_PASSWORD="your-password" export HUCKLEBERRY_TIMEZONE="America/Los_Angeles" # optional ``` - Config file at ~/.config/huckleberry/credentials.json: ```json { "email": "[email protected]", "password": "your-password", "timezone": "America/Los_Angeles" } ```
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
| Command | Parameters | Description | |---------|------------|-------------| | sleep-start | — | Start a new sleep session (timer begins) | | sleep-pause | — | Pause the current sleep session | | sleep-resume | — | Resume a paused sleep session | | sleep-complete | --notes | End sleep and save to history | | sleep-cancel | — | Cancel without saving to history |
| Command | Parameters | Description | |---------|-----------|-------------| | feed-start | --side {left,right} (default: left) | Start nursing session | | feed-pause | — | Pause session, accumulate duration | | feed-resume | --side {left,right} (optional) | Resume on specified or last side | | feed-switch | — | Switch to other side (auto-resumes if paused) | | feed-complete | --notes | End session and save to history | | feed-cancel | — | Cancel without saving |
bottle <amount> [options]
| Parameter | Values | Required | Default | |-----------|--------|----------|---------| | amount | Any number | Yes | — | | --type / -t | "Breast Milk", "Formula", "Mixed" | No | "Formula" | | --units / -u | ml, oz | No | ml | | --notes / -n | Any text | No | — |
diaper <mode> [options]
| Parameter | Values | Required | Default | |-----------|--------|----------|---------| | mode | pee, poo, both, dry | Yes | — | | --pee-amount | little, medium, big | No | — | | --poo-amount | little, medium, big | No | — | | --color | yellow, brown, black, green, red, gray | No | — | | --consistency | solid, loose, runny, mucousy, hard, pebbles, diarrhea | No | — | | --rash | (flag) | No | false | | --notes | Any text | No | — |
growth [options]
growth-get
| Parameter | Values | Required | Notes | |-----------|--------|----------|-------| | --weight / -w | Number | At least one | kg (metric) or lbs (imperial) | | --height / -l | Number | measurement | cm (metric) or inches (imperial) | | --head | Number | required | cm (metric) or inches (imperial) | | --units / -u | metric, imperial | No | Default: metric | | --notes / -n | Any text | No | — |
history [options]
| Parameter | Values | Required | Default | |-----------|--------|----------|---------| | --date / -d | YYYY-MM-DD | No | Today | | --days | Number | No | 1 | | --type / -t | sleep, feed, diaper, health | No | All types |
Use --type multiple times to filter: --type sleep --type feed
Always include AI attribution when logging entries:
Creating new entries:
--notes "Created via AI"--notes "user's note | Created via AI"Editing existing entries:
--notes "Updated via AI" | Updated via AI to existing notesThis creates a paper trail for AI-assisted entries.
When a user request is sparse, ask for clarification before logging. Here's when:
If user says just "diaper change" or "poop":
Example follow-up: > "Got it! Was it pee, poo, or both? Any details to note (color, consistency, amount)?"
If user says "bottle" without amount:
Example follow-up: > "How much was the bottle? And was it formula, breast milk, or mixed?"
If user says "log weight" without value:
These are typically clear commands, but clarify if ambiguous:
...
安装 Huckleberry 后,可以对 AI 说这些话来触发它
Help me get started with Huckleberry
Explains what Huckleberry does, walks through the setup, and runs a quick demo based on your current project
Use Huckleberry to track baby sleep, feeding, diapers, and growth via Huckleberry app API
Invokes Huckleberry with the right parameters and returns the result directly in the conversation
What can I do with Huckleberry in my ai agent & automation workflow?
Lists the top use cases for Huckleberry, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/openclaw-huckleberry-skill/ 目录(个人级,所有项目可用),或 .claude/skills/openclaw-huckleberry-skill/(项目级)。重启 AI 客户端后,用 /openclaw-huckleberry-skill 主动调用,或让 AI 根据上下文自动发现并使用。
Huckleberry 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Huckleberry 可免费安装使用。请查阅仓库了解许可证信息。
Track baby sleep, feeding, diapers, and growth via Huckleberry app API. Use for logging baby activities through natural language.
Huckleberry 属于「AI Agent & Automation」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my ai agent & automation tasks using Huckleberry
Identifies repetitive steps in your workflow and sets up Huckleberry to handle them automatically