smart-home-engine 0.23.3 → 0.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -26,6 +26,8 @@ npm install -g smart-home-engine
26
26
  she
27
27
  ```
28
28
 
29
+ All state is kept in `~/.she`
30
+
29
31
  **Install as a systemd service** (Debian/Ubuntu/Raspberry Pi OS):
30
32
 
31
33
  ```bash
@@ -34,7 +36,7 @@ sudo she --install
34
36
  sudo systemctl start smart-home-engine
35
37
  ```
36
38
 
37
- `she --install` creates a dedicated `she` system user and installs + enables the systemd unit. All state is kept in `/home/she/.she/`.
39
+ `she --install` creates a dedicated `she` system user and installs + enables the systemd unit. All state is kept in `/var/lib/she/`.
38
40
 
39
41
  > **Tip:** use `journalctl -u smart-home-engine -o cat -f` to follow logs with colours intact.
40
42
 
@@ -51,13 +53,6 @@ Then open **http://localhost:8080** and start creating scripts
51
53
  | [sheDB](doc/db/README.md) | Embedded document store — script API, views, examples |
52
54
  | [Examples](doc/examples.md) | Real-world script patterns |
53
55
 
54
- ## Trademark and Certification Notices
55
-
56
- > [!IMPORTANT]
57
- > This project implements/supports the Matter protocol. Matter™ is a trademark of the Connectivity Standards Alliance.
58
- >
59
- > This project is **not** certified by, endorsed by, supported by, or affiliated with the Connectivity Standards Alliance.
60
-
61
56
  ## Quick look
62
57
 
63
58
  ![AI assistant proposing changes to an existing script with inline diff](doc/screenshots/she-ai-2.png) [... more screenshots](doc/screenshots.md)
@@ -70,12 +65,19 @@ At some point every smart home platform starts promising simplicity and ends up
70
65
 
71
66
  Spend your time automating your home, not maintaining your automation software. Less clicking through configuration screens, fewer plugins talking to plugins, and no need for YAML archaeology when something stops working. Just a straightforward path from devices to automations, built on open standards and designed for people who prefer understanding their system over managing it.
72
67
 
73
- The ideas behind **she** are the result of more than a decade of building smart home software. I started publishing home automation projects on GitHub in 2012 with ccu.io and later initiated the ioBroker project before leaving it in 2014. Shortly after I worked on [mqtt-smarthome](https://github.com/mqtt-smarthome/mqtt-smarthome) and created [mqtt-scripts](https://github.com/hobbyquaker/mqtt-scripts), which has been running my own home automation ever since. Over the years I have continued working professionally in the smart home industry.
68
+ The ideas behind **she** are the result of more than a decade of building smart home software. I started publishing home automation projects on GitHub in 2012 with ccu.io and later initiated the ioBroker project before leaving it in 2014. Shortly after I worked on [mqtt-smarthome](https://github.com/mqtt-smarthome/mqtt-smarthome), contributed to the Node-RED ecosystem and created [mqtt-scripts](https://github.com/hobbyquaker/mqtt-scripts), which has been running my own home automation ever since. Over the years I have continued working professionally in the smart home industry.
74
69
 
75
70
  Recently, while experimenting with GitHub Copilot, I started modernizing parts of my existing software stack. What began as a small refactoring exercise quickly evolved into a bigger idea: replacing my twelve-year-old automation engine with a modern successor. The result is **she** - a combination of the proven concepts from mqtt-scripts, the architecture of mqttDB, a built-in Matter controller and a modern web interface with AI assistance. A system that embraces open standards, integrates the growing Matter ecosystem, and remains true to the principles that made mqtt-scripts reliable enough to run a home for more than a decade.
76
71
 
77
72
  The goal is simple: a smart home that remains understandable years later. No migration-guide marathons, no plugin jungles. Just automation infrastructure that grows with your home instead of growing into a hobby of its own.
78
73
 
74
+ ## Trademark and Certification Notices
75
+
76
+ > [!IMPORTANT]
77
+ > This project implements/supports the Matter protocol. Matter™ is a trademark of the Connectivity Standards Alliance.
78
+ >
79
+ > This project is **not** certified by, endorsed by, supported by, or affiliated with the Connectivity Standards Alliance.
80
+
79
81
  ## License
80
82
 
81
83
  GPL-3.0 © [Sebastian Raff](https://github.com/hobbyquaker)