Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

home-assistant家庭助理

Agent Skill

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

总安装

1,028

周安装

42

GitHub Stars

125

下载量

329
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sammcj/agentic-coding --skill home-assistant

简介

home-assistant 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持按关键词、任务类型或来源仓库进行信息聚合与过滤,帮助 Agent 快速缩小范围。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,具体路径为 skills/home-assistant。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Home Assistant Helper

Overview

This skill provides tools and workflows for working with Home Assistant installations. It enables querying the live HA instance for entities, services, and configuration data, debugging automations, and generating YAML configurations for automations and dashboards.

Key Capabilities:

  • Query entities, states, and services from the live HA installation
  • Search for similar entities to use as examples
  • Check automation states and execution history
  • Generate YAML configurations for copy/paste into HA
  • Find real examples from the user's setup to inform new configurations

Core Workflow

When helping with Home Assistant tasks, follow this general approach:

  1. Understand the requirement - What is the user trying to accomplish?
  2. Discover existing entities - Use scripts to find relevant entities in their setup
  3. Find similar examples - Search for existing automations or entities that do something similar
  4. Generate YAML - Create well-formed YAML that can be copied directly into HA
  5. Explain the configuration - Describe what the YAML does and how to install it

Available Scripts

All scripts require the HA_TOKEN environment variable to be set, which contains the Home Assistant long-lived access token. The HA instance is available at http://homeassistant.local:8123.

Important: All scripts now use uv with inline PEP 723 dependency declarations and the homeassistant-api library for consistent, maintainable code. Dependencies are automatically installed by uv on first run.

Entity Discovery

ha_get_entities.py [domain]

Retrieve all entities, optionally filtered by domain.

Usage:

uv run scripts/ha_get_entities.py           # All entities
uv run scripts/ha_get_entities.py light     # Just lights
uv run scripts/ha_get_entities.py sensor    # Just sensors

When to use: To discover what entities are available, especially when building new automations.

ha_get_state.py <entity_id>

Get the current state and attributes of a specific entity.

Usage:

uv run scripts/ha_get_state.py light.living_room

When to use: To check current state, available attributes, or confirm an entity exists.

ha_search_similar_entities.py <pattern>

Search for entities matching a pattern in their entity_id or friendly_name.

Usage:

uv run scripts/ha_search_similar_entities.py "bedroom"
uv run scripts/ha_search_similar_entities.py "motion"
uv run scripts/ha_search_similar_entities.py "temperature"

When to use: To find entities related to what the user wants to automate. This is especially useful for finding examples before creating new automations.

Automation Management

ha_get_automations.py [search_term]

Retrieve all automations, optionally filtered by search term.

Usage:

uv run scripts/ha_get_automations.py              # All automations
uv run scripts/ha_get_automations.py motion       # Automations with 'motion'
uv run scripts/ha_get_automations.py light        # Automations with 'light'

When to use: To find existing automations that are similar to what the user wants to create. Use these as templates.

Automation Trace Analysis

ha_list_traces.py [automation_id]

List automation execution traces with timestamps and status.

Usage:

uv run scripts/ha_list_traces.py                    # All traces
uv run scripts/ha_list_traces.py 1761430536701      # Specific automation traces (using numeric ID)

Important: Use the numeric automation ID (e.g., 1761430536701), not the full entity_id (e.g., automation.bedroom_light). You can find the numeric ID in the automation's attributes from ha_get_automations.py output.

When to use: To see recent automation runs, their status, and timing. Use this to identify which run IDs to investigate further.

Output includes:

  • Run ID (for use with ha_get_trace.py)
  • Timestamp
  • Execution state (stopped, running, etc.)
  • Script execution status (finished, failed_single, failed_conditions, etc.)
  • Last step executed
  • Any errors

ha_get_trace.py <automation_id> <run_id>

Get detailed step-by-step trace for a specific automation run.

Usage:

uv run scripts/ha_get_trace.py 1761430536701 1ceef6b2b6f63a8745eb5dba3fe12f71

Important: Use the numeric automation ID (e.g., 1761430536701), not the full entity_id.

When to use: To debug a specific automation run. Shows the complete execution path including:

  • Trigger details
  • Condition evaluations (pass/fail)
  • Actions executed
  • Variables at each step
  • Timing information
  • Error details if failed

Tip: Get the run_id from ha_list_traces.py output.

ha_trace_summary.py <automation_id>

Get aggregated statistics for an automation's execution history.

Usage:

uv run scripts/ha_trace_summary.py 1761430536701

Important: Use the numeric automation ID (e.g., 1761430536701), not the full entity_id.

When to use: To understand automation reliability and performance over time.

Output includes:

  • Total runs
  • Success/failure counts and rates
  • Average/min/max execution times
  • Common error patterns
  • Distribution of where executions complete

Service Discovery

ha_get_services.py [domain]

Get all available services with descriptions and field information.

Usage:

uv run scripts/ha_get_services.py              # All services
uv run scripts/ha_get_services.py light        # Just light services
uv run scripts/ha_get_services.py climate      # Just climate services

When to use: To discover what services are available and what parameters they accept.

Configuration

ha_get_config.py

Get Home Assistant configuration including version, location, and components.

Usage:

uv run scripts/ha_get_config.py

When to use: To understand the HA setup, available integrations, or system information.

ha_get_config_entries.py [domain]

Get Home Assistant config entries, optionally filtered by domain. This is essential for services that require a config_entry_id, such as telegram_bot.send_message.

Usage:

uv run scripts/ha_get_config_entries.py              # All config entries
uv run scripts/ha_get_config_entries.py telegram_bot # Just Telegram bots
uv run scripts/ha_get_config_entries.py mqtt         # Just MQTT entries

When to use: When you need to get config_entry_id for services like Telegram notifications, or to discover what integrations are configured.

Service Calling

ha_call_service.py <domain> <service> <json_data>

Call a Home Assistant service (use with caution).

Usage:

uv run scripts/ha_call_service.py light turn_on '{"entity_id": "light.living_room"}'

When to use: Rarely. Generally only for testing or when the user explicitly asks to control something.

Typical Workflows

Creating a New Automation

  1. Understand the goal - Ask clarifying questions about triggers, conditions, and actions
  2. Find similar entities - Use ha_search_similar_entities.py to find relevant entities
  3. Search for similar automations - Use ha_get_automations.py with search terms to find examples
  4. Review existing automation - If a similar one exists, examine its structure
  5. Generate YAML - Create well-formatted YAML with:

- Descriptive alias - Clear description - Appropriate triggers - Relevant conditions - Necessary actions - Proper mode (single, restart, queued, parallel)

  1. Provide copy-paste YAML - Format for easy copying into HA configuration
  2. Explain - Describe what the automation does and how to add it to HA

Debugging an Automation

  1. Check automation status - Use uv run scripts/ha_get_state.py automation.automation_name to check:

- Current state (on/off) - Last triggered time - Current execution count - Automation mode

  1. Review execution history - Use trace analysis tools (use numeric automation ID from attributes):

- uv run scripts/ha_trace_summary.py <numeric_id> - Get success rate and common issues - uv run scripts/ha_list_traces.py <numeric_id> - See recent runs - uv run scripts/ha_get_trace.py <numeric_id> <run_id> - Detailed step-by-step trace

  1. Analyze trace data - Look for:

- Which trigger fired - Whether conditions passed or failed - Which actions executed successfully - Where the automation stopped or errored - Variable values at each step

  1. Check related entities - Use uv run scripts/ha_get_state.py to verify trigger entities are in expected states
  2. Review the automation configuration - Use uv run scripts/ha_get_automations.py to see the full automation details
  3. Identify the issue - Based on trace data, state information, and configuration review
  4. Suggest fix - Provide corrected YAML or configuration changes

Trace-based Debugging Workflow:

# Step 1: Get the automation details to find the numeric ID
uv run scripts/ha_get_automations.py problem_automation

# Step 2: Check if automation has been running and get stats (use numeric ID from step 1)
uv run scripts/ha_trace_summary.py 1761430536701

# Step 3: List recent runs to find failing ones (use numeric ID)
uv run scripts/ha_list_traces.py 1761430536701

# Step 4: Get detailed trace for a specific failed run (use numeric ID)
uv run scripts/ha_get_trace.py 1761430536701 <run_id_from_step_3>

# Step 5: Examine the trace to see exactly where and why it failed

Modifying a Dashboard

  1. Understand desired changes - What should the dashboard show?
  2. Find relevant entities - Use entity discovery scripts
  3. Generate Lovelace YAML - Create dashboard card configuration
  4. Provide copy-paste YAML - User will manually add to their dashboard
  5. Explain card configuration - Describe options and customization

Exploring Entity States

  1. Use search or domain filtering - Find entities of interest
  2. Check specific states - Get detailed state information
  3. Report findings - Present relevant information clearly

Sending Telegram Notifications

Telegram notifications require using the telegram_bot.send_message service with a config_entry_id parameter (not the notify service pattern).

Workflow:

  1. Get the Telegram bot config_entry_id - Use uv run scripts/ha_get_config_entries.py telegram_bot to find the config entry ID
  2. Use the telegram_bot.send_message service - Include the config_entry_id in the action data

Example Automation with Telegram Notification:

alias: Example Telegram Alert
description: Send a Telegram notification when something happens
triggers:
  - entity_id: binary_sensor.front_door
    to: "on"
    trigger: state
conditions: []
actions:
  - action: telegram_bot.send_message
    data:
      message: "Front door opened at {{ now().strftime('%I:%M %p') }}"
      config_entry_id: 01JZE11D7Y6B7C3WCARWVZRYNH  # Get this from ha_get_config_entries.py
mode: single

Note: The config_entry_id is specific to your Telegram bot configuration. Always use uv run scripts/ha_get_config_entries.py telegram_bot to get the correct ID for your setup.

Important Notes

YAML Output Format

When generating YAML configurations, always:

  • Use proper YAML formatting with 2-space indentation
  • Include helpful comments where appropriate
  • Provide descriptive aliases and descriptions
  • Use appropriate trigger platforms (state, time, numeric_state, etc.)
  • Include mode settings (single, restart, queued, parallel)
  • Format for easy copy-paste into HA

Manual Installation Required

The user must manually copy/paste generated YAML into Home Assistant. Make this clear and provide instructions:

  • For automations: Configuration → Automations & Scenes → Add Automation → Edit in YAML
  • For dashboards: Dashboard → Edit Dashboard → Raw Configuration Editor
  • For configuration.yaml additions: Edit the file and restart HA

Browser Automation for Screenshots

If the user asks for screenshots of dashboards or wants to see the current UI state, the Playwright browser automation tools can be used to navigate to the HA instance and capture screenshots. The user will need to handle authentication.

Service Calls

Be cautious about calling services that change state. Generally only do this when explicitly requested by the user or for testing purposes.

Entity Naming

All entities follow the pattern domain.object_id where common domains include:

  • light - Lights
  • switch - Switches
  • sensor - Sensors (read-only)
  • binary_sensor - Binary sensors (on/off)
  • climate - Thermostats
  • automation - Automations
  • script - Scripts
  • input_boolean, input_number, input_select, input_text, input_datetime - Helper entities
  • person - People
  • device_tracker - Device tracking
  • camera - Cameras
  • media_player - Media players
  • cover - Covers (blinds, garage doors)
  • fan - Fans
  • lock - Locks

Common Trigger Platforms

  • state - Entity state changes
  • numeric_state - Numeric value crosses threshold
  • sun - Sunrise/sunset
  • time - Specific time
  • time_pattern - Time pattern (every N minutes)
  • event - HA event fired
  • webhook - Webhook trigger
  • zone - Enter/leave zone
  • device - Device-specific trigger

Common Condition Platforms

  • state - Entity state equals value
  • numeric_state - Numeric comparison
  • time - Time window
  • sun - Before/after sunrise/sunset
  • zone - Person in zone
  • template - Template evaluation

Automation Modes

  • single - Don't start new run if already running
  • restart - Restart automation if triggered while running
  • queued - Queue runs if already running
  • parallel - Allow multiple simultaneous runs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.32%
按下载量换算116

Claude

30.05%
按下载量换算99

Cursor

20.17%
按下载量换算66

Gemini CLI

8.26%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills