Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

boat-daily-check船舶日常检查

Agent Skill

boat-daily-check 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,103

周安装

331

GitHub Stars

公开资料未说明

下载量

2,595
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:boat-daily-check(船舶日常检查)
来源仓库:https://github.com/lkilpatrick/boat-daily-check
安装命令:
openclaw skills install boat-daily-check
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install boat-daily-check

简介

监控 Victron Energy 电力系统并发送每日邮件报告。

  • 包含电池状态、太阳能发电与异常活动提醒。
  • 适合航海或离网用户远程掌握能源健康状况。
  • 需配置 SMTP 邮箱参数才能正常投递通知。
  • 报警阈值可根据实际需求自定义设置。boat-daily-check 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
boat-daily-check
description
Monitor Victron Energy power systems and generate beautiful daily email reports with battery status, solar generation, and active alarms. Integrates with Victron VRM API to fetch real-time metrics for multiple installations and sends formatted HTML emails. Perfect for boat owners, RV enthusiasts, and off-grid solar systems.

Boat Daily Check — Victron VRM API Monitor

Monitor your Victron power systems with automated daily reports. Fetch real-time battery state of charge, voltage, current, solar generation, and active alarms from the Victron VRM API, then deliver beautifully formatted HTML emails showing status of all your installations.

Overview

This skill:

  • 📊 Fetches live power system metrics from Victron VRM API
  • 📧 Generates professional HTML email reports
  • ⚓ Supports multiple installations (boats, RVs, homes)
  • 🎨 Beautiful, responsive email design
  • 🔄 Integrates seamlessly with OpenClaw cron jobs
  • 📱 Mobile-friendly HTML output

What You'll Get

Each morning, a clean HTML email with:

  • Battery Status: SOC %, voltage, current, temperature
  • Solar Data: Power, today's yield, max charge, PV voltage
  • Inverter/AC Info: Input voltage, status (for grid/shore power)
  • Active Alarms: Real-time alerts from your system
  • Hardware Status: Gateway version, last contact time
  • Dashboard Links: Direct links to VRM dashboards for quick access

Setup

1. Get Your Victron VRM API Token

  1. Visit https://vrm.victronenergy.com/access-tokens
  2. Create a new access token
  3. Copy the token (you'll need this for configuration)

2. Find Your Installation IDs

Each Victron system has an installation ID visible in the VRM URL:

https://vrm.victronenergy.com/installation/000000/dashboard
                                         ^^^^^^
                                    Installation ID

3. Identify Your SmartShunt Instance

The skill uses the SmartShunt (battery monitor) to fetch battery data. Find its instance number:

  • Check your VRM diagnostics or alarms endpoint
  • Default instance is usually 279 (adjust if yours differs)

4. Configure Your Installation

Edit the Python script with your details:

vim /home/jeanclaude/.openclaw/workspace/skills/boat-daily-check/scripts/boat-email-report.py

Update these variables:

VRM_TOKEN = "your-token-here"

INSTALLATIONS = {
    "boat1": {
        "id": 000000,           # Your installation ID
        "name": "Titanic",  # Display name
        "batteryInstance": 279,  # SmartShunt instance number
    },
    "boat2": {
        "id": 000001,
        "name": "Endeavour",
        "batteryInstance": 279,
    }
}

Usage

Generate a Report Now

python3 /home/jeanclaude/.openclaw/workspace/skills/boat-daily-check/scripts/boat-email-report.py

This generates:

  • HTML Email: out/boat-daily-email.html
  • JSON Data: out/boat-status.json
  • CSV Export: out/boat-status.csv

Integrate with OpenClaw Cron

Add to your morning email report (or standalone):

openclaw cron add -j '{
  "name": "boat-daily-check",
  "schedule": {"kind": "cron", "expr": "0 7 * * *", "tz": "America/Los_Angeles"},
  "payload": {
    "kind": "agentTurn",
    "message": "Run boat power system check: python3 /path/to/boat-email-report.py"
  },
  "delivery": {"mode": "announce"},
  "sessionTarget": "isolated"
}'

Or embed in an existing job to include boat status with fishing/weather reports.

API Reference

The skill queries the Victron VRM API v2:

Endpoint: Battery Summary

GET /v2/installations/{id}/widgets/BatterySummary/latest?instance={instance}

Returns: SOC%, voltage, current, temperature, time to go, and alarm states.

Endpoint: Diagnostics

GET /v2/installations/{id}/diagnostics

Returns: All device metadata including solar charger power, inverter status, etc.

Endpoint: Alarms

GET /v2/installations/{id}/alarms?limit=10

Returns: Active alarms with details and device information.

Authentication: All requests use X-Authorization: Token {your-token}

Rate Limits: VRM API has reasonable rate limits (~10 req/sec). The daily script respects these.

Files

boat-daily-check/
├── SKILL.md (this file)
├── scripts/
│   └── boat-email-report.py       # Main data collection + HTML generation
├── references/
│   ├── victron_attributes.md      # Victron attribute code reference
│   └── vrm_api_guide.md           # VRM API quick reference
├── out/
│   ├── boat-daily-email.html      # Generated email (latest run)
│   ├── boat-status.json           # JSON data export
│   └── boat-status.csv            # CSV export
└── templates/ (optional)
    └── boat-email-template.html   # Email template (customizable)

Customization

Change Email Recipients

Edit boat-email-report.py and modify the email sending logic:

# Change recipient email
recipients = ["your-email@example.com"]

Customize HTML Template

The email template uses Handlebars-style placeholders. Edit the HTML section in the Python script:

html = html.replace("{{pitterPatter.battery.soc}}", f"{value}%")

Or create a custom template file and modify the script to load it.

Add More Installations

Add entries to the INSTALLATIONS dict:

"boat3": {
    "id": 999999,
    "name": "My Third Boat",
    "batteryInstance": 279,
}

Then update the report generation logic to include your new installation.

Modify Metric Selection

Pick different metrics from the Victron widget response. Edit the battery data extraction:

def fetch_battery_data(installation_id, instance):
    # Returns: soc, voltage, current, temp
    # Add fields like: time_to_go, mid_voltage, etc.

Troubleshooting

"Child 'BatterySummary' not found"

  • Check that your installation ID is correct
  • Verify the SmartShunt instance number

Missing solar/inverter data

  • Run python3 boat-email-report.py manually to debug
  • Check the JSON output for missing fields
  • Verify your devices are online in VRM

Email not sending

  • Ensure OpenClaw cron job is enabled
  • Check delivery mode: "delivery": {"mode": "announce"}
  • Verify recipient email is correct

Empty data in email

  • Check VRM API token is valid
  • Confirm installation IDs are correct
  • Verify SmartShunt instance number

Performance

  • Data fetch time: ~5-10 seconds (3 API calls per installation)
  • HTML generation: ~1 second
  • Email delivery: Handled by OpenClaw (async)
  • Total execution: <30 seconds for 2 installations

Requirements

  • Python 3.7+
  • requests library (pip install requests)
  • Victron VRM API token with read access
  • OpenClaw cron job support (for scheduling)

Limitations

  • VRM API has ~10 req/sec rate limit
  • Historical data not available (only latest values)
  • Some widget types not yet supported (add via custom implementation)
  • Email delivery depends on OpenClaw email infrastructure

Next Steps

  1. ✅ Get your VRM API token
  2. ✅ Find your installation IDs and battery instance numbers
  3. ✅ Update the Python script with your details
  4. ✅ Test with: python3 boat-email-report.py
  5. ✅ Set up a cron job for daily automated reports

Support & Contributions

  • VRM API Docs: https://vrm-api-docs.victronenergy.com/
  • Victron Community: https://community.victronenergy.com/
  • GitHub Repo: https://github.com/dirkjanfaber/victron-vrm-api (reference implementation)

License

This skill is open source. Feel free to fork, modify, and share!

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.15%
按下载量换算2,028

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills