Навыки home-assistant-manager
📦

home-assistant-manager

Ревизия содержимого r1 Средний риск 🌐 Доступ к сети📁 Доступ к файловой системе🔑 Переменные окружения⚙️ Внешние команды

Управление развертываниями Home Assistant

Изменения в Home Assistant могут быть рискованными, если развертывания, перезагрузки и панели управления выполняются вручную. Этот навык дает Claude, Codex и Claude Code структурированные рабочие процессы для проверки, развертывания, тестирования и устранения неполадок.

Поддерживает: Claude Codex Code(CC)
⚠️ 50 Плохо

Установить с помощью моего Агента

Скопируйте этот запрос в своего Агента. Он содержит каноническую страницу Skill и манифест.

Запрос агента
Review the Skillstore skill "home-assistant-manager" from https://skillstore.io/skills/komal-skynet-home-assistant-manager.md and its manifest at https://skillstore.io/api/skills/komal-skynet-home-assistant-manager/manifest. Verify the artifact. Stop and obtain explicit user consent before installing or changing files.

Ваш Агент по-прежнему должен показать план и запросить все подтверждения, требуемые политикой безопасности.

Ресурсы для AI-агентов

Используйте эти ссылки, когда AI-агенту, crawler или script нужен чистый контекст вместо полной страницы.

Протестировать

Использование «home-assistant-manager». Пользователь просит добавить автоматизацию уведомлений о входной двери.

Ожидаемый результат:

Ассистент предлагает поведение автоматизации, определяет необходимые сущности, рекомендует перезагрузку вместо рестарта и перечисляет проверки валидации, триггера, логов и уведомлений.

Использование «home-assistant-manager». Пользователь спрашивает, почему панель не отображается в боковой панели.

Ожидаемый результат:

Ассистент проверяет, существует ли файл панели, зарегистрирована ли она, требуется ли рестарт и нужно ли обновить кеш браузера.

Использование «home-assistant-manager». Пользователь сообщает об ошибке сравнения в шаблоне.

Ожидаемый результат:

Ассистент объясняет вероятное несоответствие типов, рекомендует приведение типов в шаблоне, затем описывает, как протестировать шаблон и подтвердить, что логи чистые.

Аудит безопасности

Средний риск

The skill is not malicious, but it intentionally guides privileged Home Assistant operations through SSH, hass-cli, git, and scp. Confirmed risks center on remote command execution, writing Home Assistant .storage files, persistent token setup, and commands that can affect real devices; many scanner hits were Markdown, template, or screenshot false positives. No prompt injection attempt was found in the reviewed files.

3
Просканировано файлов
1,023
Проанализировано строк
33
Пункты проверки
0
Ложные срабатывания проигнорированы

Подтверждённые проблемы безопасности (2)

Средний
Long-Lived Home Assistant Token in Shell Profile
The README tells users to add HASS_SERVER and HASS_TOKEN values to shell startup files. A Home Assistant token stored there can be exposed to shells, subprocesses, backups, or accidental sharing.
The setup instructions explicitly name ~/.bashrc or ~/.zshrc and then export HASS_TOKEN on the following line. This is a real secret persistence risk, although it is normal setup guidance rather than malicious behavior.
Средний
Automation Trigger Commands Can Affect Physical Devices
The skill encourages manual Home Assistant automation triggers and service calls during verification. Depending on the target automation, these actions can affect locks, climate, lights, notifications, or other connected devices.
The cited workflow directly invokes automation.trigger and common service-call commands. The impact depends on the user environment, but the physical-device side effect risk is clear.
Пункты проверки возможностей (33)

Это реальные локальные возможности, которые могут ожидаться для этого навыка, поэтому они требуют проверки, но не считаются подтверждённым вредоносным поведением.

Высокий
Hidden file in home directory
# Set environment variables (add to ~/.bashrc or ~/.zshrc)
The README advises adding Home Assistant environment variables to ~/.bashrc or ~/.zshrc, and the nearby setup includes a long-lived access token. Persisting control tokens in shell startup files increases exposure.
Средний
Hidden file access
# Set environment variables (add to ~/.bashrc or ~/.zshrc)
The README directs users to modify hidden shell startup files for Home Assistant environment variables. This is common setup guidance, but it can persist sensitive access tokens broadly.
Средний
Ruby/shell backtick execution
1. SSH access to Home Assistant instance (`root@homeassistant.local`)
The skill requires SSH access to root@homeassistant.local, enabling privileged remote management of Home Assistant. This is intended functionality, but it can change or restart the user system.
Средний
Ruby/shell backtick execution
2. `hass-cli` installed locally
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
All `hass-cli` commands use environment variables automatically:
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
```bash
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
```bash
The documented workflow runs SSH, git, or Home Assistant CLI operations against the remote /config environment. These commands are legitimate for this skill but carry operational risk if run without confirmation.
Средний
Ruby/shell backtick execution
```bash
The documented workflow runs SSH, git, or Home Assistant CLI operations against the remote /config environment. These commands are legitimate for this skill but carry operational risk if run without confirmation.
Средний
Ruby/shell backtick execution
Use `scp` for quick testing before committing:
The workflow instructs copying files to the Home Assistant instance with scp. This can overwrite configuration or dashboard files, so it is a real operational risk even though it is not malicious.
Средний
Ruby/shell backtick execution
```bash
The workflow instructs copying files to the Home Assistant instance with scp. This can overwrite configuration or dashboard files, so it is a real operational risk even though it is not malicious.
Средний
Ruby/shell backtick execution
- ✅ Automations: `hass-cli service call automation.reload`
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
- ✅ Scripts: `hass-cli service call script.reload`
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
- ✅ Scenes: `hass-cli service call scene.reload`
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
- ✅ Template entities: `hass-cli service call template.reload`
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
- ✅ Groups: `hass-cli service call group.reload`
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
- ✅ Themes: `hass-cli service call frontend.reload_themes`
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
```bash
The documented workflow runs SSH, git, or Home Assistant CLI operations against the remote /config environment. These commands are legitimate for this skill but carry operational risk if run without confirmation.
Средний
Ruby/shell backtick execution
```bash
The documented workflow runs SSH, git, or Home Assistant CLI operations against the remote /config environment. These commands are legitimate for this skill but carry operational risk if run without confirmation.
Средний
Ruby/shell backtick execution
```bash
The skill instructs use of hass-cli with Home Assistant credentials to query state or call services. This is intended management behavior, but service calls can alter the running home automation system.
Средний
Ruby/shell backtick execution
```bash
The workflow manually triggers an automation through hass-cli. Triggering automations can send notifications or actuate connected devices, so user confirmation is needed.
Средний
Ruby/shell backtick execution
```bash
The documented workflow runs SSH, git, or Home Assistant CLI operations against the remote /config environment. These commands are legitimate for this skill but carry operational risk if run without confirmation.
Средний
Ruby/shell backtick execution
```bash
The command reads Home Assistant entity state through authenticated hass-cli access. It is mostly read-only, but it exposes household state data and depends on sensitive credentials.
Средний
Ruby/shell backtick execution
```bash
The command reads Home Assistant entity state through authenticated hass-cli access. It is mostly read-only, but it exposes household state data and depends on sensitive credentials.
Средний
Ruby/shell backtick execution
```bash
The workflow instructs copying files to the Home Assistant instance with scp. This can overwrite configuration or dashboard files, so it is a real operational risk even though it is not malicious.
Средний
Ruby/shell backtick execution
```bash
The workflow instructs copying files to the Home Assistant instance with scp. This can overwrite configuration or dashboard files, so it is a real operational risk even though it is not malicious.
Средний
Ruby/shell backtick execution
```bash
The command reads Home Assistant entity state through authenticated hass-cli access. It is mostly read-only, but it exposes household state data and depends on sensitive credentials.
Средний
Ruby/shell backtick execution
```bash
The documented workflow runs SSH, git, or Home Assistant CLI operations against the remote /config environment. These commands are legitimate for this skill but carry operational risk if run without confirmation.
Средний
Ruby/shell backtick execution
1. **Always check configuration** before restart: `ha core check`
The documented workflow runs SSH, git, or Home Assistant CLI operations against the remote /config environment. These commands are legitimate for this skill but carry operational risk if run without confirmation.
Средний
Hidden file access
scp .storage/lovelace.control_center root@homeassistant.local:/config/.storage/
This command copies files into Home Assistant .storage over SSH. That can alter dashboard configuration or registry data, so it is sensitive even when used for legitimate dashboard management.
Средний
Hidden file access
scp .storage/lovelace.new_dashboard root@homeassistant.local:/config/.storage/
This command copies files into Home Assistant .storage over SSH. That can alter dashboard configuration or registry data, so it is sensitive even when used for legitimate dashboard management.
Средний
Hidden file access
scp .storage/lovelace_dashboards root@homeassistant.local:/config/.storage/
This command copies files into Home Assistant .storage over SSH. That can alter dashboard configuration or registry data, so it is sensitive even when used for legitimate dashboard management.
Средний
Hidden file access
scp .storage/lovelace.my_dashboard root@homeassistant.local:/config/.storage/
This command copies files into Home Assistant .storage over SSH. That can alter dashboard configuration or registry data, so it is sensitive even when used for legitimate dashboard management.
Низкий
Hardcoded URL
claude mcp add --transport http context7 https://mcp.context7.com/mcp \
The README configures Claude MCP to use the external Context7 endpoint. This is optional documentation access, but it sends requests and a user API key header to a third-party service.

Факторы риска

🌐 Доступ к сети (3)
📁 Доступ к файловой системе (8)
🔑 Переменные окружения (1)
⚙️ Внешние команды (88)
Поделиться и цитировать этот отчет

Делитесь версионным отчетом об оценке, нейтральным значком, встраиваемой карточкой и цитатами. Skillstore публикует доказательства, не решая, безопасен ли этот Skill.

Открыть версионный отчет
Оценка безопасности

Копировать ссылку на отчёт

https://skillstore.io/skills/komal-skynet-home-assistant-manager/audits/9?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_report

Значок Markdown

[![Skillstore security assessment](https://skillstore.io/badges/skills/komal-skynet-home-assistant-manager/security.svg)](https://skillstore.io/skills/komal-skynet-home-assistant-manager?utm_source=security_passport_badge)

Значок HTML

<a href="https://skillstore.io/skills/komal-skynet-home-assistant-manager?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/komal-skynet-home-assistant-manager/security.svg" alt="Skillstore security assessment" loading="lazy"></a>

Встраиваемая карточка

<iframe src="https://skillstore.io/embed/skills/komal-skynet-home-assistant-manager.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>
Академические ссылки (APA · BibTeX · CFF)

Цитата APA

komal-SkyNET. (2026). home-assistant-manager security audit report (audit version 9) [Author version unspecified]. Skillstore. https://skillstore.io/skills/komal-skynet-home-assistant-manager/audits/9

Цитата BibTeX

@techreport{komal-skynet-komal-skynet-home-assistant-manager-2026, author = {komal-SkyNET}, title = {home-assistant-manager security audit report (audit version 9)}, institution = {Skillstore}, year = {2026}, number = {9}, url = {https://skillstore.io/skills/komal-skynet-home-assistant-manager/audits/9}, note = {Author version unspecified} }

CITATION.cff

cff-version: 1.2.0 message: "If you use this Skill, cite its author and this versioned security audit report." title: "home-assistant-manager security audit report (audit version 9)" version: "unspecified" type: report authors: - name: "komal-SkyNET" date-released: "2026-07-09" url: "https://skillstore.io/skills/komal-skynet-home-assistant-manager/audits/9" identifiers: - type: other value: "skillstore:komal-skynet-home-assistant-manager:audit:9" description: "Skillstore immutable audit report identifier"

Оценка Skillstore

Почему такая оценка Достоверность доказательств: Средний
55
Архитектура
85
Сопровождаемость
87
Контент
71
Сообщество
78
Соответствие спецификации

Что вы можете построить

Развертывание изменений конфигурации Home Assistant

Планирование шагов проверки, развертывания, перезагрузки, рестарта и верификации для YAML, скриптов, сцен и шаблонных сущностей.

Отладка сбоев автоматизаций

Использование логов, ручных запусков, проверок состояния и исправлений шаблонов для изоляции и устранения ошибок автоматизаций.

Создание удобных для планшетов панелей Lovelace

Создание макетов панелей, выбор типов карточек, регистрация панелей хранилища и итерация с быстрыми рабочими процессами предварительного просмотра.

Попробуйте эти промпты

Проверь мою настройку
Проверь настройку моего проекта Home Assistant и скажи, каких предварительных требований для SSH, hass-cli, git и окружения не хватает перед развертыванием изменений.
Безопасно развернуть автоматизацию
Помоги мне создать и развернуть автоматизацию Home Assistant, затем выбрать самый безопасный путь перезагрузки или рестарта и шаги проверки.
Устранить проблему с панелью
Отладь, почему моя панель Lovelace не отображается или имеет ошибки карточек, и проведи меня через проверку, регистрацию, развертывание и проверки в браузере.
Спроектировать полный рабочий процесс
Создай сквозной рабочий процесс изменений Home Assistant, который охватывает локальные правки, проверку, быстрое тестирование, историю git, развертывание, откат, логи и точки подтверждения пользователем.

Лучшие практики

  • Подтверждайте целевой хост, файлы и ожидаемые эффекты для устройств перед выполнением команд SSH, scp, hass-cli, перезагрузки, рестарта или запуска триггеров.
  • Проверяйте синтаксис конфигурации и панелей перед развертыванием, затем просматривайте логи и видимые пользователю результаты после развертывания.
  • Используйте scp для временных итераций, git для стабильных изменений и резервные копии перед редактированием файлов хранилища Home Assistant.

Избегать

  • Не храните долгоживущие токены Home Assistant в общих профилях shell, репозиториях, чат-логах или скриншотах.
  • Не перезапускайте Home Assistant, когда целевая перезагрузка может безопасно применить изменение.
  • Не перезаписывайте файлы панелей .storage и не запускайте автоматизации без одобрения пользователя и плана отката.

Часто задаваемые вопросы

С чем помогает этот навык?
Он помогает планировать правки конфигурации Home Assistant, развертывания, проверки автоматизаций, просмотр логов и рабочие процессы панелей Lovelace.
Требуется ли доступ к моему серверу Home Assistant?
Да. Задокументированные рабочие процессы требуют одобренного пользователем доступа по SSH, доступа hass-cli и учетных данных Home Assistant.
Может ли он создавать панели?
Он предоставляет паттерны для панелей Lovelace, файлов хранилища, регистрации панелей, выбора представлений и макетов, удобных для планшетов.
Может ли он изменять устройства в моем доме?
Он может направлять вызовы сервисов и запуск автоматизаций, которые могут повлиять на устройства, если пользователь одобрит эти команды.
Это только для Claude Code?
Навык написан для рабочих процессов в стиле Claude Code, а метаданные marketplace также указывают совместимость с Claude и Codex.
Что нужно проверить перед использованием?
Проверьте учетные данные, целевой хост, одобрения команд, резервные копии, сгенерированную конфигурацию и любые автоматизации, которые могут повлиять на физические устройства.

Сведения для разработчиков

Автор

komal-SkyNET

Лицензия

MIT

Ревизия Skillstore

r1

Примечание о версии

Автор не указал версию.

Ссылка

b959ebfd1043a07c0c4378ab94ca4342cb0259f5

Актуальность поддержки

21.07.2026

Использование

8 загрузок · 236 просмотров

Структура файлов