{"id":42037746,"url":"https://github.com/johnpc/jpc-homie","last_synced_at":"2026-01-26T05:11:13.390Z","repository":{"id":331284455,"uuid":"1111412448","full_name":"johnpc/jpc-homie","owner":"johnpc","description":"Smart home assistant powered by AI","archived":false,"fork":false,"pushed_at":"2026-01-15T00:42:47.000Z","size":937,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-15T07:40:13.669Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/johnpc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-06T22:09:44.000Z","updated_at":"2026-01-15T00:41:05.000Z","dependencies_parsed_at":"2026-01-06T02:03:09.536Z","dependency_job_id":null,"html_url":"https://github.com/johnpc/jpc-homie","commit_stats":null,"previous_names":["johnpc/jpc-homie"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/johnpc/jpc-homie","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fjpc-homie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fjpc-homie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fjpc-homie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fjpc-homie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johnpc","download_url":"https://codeload.github.com/johnpc/jpc-homie/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnpc%2Fjpc-homie/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28767049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T03:54:34.369Z","status":"ssl_error","status_checked_at":"2026-01-26T03:54:33.031Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-26T05:11:12.925Z","updated_at":"2026-01-26T05:11:13.385Z","avatar_url":"https://github.com/johnpc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Homie - Smart Home Assistant\n\nA conversational AI assistant for controlling your Home Assistant smart home devices.\n\n## Features\n\n- 🎤 Voice input support\n- 🎵 Music playback via Music Assistant\n- 💡 Light control and scenes\n- 🌡️ Climate control\n- 🔧 Real-time tool usage visualization\n- 📱 Mobile-friendly interface\n- 📶 Eero network device monitoring\n\n## Quick Start with Docker\n\n### Using Docker Compose (Recommended)\n\n```bash\n# Create .env file\ncat \u003e .env \u003c\u003c EOF\nHOME_ASSISTANT_URL=https://your-home-assistant.duckdns.org\nHOME_ASSISTANT_TOKEN=your_long_lived_access_token\nJELLYFIN_URL=https://your-jellyfin-server.com\nJELLYFIN_API_KEY=your_jellyfin_api_key\nJELLYFIN_USERNAME=your_jellyfin_username\nJELLYFIN_PASSWORD=your_jellyfin_password\nEOF\n\n# Create data directory for Eero session\nmkdir -p data\n\n# Start the service\ndocker-compose up -d\n\n# View logs\ndocker-compose logs -f\n\n# Stop the service\ndocker-compose down\n```\n\n### Setting up Eero Network Integration (Optional)\n\nTo enable mobile device monitoring:\n\n1. **Authenticate with Eero** (run locally first):\n   ```bash\n   npm install\n   npx ts-node eero-auth.ts\n   ```\n   Follow the prompts to enter your Eero account email and verification code.\n\n2. **Copy the cookie to the data directory**:\n   ```bash\n   cp eero-session.cookie data/\n   ```\n\n3. **Restart the container**:\n   ```bash\n   docker-compose restart\n   ```\n\nThe Eero session cookie will be automatically refreshed and persisted in the `./data` volume.\n\n### Using Docker directly\n\n```bash\ndocker run -d \\\n  --name homie \\\n  -p 3000:3000 \\\n  -v $(pwd)/data:/app/data \\\n  -e HOME_ASSISTANT_URL=https://your-ha.duckdns.org \\\n  -e HOME_ASSISTANT_TOKEN=your_token \\\n  -e EERO_COOKIE_PATH=/app/data/eero-session.cookie \\\n  mrorbitman/homie:main\n```\n\n### Using pre-built image from Docker Hub\n\n```bash\ndocker pull mrorbitman/homie:main\n```\n\nOpen [http://localhost:3000](http://localhost:3000)\n\n## Local Development\n\n```bash\nnpm install\nnpm run dev\n```\n\n## Environment Variables\n\n- `HOME_ASSISTANT_URL` - Your Home Assistant URL\n- `HOME_ASSISTANT_TOKEN` - Long-lived access token from Home Assistant\n- `MUSIC_ASSISTANT_URL` - (Optional) Music Assistant server URL for full queue display\n\nGet your token from Home Assistant:\n\n1. Go to Profile → Security → Long-Lived Access Tokens\n2. Click \"Create Token\"\n3. Copy the token\n\n## GitHub Actions Setup\n\nImages are automatically built and pushed to Docker Hub on:\n\n- Push to `main` branch → tagged as `main`\n- Version tags (e.g., `v1.0.0`) → tagged as `1.0.0` and `1.0`\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnpc%2Fjpc-homie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohnpc%2Fjpc-homie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnpc%2Fjpc-homie/lists"}