A comprehensive home automation and monitoring system with Python-based IoT integrations, ML-powered analytics, and smart device management.
# Clone the repository
git clone https://github.com/DeviationLabs/homely-vibes.git
cd homely-vibes
# Setup development environment (installs dependencies and git hooks)
make setup
# Or manual setup:
uv sync --extra dev
pre-commit install
# Run all tests
make test
make lint # Check code quality
# Code formatting and linting
make lint-fix # Fix all linting issues
# Run specific services (see individual folder READMEs for details)
uv run python Tesla/manage_power_clean.py
uv run python RachioFlume/rfmanager.py
All sensitive data (API keys, passwords, tokens, device IPs) must be stored in config/local.yaml, which is gitignored and never committed to the repository.
Copy the template and fill in your values:
bash
cp config/local.yaml.example config/local.yaml
# Edit config/local.yaml with your actual credentials and device IPs
The config/default.yaml file contains safe placeholder values and is committed to git.
Never hardcode secrets or device IPs in source code or tests. Always read from config:
python
from lib.config import get_config
cfg = get_config()
api_key = cfg.rachio.api_key # β
Good
# api_key = "abc123..." # β Never do this
See config/default.yaml for the full structure and config/local.yaml.example for a template.
| Component | Description | Documentation |
|---|---|---|
| π August | August Smart Lock monitoring with automated unlock alerts and pushover notifications for home security. | π README |
| π€ BimpopAI | RAG (Retrieval Augmented Generation) system with AI voice assistant, indexing, and Streamlit frontend. A startup concept for business intelligence in Mom-n-Pop stores. | π README |
| π BrowserAlert | Web usage monitoring and alerting system for tracking browsing activity and digital wellness. | π README |
| π GarageCheck | Machine learning-based garage door status detection using image classification and computer vision. | π README |
| πΊοΈ GPXParser | GPX track analysis and processing tools for GPS data visualization and route analysis. | π README |
| π§ LambdaEmailFwder | AWS Lambda function for automated email forwarding and intelligent message processing. | π README |
| π οΈ lib | Shared utilities: OmegaConf config, Pushover / Mailer / Twilio, atomic secret I/O, POSIX file lock. Used by every module. | - |
| π NetworkCheck | Network uplink speedtest with outcome-driven Pushover priority and external IP reporter. | π README |
| π₯οΈ NodeCheck | System node monitoring with continuous heartbeat tracking and automated device management. | π README |
| π΅ NoShorts | iOS app that wraps YouTube and strips all Shorts content via JS injection β clean YouTube without vertical video. | π README |
| π PersonalCalSync | Google Apps Script that syncs personal calendar events to enterprise calendar as private busy-blockers, preserving real event titles visible only to you. | π README |
| π§ RachioFlume | Water usage tracking integration between Rachio irrigation systems and Flume water monitoring. | π README |
| πΏ Rheem | Rheem/EcoNet water heater monitor β P2 when the tank is empty, P1 at 1/3rd full, silent clear at 2/3rds. Cron run-once via the unofficial pyeconet (ClearBlade) API. | π README |
| π¨ RingBeams | Ring Beams motion sensors + Ring Alarm contact/motion sensors, via Node.js sidecar over socket.io (ring-client-api). P1 battery, P0 tamper. | π README |
| πΈ RingSecurity | Ring cameras + doorbells daily health check via REST β P1 low-battery, P0 offline. | π README |
| πΌοΈ SamsungFrame | Samsung Frame TV art manager with batch upload, HEIC conversion, and slideshow control. | π README |
| β‘ Tesla | Tesla Powerwall monitoring and intelligent power management automation for home energy optimization. | π README |
| ποΈ VoiceNotes | Wispr Flow-style local push-to-talk voice transcription on macOS. Hold β₯-right, speak, release β text streams to Markdown via whisper.cpp + Metal. No cloud. | π README |
| ποΈ VSCodeSidebarNotes | VS Code / Cursor extension: markdown sidebar that persists across restarts and is writable by Claude for live session summaries. | π README |