{"id":25632543,"url":"https://github.com/fastender/ha-search-card","last_synced_at":"2026-05-16T13:04:35.847Z","repository":{"id":278221860,"uuid":"934920608","full_name":"fastender/ha-search-card","owner":"fastender","description":"Home Assistant Search Card","archived":false,"fork":false,"pushed_at":"2025-02-25T19:52:31.000Z","size":65,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-30T15:30:23.955Z","etag":null,"topics":["hacs","hacs-plugin","hass","home-assistant","homeassistant","searching"],"latest_commit_sha":null,"homepage":"","language":null,"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/fastender.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}},"created_at":"2025-02-18T16:06:58.000Z","updated_at":"2025-02-25T19:52:22.000Z","dependencies_parsed_at":"2025-02-18T17:23:18.758Z","dependency_job_id":"ef7d17a5-7c4a-4b5f-b8a1-8f1807b3779a","html_url":"https://github.com/fastender/ha-search-card","commit_stats":null,"previous_names":["fastender/ha-search-card"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/fastender/ha-search-card","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastender%2Fha-search-card","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastender%2Fha-search-card/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastender%2Fha-search-card/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastender%2Fha-search-card/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fastender","download_url":"https://codeload.github.com/fastender/ha-search-card/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastender%2Fha-search-card/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33103971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"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":["hacs","hacs-plugin","hass","home-assistant","homeassistant","searching"],"created_at":"2025-02-22T21:18:01.744Z","updated_at":"2026-05-16T13:04:35.811Z","avatar_url":"https://github.com/fastender.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Home Assistant Search Card\n\nA custom card for Home Assistant that provides real-time search functionality across all your entities. Quickly find and access any entity in your Home Assistant instance through an intuitive search interface.\n\n![Example Screenshot](https://raw.githubusercontent.com/fastender/ha-search-card/main/examples/screenshot.png)\n\n## Features\n\n- 🔍 Real-time search across all Home Assistant entities\n- 🏠 Filter by rooms, device types, and names\n- 🎨 Automatically adapts to your Home Assistant theme\n- 📱 Responsive design for all screen sizes\n- ⚡ Fast performance with optimized search\n- 🔌 Easy installation and configuration\n\n## Installation\n\n### Option 1: HACS (Recommended)\n\n1. Open HACS in Home Assistant\n2. Click the menu icon in the top right corner\n3. Select \"Custom repositories\"\n4. Add `https://github.com/fastender/ha-search-card` with category \"Lovelace\"\n5. Click \"Install\"\n6. Restart Home Assistant\n\n### Option 2: Manual Installation\n\n1. Download `ha-search-card.js` from the latest release\n2. Copy it to your `www` directory in Home Assistant\n3. Add the following to your `configuration.yaml`:\n```yaml\nfrontend:\n  extra_module_url:\n    - /local/ha-search-card.js\n```\n4. Restart Home Assistant\n\n## Usage\n\n### Basic Configuration\n\nAdd the card to your dashboard:\n```yaml\ntype: 'custom:ha-search-card'\n```\n\n### Advanced Configuration\n\n```yaml\ntype: 'custom:ha-search-card'\ntitle: 'Entity Search'\nicon: 'mdi:magnify'\nexcluded_entities:\n  - sensor.excluded_sensor\nincluded_domains:\n  - light\n  - switch\nshow_room_tags: true\nshow_type_tags: true\n```\n\n### Configuration Options\n\n| Option | Type | Default | Description |\n|--------|------|---------|-------------|\n| title | string | 'Entity Search' | Card title |\n| icon | string | 'mdi:magnify' | Search icon |\n| excluded_entities | list | [] | Entities to exclude from search |\n| included_domains | list | [] | Only include these domains |\n| show_room_tags | boolean | true | Show room tags on entity cards |\n| show_type_tags | boolean | true | Show entity type tags |\n\n## Development\n\n### Setup\n\n1. Clone the repository\n```bash\ngit clone https://github.com/fastender/ha-search-card\ncd ha-search-card\n```\n\n2. Install dependencies\n```bash\nnpm install\n```\n\n3. Start development server\n```bash\nnpm start\n```\n\n### Build\n\n```bash\nnpm run build\n```\n\n### Contributing\n\nContributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests.\n\n## Support\n\n- [Report an issue](https://github.com/fastender/ha-search-card/issues)\n- [Home Assistant Community Forum](https://community.home-assistant.io/)\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Thanks to the Home Assistant community for feedback and contributions\n- Inspired by the need for better entity management in large Home Assistant installations\n\n## Changelog\n\n### [1.0.0] - 2025-02-18\n- Initial release\n- Real-time search functionality\n- Theme integration\n- Responsive design\n\n### [1.0.1] - 2025-02-18\n- Added room tag support\n- Improved search performance\n- Fixed icon rendering issues\n\n## Roadmap\n\n- [ ] Add fuzzy search support\n- [ ] Implement group filtering\n- [ ] Add custom styling options\n- [ ] Support for entity state filtering\n- [ ] Add localization support\n\n## FAQ\n\n**Q: Can I use this card with YAML-configured dashboards?**  \nA: Yes, the card works with both UI and YAML-configured dashboards.\n\n**Q: Does it work with all entity types?**  \nA: Yes, the card supports all Home Assistant entity types and will show appropriate icons for each.\n\n**Q: How can I customize the styling?**  \nA: The card automatically adapts to your Home Assistant theme. Additional styling options will be added in future releases.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastender%2Fha-search-card","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffastender%2Fha-search-card","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastender%2Fha-search-card/lists"}