ha-automation-explorer

ha-automation-explorer is a skill for Claude Code from gtapps/claude-code-hermit. It costs 62 tokens per session (1,328 once invoked), scanned A, original, MIT.

A read-only browser for Home Assistant automations, including plain-language explanations of their YAML rules. It can list automations, search by topic, and sort them by when they last ran.

In plain words
What is it for?
Use it to browse all automations, explain a selected rule, filter by keywords, or find automations that have not fired recently.
Why use it?
It makes a home’s automation rules easier to understand and helps find rules that are inactive or difficult to locate.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the claude-code-homeassistant-hermit plugin — 18 skills, 3 agents shipped together

Good fit Use it to browse all automations, explain a selected rule, filter by keywords, or find automations that have not fired recently.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add gtapps/claude-code-hermit
Claude Code
/plugin install claude-code-homeassistant-hermit

Made for: Claude Code.

Or install claude-code-homeassistant-hermit, the plugin that ships this one along with the rest of its 18 skills, 3 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ha-automation-explorer

README.md
[![agentmods](https://agentmods.dev/badge/skills/gtapps/claude-code-hermit/ha-automation-explorer.svg)](https://agentmods.dev/skills/gtapps/claude-code-hermit/ha-automation-explorer)
Your own site
<a href="https://agentmods.dev/skills/gtapps/claude-code-hermit/ha-automation-explorer"><img src="https://agentmods.dev/badge/skills/gtapps/claude-code-hermit/ha-automation-explorer.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,328 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.01328
Opus 5 $0.00031 $0.00664
Sonnet 5 $0.00012 $0.00266
Haiku 4.5 $0.00006 $0.00133

Measured 4d ago against content hash a1b66ed2163e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

ha-automation-explorer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/claude-code-homeassistant-hermit/skills/ha-automation-explorer/SKILL.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

HA Automation Explorer

Read-only. No writes, no proposals, no actuation.

Shared preamble (all modes)

  1. Read operator language from OPERATOR.md (## HA hermit section). Use this locale for all output.
  2. Read .claude-code-hermit/raw/snapshot-ha-normalized-latest.json. Check the file's mtime with stat. If missing or older than 24 hours, append this warning to all output:

    "Context snapshot is stale — run /claude-code-homeassistant-hermit:ha-refresh-context for accurate entity data."

  3. Extract entity_index and silence_summary from the snapshot. Build the automation list: all entries in entity_index whose key starts with automation..

Mode 1 — List all automations

Invoked as /claude-code-homeassistant-hermit:ha-automation-explorer (no args).

  1. If the automation list is empty, output: "No automations found in the context snapshot." Stop.
  2. Group automations by topic, inferring from friendly_name (from attributes.friendly_name) and entity_id. Buckets (best-effort — no area registry exists):
    • Security: alarm, lock, door, gate, camera, motion, presence
    • Comfort: climate, temperature, heating, cooling, fan, blind, curtain, cover
    • Presence: arrive, leave, away, home, person
    • Energy: power, energy, solar, charge, saving
    • Other: anything that doesn't fit the above
  3. Derive a one-line description from friendly_name for each automation. Do not fetch configs here.
  4. Mark automations that appear in silence_summary.dead_automations with ⚠ dead (N days). For never_fired: true entries, use ⚠ never fired.
  5. Output the catalog grouped by topic:
    **Security**
    - automation.alarm_away — "Arm alarm when everyone leaves" ⚠ dead (12 days)
    
    **Comfort**
    - automation.morning_blinds — "Open blinds at sunrise"
    

Mode 2 — Explain automations matching a keyword

Invoked as /claude-code-homeassistant-hermit:ha-automation-explorer <keyword>.

  1. Filter the automation list: keep entries where keyword appears (case-insensitive) in friendly_name or entity_id.
  2. If no matches: output "No automations matching ''." Stop.
  3. If more than 8 matches, the keyword is too broad to explain at once. List the matching entity_id + friendly_name pairs and ask the operator to narrow the keyword. Do not fetch any configs. Stop.
  4. For each match, check attributes.id. If null (YAML-packaged automation, not retrievable via REST), note: "Config not retrievable — automation is YAML-packaged." Skip the config fetch for that entry.
  5. For each match with a numeric id, fetch its config:
    ${CLAUDE_PLUGIN_ROOT}/bin/ha-agent-lab ha get-automation-config <id>
    
  6. Explain the fetched YAML in plain language in the operator's locale:
    • Triggers: what starts this automation (time, state change, event, etc.)
    • Conditions: any guards that must be true for it to run
    • Actions: what it does, step by step
    • State: enabled / disabled; ⚠ dead if in silence_summary.dead_automations

Read the full file on GitHub · 84 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 84 lines · 62 tokens per session scan A a1b66ed2163e

Subscribe to this mod's changes

ha-automation-explorer is a skill published in the GitHub repository gtapps/claude-code-hermit (74 stars, last pushed today), licensed MIT. It adds 62 tokens to every session and 1,328 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

kicad-jlcpcb-workflow

Use this skill when the user asks to "design a PCB", "make a board", "build a PCB project", "order from JLCPCB", "create a schematic", "source LCSC parts", "wire up a board", "generate a PCB from a BOM", or any KiCad + JLCPCB workflow. Also use when working with .kicadpro or .kicadpcb files. Phase 1.6 handles project…

BeckhamLabsLLC/kicad-jlcpcb · 145 tokens

especialista-em-engenharia-de-hardware

Especialista em Engenharia de Hardware. Use para design eletrônico, microcontroladores, PCB, firmware embarcado, sinais, energia e prototipagem. Palavras-chave: hardware, eletrônica, microcontrolador, PCB, embarcado, firmware, Arduino.

euwebertdefreitas/ai-skills-for-claude-code · 63 tokens

qector-hardware-engineer

Physical-layer quantum circuits, detector-error-model preparation, qLDPC reasoning, and honest target-device hardware reporting for QECTOR. The bundled library MCP server is app-free; the companion bench server adds DEM inspection, DEM collapse, code-family introspection, and hardware probes (all Provisional).…

GuillaumeLessard/qector-claude-plugin · 103 tokens

jensen-skills

Invoke Jensen Huang — Hardware & AI Infrastructure. Use for AI infrastructure planning, GPU and data center strategy, compute TCO analysis, and build-vs-buy decisions. Sets Claude into the Jensen Huang persona for the current conversation.

markusbegerow/board-of-directors · 50 tokens

actual-setup

Set up Actual Computer (actual.inc) inference in Hermes.

NousResearch/hermes-agent · 16 tokens

cco-tools

Show what tools actually cost in tokens — learned per-tool averages from observed results, replacing the hardcoded MCP/Agent guesses.

egorfedorov/claude-context-optimizer · 27 tokens