hummingbot-heartbeat

hummingbot/skills · updated Apr 8, 2026

$npx skills add https://github.com/hummingbot/skills --skill hummingbot-heartbeat
0 commentsdiscussion
summary

An OpenClaw cron skill that runs every hour and delivers a formatted Hummingbot status report to your connected chat channel (Telegram, Discord, etc.). Covers API health, Gateway container, active bots/controllers, executors, and portfolio balances.

skill.md

hummingbot-heartbeat

An OpenClaw cron skill that runs every hour and delivers a formatted Hummingbot status report to your connected chat channel (Telegram, Discord, etc.). Covers API health, Gateway container, active bots/controllers, executors, and portfolio balances.

Installation

clawhub install hummingbot-heartbeat

Or manually clone into your skills directory.

Quick Start

1. Set up the OpenClaw cron job

Ask your OpenClaw agent:

"Set up the hummingbot-heartbeat cron job"

The agent will resolve the skill path and register it with openclaw cron. Or do it manually:

# Replace <SKILL_PATH> with the actual installed path
openclaw cron add \
  --name "hummingbot-heartbeat" \
  --description "Hourly Hummingbot status check" \
  --every 1h \
  --announce \
  --channel telegram \
  --message "Run this and send output verbatim: python3 <SKILL_PATH>/scripts/bot_status.py"

2. Run manually (debug)

python3 scripts/bot_status.py
python3 scripts/bot_status.py --json

Configuration

Set via environment variables or a .env file in the skill directory:

# .env (optional — defaults shown)
HUMMINGBOT_API_URL=http://localhost:8000
API_USER=admin
API_PASS=admin
Variable Default Description
HUMMINGBOT_API_URL http://localhost:8000 Hummingbot API base URL
API_USER admin API username
API_PASS admin API password

Requirements

  • Python 3.9+
  • Hummingbot API running (see hummingbot-deploy skill)
  • Docker (optional — Gateway status check skipped if Docker unavailable)

Sample Output

🤖 Hummingbot Status — Feb 28, 2026 09:06 AM

**Infrastructure**
  API:     ✅ Up (v1.0.1)
  Gateway: ✅ Up 17 hours

**Active Bots:** none

**Active Executors:** none

**Portfolio** (total: $187.23)
  Token           Units       Price      Value
  ------------ ----------- ---------- ----------
  SOL            2.0639    $81.4996    $168.20
  USDC          19.0286     $1.0000     $19.03

What It Checks

Check Endpoint Notes
API health GET / Returns version
Gateway docker ps | grep gateway Skipped if Docker unavailable
Active bots GET /bot-orchestration/status Lists controller configs
Active executors POST /executors/search Filters out CLOSED/FAILED
Portfolio POST /portfolio/history Latest balances with prices

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.438 reviews
  • Alexander Ghosh· Dec 20, 2024

    Solid pick for teams standardizing on skills: hummingbot-heartbeat is focused, and the summary matches what you get after install.

  • Ganesh Mohane· Dec 12, 2024

    Keeps context tight: hummingbot-heartbeat is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Mateo Ndlovu· Dec 12, 2024

    hummingbot-heartbeat is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Zaid Zhang· Dec 8, 2024

    I recommend hummingbot-heartbeat for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Shikha Mishra· Dec 4, 2024

    Solid pick for teams standardizing on skills: hummingbot-heartbeat is focused, and the summary matches what you get after install.

  • Ava Choi· Nov 27, 2024

    hummingbot-heartbeat reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Yash Thakker· Nov 23, 2024

    We added hummingbot-heartbeat from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Hassan Khan· Nov 11, 2024

    We added hummingbot-heartbeat from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Ava Abbas· Oct 18, 2024

    Registry listing for hummingbot-heartbeat matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Dhruvi Jain· Oct 14, 2024

    hummingbot-heartbeat fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 38

1 / 4