CashPilot for Home Assistant

April 13, 2026 · View on GitHub

CashPilot for Home Assistant banner

CashPilot for Home Assistant

HACS Tests codecov GitHub Release GitHub Stars License: GPL-3.0

A Home Assistant custom integration that monitors your CashPilot passive income dashboard. Track earnings, service health, and manage containers directly from HA.

Features

  • Earnings overview -- total, today, and monthly earnings as sensors
  • Per-service monitoring -- balance, health score, uptime, CPU, and memory for every deployed service
  • Service control -- start, stop, and restart individual services via switches and buttons
  • Fleet overview -- online workers and running containers (if fleet mode is configured)
  • Manual collection -- trigger an earnings refresh on demand

Prerequisites

  • A running CashPilot instance reachable from Home Assistant
  • CashPilot login credentials (username and password)
  • Home Assistant 2024.1.0 or later

Installation

  1. Open HACS in Home Assistant
  2. Click the three dots in the top right and select Custom repositories
  3. Add https://github.com/GeiserX/cashpilot-ha with category Integration
  4. Search for "CashPilot" and install it
  5. Restart Home Assistant

Manual

  1. Copy the custom_components/cashpilot/ directory into your HA config/custom_components/ folder
  2. Restart Home Assistant

Configuration

  1. Go to Settings > Devices & Services > Add Integration
  2. Search for CashPilot
  3. Enter the URL of your CashPilot instance (e.g., http://cashpilot:8080)
  4. Enter your CashPilot username and password
  5. Click Submit

Entities

Dashboard device

EntityTypeDescription
sensor.cashpilot_total_earningsSensorLifetime cumulative earnings (USD)
sensor.cashpilot_today_earningsSensorEarnings for today (USD)
sensor.cashpilot_month_earningsSensorEarnings for the current month (USD)
sensor.cashpilot_active_servicesSensorNumber of active services
button.cashpilot_collect_earningsButtonTrigger manual earnings collection

Fleet sensors (only if fleet mode is configured)

EntityTypeDescription
sensor.cashpilot_fleet_workers_onlineSensorOnline fleet workers
sensor.cashpilot_fleet_containers_runningSensorRunning fleet containers

Per-service devices (one device per deployed service)

EntityTypeDescription
sensor.cashpilot_{slug}_balanceSensorService balance (USD)
sensor.cashpilot_{slug}_health_scoreSensorHealth score (0-100%)
sensor.cashpilot_{slug}_uptimeSensorUptime percentage
sensor.cashpilot_{slug}_cpuSensorCPU usage (diagnostic)
sensor.cashpilot_{slug}_memorySensorMemory usage in MB (diagnostic)
binary_sensor.cashpilot_{slug}_runningBinary SensorWhether the container is running
switch.cashpilot_{slug}SwitchStart / stop the service
button.cashpilot_{slug}_restartButtonRestart the service

Example Automations

Daily earnings notification

automation:
  - alias: "CashPilot daily earnings summary"
    trigger:
      - platform: time
        at: "22:00:00"
    action:
      - service: notify.mobile_app_phone
        data:
          title: "CashPilot Earnings"
          message: >
            Today: ${{ states('sensor.cashpilot_today_earnings') }}
            Month: ${{ states('sensor.cashpilot_month_earnings') }}
            Total: ${{ states('sensor.cashpilot_total_earnings') }}

Alert when a service goes down

automation:
  - alias: "CashPilot service down alert"
    trigger:
      - platform: state
        entity_id: binary_sensor.cashpilot_honeygain_running
        to: "off"
        for:
          minutes: 10
    action:
      - service: notify.mobile_app_phone
        data:
          title: "CashPilot Alert"
          message: "Honeygain has been down for 10 minutes."

Auto-restart unhealthy service

automation:
  - alias: "CashPilot auto-restart low health"
    trigger:
      - platform: numeric_state
        entity_id: sensor.cashpilot_honeygain_health_score
        below: 50
        for:
          minutes: 15
    action:
      - service: button.press
        target:
          entity_id: button.cashpilot_honeygain_restart

Polling interval

Data is refreshed every 5 minutes by default. This is not user-configurable through the UI at this time.

  • CashPilot -- the self-hosted passive income platform this integration connects to
  • Issue Tracker -- report bugs or request features

Other Home Assistant Integrations by GeiserX

ProjectDescription
CashPilotSelf-hosted passive income platform with web UI for setup and earnings tracking
CashPilot-androidAndroid monitoring agent for CashPilot passive income apps
cashpilot-mcpMCP Server for CashPilot passive income monitoring and fleet management
n8n-nodes-cashpilotn8n community node for CashPilot passive income monitoring

License

GPL-3.0