تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:٠
forks:٠
updated:٧ فبراير ٢٠٢٦ في ١٦:١٨
SKILL.md
| name | homeassistant |
| description | Control smart home devices and query Home Assistant via its REST API |
| metadata | {"openclaw":{"requires":{"env":["HA_BASE_URL","HA_TOKEN"]},"primaryEnv":"HA_TOKEN","emoji":"🏠"}} |
You have access to a Home Assistant instance via the following tools. Use them to help users monitor and control their smart home.
domain? — List entity states. Optionally filter by domain (e.g. domain="light"). Returns current state, attributes, and timestamps. Can be large without a filter; prefer ha_get_state for a single entity.entity_id — Get a single entity's current state and attributes.entity_id start_time? end_time? minimal_response? — Get historical state changes. entity_id can be comma-separated for multiple entities. Defaults to the last 24 hours.entity_id? start_time? end_time? — Get event log entries. Filters to a single entity or shows all.domain service entity_id? service_data? — Call any HA service. This is the primary way to control devices.
domain="light" service="turn_on" entity_id="light.living_room"domain="light" service="turn_on" entity_id="light.bedroom" service_data='{"brightness": 128}'domain="lock" service="lock" entity_id="lock.front_door"domain="climate" service="set_temperature" entity_id="climate.main" service_data='{"temperature": 72}'domain="automation" service="trigger" entity_id="automation.morning_routine"entity_id state attributes? — Update an entity's state representation in HA. Note: this does NOT control physical devices (use ha_call_service for that). Useful for creating virtual sensors or updating input helpers.entity_id — Delete an entity's state from HA. Only removes the state object, not the device.event_type event_data? — Fire a custom event. Can trigger automations listening for that event.entity_id start end — Get events for a specific calendar within a date range.template — Render a Jinja2 template using HA's template engine. Useful for evaluating complex state expressions.configuration.yaml file.name data? — Handle a named intent (e.g. "SetTimer").Entity IDs follow the format <domain>.<object_id>:
light.living_room, switch.kitchen_plug, sensor.temperatureclimate.main_thermostat, lock.front_door, cover.garageautomation.morning_lights, script.bedtime, scene.movie_night| Action | Domain | Service | Notes |
|---|---|---|---|
| Turn on | light / switch / fan | turn_on | Add brightness, color via service_data |
| Turn off | light / switch / fan | turn_off | |
| Toggle | light / switch / fan | toggle | |
| Lock | lock | lock | |
| Unlock | lock | unlock | |
| Open | cover | open_cover | Garage doors, blinds |
| Close | cover | close_cover | |
| Set temp | climate | set_temperature | {"temperature": 72} |
| Set mode | climate | set_hvac_mode | {"hvac_mode": "heat"} |
| Play | media_player | media_play | |
| Pause | media_player | media_pause | |
| Volume | media_player | volume_set | {"volume_level": 0.5} |
| Trigger | automation | trigger | |
| Run | script | turn_on | or call script. directly |
| Activate | scene | turn_on |
ha_get_states or ha_get_services to explore.ha_get_state with the exact entity_id.ha_get_state to verify the change took effect.ha_get_history with a relevant time window.