Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计通过

ha-energy哈能量

Agent Skill

ha-energy 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,787

周安装

73

GitHub Stars

8

下载量

572
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ha-energy(哈能量)
来源仓库:https://github.com/nodnarbnitram/claude-code-extensions
仓库路径:skills/ha-energy
安装命令:
npx skills add https://github.com/nodnarbnitram/claude-code-extensions --skill ha-energy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/nodnarbnitram/claude-code-extensions --skill ha-energy

简介

ha-energy 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理相关事项。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息整理。
  • 通过处理 GitHub 相关协作信息和代码变更内容提供服务。
  • 安装命令:npx skills add https://github.com/nodnarbnitram/claude-code-extensions --skill ha-energy。
  • 建议确认权限范围、维护状态及是否触发联网或文件读写操作。

SKILL.md

Home Assistant Energy Skill

Configure Home Assistant energy monitoring with dashboards, solar, grid, and device tracking.

Before You Start

This skill prevents 8 common errors and saves ~45% tokens.

MetricWithout SkillWith Skill
Setup Time45+ min15 min
Common Errors80
Token Usage~10000~5500

Known Issues This Skill Prevents

  1. Incorrect state_class values (must be total, total_increasing, or measurement)
  2. Missing device_class: energy on energy sensors
  3. Wrong state_class for utility_meter entities (must be total_increasing)
  4. Using unit_of_measurement: kWh without state_class (breaks statistics)
  5. Forgetting to enable statistic collection in configuration.yaml
  6. Configuring solar sensors without battery tracking for self-consumption
  7. Grid monitoring with mismatched sensor pairs (consumption vs return)
  8. Utility meter cycle settings that don't align with billing periods

Quick Start

Step 1: Configure Energy Sensors

# configuration.yaml
template:
  - sensor:
      - name: "Total Energy Consumed"
        unique_id: total_energy_consumed
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.energy_meter') | float(0)) }}"

      - name: "Solar Production"
        unique_id: solar_production
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.solar_meter') | float(0)) }}"

Why this matters: Proper state_class enables Home Assistant to automatically create statistics and energy dashboard integration. Without it, your sensors won't appear in the energy dashboard.

Step 2: Set Up Utility Meter for Billing Cycles

# configuration.yaml
utility_meter:
  daily_energy:
    source: sensor.total_energy_consumed
    cycle: daily
    offset: [hours: 0]

  monthly_energy:
    source: sensor.total_energy_consumed
    cycle: monthly
    offset: [days: 0]

  daily_solar:
    source: sensor.solar_production
    cycle: daily
    offset: [hours: 0]

Why this matters: Utility meters automatically reset at specified intervals and track consumption periods for billing analysis.

Step 3: Enable Statistics Recorder

# configuration.yaml
recorder:
  db_url: !secret database_url  # Optional but recommended
  auto_purge: true
  auto_purge_days: 90           # Adjust retention as needed
  # Include sensors with state_class for statistics
  include:
    entities:
      - sensor.total_energy_consumed
      - sensor.solar_production
      - sensor.grid_consumption
      - sensor.grid_return

Why this matters: Statistics require the recorder to be properly configured. Without explicit inclusion, energy sensors may not generate statistics for long-term analysis.

Critical Rules

Always Do

  • Use state_class: total_increasing for cumulative meters that only increase
  • Add device_class: energy to all energy sensors
  • Set unit_of_measurement: kWh (or appropriate unit) on energy sensors
  • Configure utility_meter for billing cycle tracking
  • Include all energy sensors in recorder's include list
  • Reset cumulative sensors on device restart via template sensor
  • Use separate sensors for grid consumption and grid return

Never Do

  • Use state_class: measurement for cumulative meters (breaks statistics)
  • Forget the offset parameter on utility_meter (may cause midnight resets)
  • Mix power (W) and energy (kWh) sensors without Riemann sum integration
  • Create energy sensors without state_class (they won't work in energy dashboard)
  • Assume solar production should subtract from consumption (energy dashboard handles this)
  • Configure bidirectional flow on single sensors (use separate consumption/return sensors)
  • Skip utility_meter configuration if you need consumption tracking by period

Common Mistakes

Wrong:

sensor:
  - platform: template
    sensors:
      total_energy:
        unit_of_measurement: kWh
        value_template: "{{ states('sensor.meter') }}"

Correct:

template:
  - sensor:
      - name: "Total Energy"
        unique_id: total_energy
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.meter') | float(0)) }}"

Why: Template platform is deprecated. Use template integration with proper state_class and device_class to enable energy dashboard integration.

Known Issues Prevention

IssueRoot CauseSolution
Energy dashboard shows no datastate_class missing or wrongUse total_increasing for cumulative meters
Statistics not generatedSensors not in recorder's include listAdd sensor entities to recorder config
Utility meter not resettingWrong offset or missing cycleVerify cycle (hourly/daily/monthly) and offset settings
Solar self-consumption not calculatedBattery sensors not configured separatelyCreate charge/discharge sensors for batteries
Grid consumption incorrectUsing bidirectional sensor instead of separate sensorsSplit into grid_consumption and grid_return
Sensor unavailable after restartCumulative meter not preservedAdd availability_template to template sensor
Statistics showing wrong valuesRaw data has negative values or gapsUse Riemann sum to convert power to energy
Utility meter shows wrong periodOffset set incorrectly for timezoneAlign offset with local midnight or billing cycle

Configuration Reference

Energy Sensor Template (YAML)

template:
  - sensor:
      - name: "Main Energy Meter"
        unique_id: main_energy_meter
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        availability_template: "{{ states('sensor.meter_input') not in ['unavailable', 'unknown'] }}"
        state: "{{ (states('sensor.meter_input') | float(0)) }}"

      - name: "Instantaneous Power"
        unique_id: instantaneous_power
        unit_of_measurement: W
        device_class: power
        state_class: measurement
        state: "{{ (states('sensor.power_meter') | float(0)) }}"

Key settings:

  • device_class: energy - Identifies as energy sensor for energy dashboard
  • state_class: total_increasing - Cumulative meter that only increases
  • state_class: measurement - Instantaneous values (power, not energy)
  • unit_of_measurement: kWh - Energy units; use W for power
  • availability_template - Prevents unavailable states from breaking statistics

Utility Meter Configuration (YAML)

utility_meter:
  daily_consumption:
    source: sensor.total_energy_consumed
    cycle: daily
    offset:
      hours: 0
    net_consumption: false        # true for solar with self-consumption

  monthly_consumption:
    source: sensor.total_energy_consumed
    cycle: monthly
    offset:
      days: 1                     # Reset on 1st of month
      hours: 0

  peak_consumption:
    source: sensor.total_energy_consumed
    cycle: weekly
    offset:
      days: 0                     # Reset on Monday
      hours: 0

Key settings:

  • cycle: hourly, daily, weekly, monthly, bimonthly, quarterly, yearly
  • offset: Time adjustment for billing alignment
  • net_consumption: Set to true for solar to track self-consumption

Riemann Sum Integration (for Power to Energy)

integration:
  - platform: riemann_sum
    name: "Daily Energy from Power"
    unique_id: daily_energy_riemann
    source: sensor.instantaneous_power
    round: 3
    unit_prefix: k                # Converts W to kWh
    unit_time: h
    method: trapezoidal

Key settings:

  • source: Power sensor (W) to integrate
  • unit_prefix: k - Converts watts to kilowatts
  • method: trapezoidal or left for integration algorithm
  • round: 3 - Decimal precision

Common Patterns

Grid Monitoring (Consumption + Return)

template:
  - sensor:
      - name: "Grid Consumption"
        unique_id: grid_consumption
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.grid_import') | float(0)) }}"

      - name: "Grid Return"
        unique_id: grid_return
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.grid_export') | float(0)) }}"

Solar Production with Battery

template:
  - sensor:
      - name: "Solar Production"
        unique_id: solar_production
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.solar_meter') | float(0)) }}"

      - name: "Battery Charge"
        unique_id: battery_charge
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.battery_charge_meter') | float(0)) }}"

      - name: "Battery Discharge"
        unique_id: battery_discharge
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.battery_discharge_meter') | float(0)) }}"

Device Power Monitoring (Smart Plug)

template:
  - sensor:
      - name: "Device Energy Today"
        unique_id: device_energy_today
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.device_energy') | float(0)) }}"

utility_meter:
  device_daily_energy:
    source: sensor.device_energy_today
    cycle: daily
    offset:
      hours: 0

Bundled Resources

References

Located in references/:

Note: For deep dives on specific topics, see the reference files above.

Assets

Located in assets/:

Copy these templates as starting points for your implementation.

Context7 Documentation

For current documentation, use these Context7 library IDs:

Library IDPurpose
/home-assistant/home-assistant.ioUser docs - energy, solar, grid, utility_meter
/home-assistant/integrationsIntegration docs for specific devices
/home-assistant/templateTemplate sensor reference

Official Documentation

Troubleshooting

Energy Dashboard Shows No Data

Symptoms: Energy dashboard loads but shows "No data available" or blank graphs.

Solution:

# 1. Verify sensors exist and have state_class
developer-tools > States > Search for energy/solar sensors

# 2. Check recorder includes sensors
# In configuration.yaml:
recorder:
  include:
    entities:
      - sensor.total_energy_consumed
      - sensor.solar_production

# 3. Restart Home Assistant
# 4. Wait 10 minutes for statistics to generate
# 5. Check Developer Tools > Statistics

Utility Meter Not Resetting

Symptoms: Utility meter keeps accumulating without resetting at expected time.

Solution:

# Check offset configuration
utility_meter:
  daily_energy:
    source: sensor.total_energy_consumed
    cycle: daily
    # For midnight reset in your timezone:
    offset:
      hours: 0
    # For reset at 6 AM:
    # offset:
    #   hours: 6

Solar Self-Consumption Not Tracking

Symptoms: Self-consumption percentage is 0% or not shown.

Solution:

# Create separate battery sensors
template:
  - sensor:
      - name: "Battery Charge"
        unique_id: battery_charge
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.battery_charge_meter') | float(0)) }}"

      - name: "Battery Discharge"
        unique_id: battery_discharge
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        state: "{{ (states('sensor.battery_discharge_meter') | float(0)) }}"

# In energy dashboard configuration, set:
# - Source: Solar production sensor
# - Battery (optional): Both charge and discharge sensors

Sensor Shows "unknown" or "unavailable"

Symptoms: Sensor state stuck on "unknown" or "unavailable" in Developer Tools.

Solution:

# Add availability_template
template:
  - sensor:
      - name: "Energy Meter"
        unique_id: energy_meter
        unit_of_measurement: kWh
        device_class: energy
        state_class: total_increasing
        availability_template: "{{ states('sensor.meter_input') not in ['unavailable', 'unknown'] }}"
        state: "{{ (states('sensor.meter_input') | float(0)) }}"

Setup Checklist

Before using this skill, verify:

  • Home Assistant is running 2023.1 or later
  • You have access to configuration.yaml (File Editor or VS Code add-on)
  • You have at least one energy sensor available (grid meter, smart plug, integration sensor)
  • You've decided on meter types (grid consumption/return, solar, battery, individual devices)
  • You understand your billing cycle (daily, monthly, etc.)
  • Recorder is enabled in configuration.yaml
  • You've identified all devices/meters to monitor

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

24.23%
按下载量换算139

OpenCode

23.55%
按下载量换算135

windsurf

16.75%
按下载量换算96

Antigravity

12.63%
按下载量换算72

Gemini CLI

8.37%
按下载量换算48

trae

3.54%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills