83/ 100 · B
Popular and well-maintained. A little polish away from elite status.
:house_with_garden: Open source home automation that puts local control and privacy first.
Python87,717 starsApache-2.0updated 2d ago
DocumentationREADME, setup, examples, license
EngineeringTests, CI, linting, lockfiles
Project healthDescription, activity, stars, deps
What to fix first
The highest-impact improvements for this repo.
- 1READMEDocumentationWarning
Add a GIF, screenshot, or logo image. It is the fastest way to show what your project does.
- 2READMEDocumentationInfo
Break it into sections (Overview, Install, Usage, Contributing) using Markdown headings.
- 3READMEDocumentationInfo
Show a quick-start snippet so contributors can see what using your project looks like.
Detailed breakdown
Documentation
56- README40
- README is present.
- README has little structure (0 pts); 2-3 headings earns +8 pts, 4+ earns +15 pts.Break it into sections (Overview, Install, Usage, Contributing) using Markdown headings.
- No screenshots or images in the README (−20 pts).Add a GIF, screenshot, or logo image. It is the fastest way to show what your project does.
- README has no code examples (−15 pts).Show a quick-start snippet so contributors can see what using your project looks like.
- README links to a live demo or deployed app.
- No status badges in the README (−10 pts).Add CI/build status badges from shields.io or your CI provider to signal project health.
- Install and run instructions45
- README documents how to install the project.
- No run or usage instructions found (−45 pts).Add a section showing how to start or use the project.
- If your project uses environment variables, add a .env.example listing them (+10 pts).Add a .env.example listing all required environment variables so contributors know what to set up.
- License100
- Licensed under Apache-2.0.
- Contributing guide64
- Contributing guide is present (+6 pts for length); 400+ words earns the full +12 pts.
- Contributing guide lacks a setup section (−12 pts).Show new contributors how to get a local dev environment running.
- Contributing guide lacks a code style section (−8 pts).Describe your linting/formatting rules and how to run them (e.g. npm run lint, ruff check .).
- Contributing guide lacks a testing section (−8 pts).Show contributors how to run the test suite (e.g. npm test, pytest, cargo test).
- Contributing guide describes the PR/review workflow.
- Contributing guide has no code examples (−5 pts).Add code blocks showing example commands for setup, running tests, and submitting a PR.
- Code of conduct present.
Engineering
94- Tests100
- Test files detected (homeassistant/components/assist_satellite/connection_test.py).
- Pytest is fully configured in pyproject.toml with testpaths and test files detected.
- Coverage reporting is configured in pyproject.toml.
- CI/CD100
Not applicable?
- CI is configured (.github/workflows/builder.yml).
- CI workflow runs tests.
- CI runs on pull requests, not just on pushes to main.
- CI workflow runs a lint or format check.
- CI runs type checking (tsc, mypy, cargo check, etc.).
- CI reports or uploads test coverage.
- CI caches dependencies for faster runs.
- CI tests across multiple environments or versions.
- Linting and formatting60
- Linter or formatter configured (.prettierrc.js).
- Reproducibility92
- Lockfile present (requirements.txt). Installs are reproducible.
- Environment pinned via Dockerfile.
- Consider using a multi-stage Dockerfile (builder + runtime stage) for smaller, more secure images.Use a multi-stage Dockerfile.
- Dependabot configured for github-actions.
- Dependabot only covers one ecosystem (+12 pts; covering 2+ earns +20 pts).Add additional package-ecosystem entries (especially github-actions) to keep all dependencies current.
- Issue and PR templates90
- Issue or PR templates present.
- Optional: add a SECURITY.md.A SECURITY.md explains how to responsibly disclose vulnerabilities. Worth adding once the project has real users.
Project health
100- Dependency manifest100
- Dependency manifest found (pyproject.toml).
- pyproject.toml has a [project] table with package metadata.
- pyproject.toml includes a description.
- pyproject.toml specifies requires-python, preventing installs on incompatible versions.
- pyproject.toml has a [build-system] table. The package can be built and published.
- Repository metadata100
- Repository has a description.
- Primary language detected: Python.
- pyproject.toml [project] metadata is complete (description, authors, urls).
- Activity100
- Actively maintained (pushed within the last month).
- 87,717 stars.
- Housekeeping100
- .gitignore present.
Repository files42 root entries
- .agent
- .claude
- .devcontainer
- .gemini
- .githubGood: CI is configured (.github/workflows/builder.yml).Good: Dependabot configured for github-actions.Good: Issue or PR templates present.
- .vscode
- homeassistantGood: Test files detected (homeassistant/components/assist_satellite/connection_test.py).
- machine
- pylint
- rootfs
- script
- tests
- .core_files.yaml
- .dockerignore
- .git-blame-ignore-revs
- .gitattributes
- .gitignoreGood: .gitignore present.
- .hadolint.yaml
- .pre-commit-config.yaml
- .prettierignore
- .prettierrc.jsGood: Linter or formatter configured (.prettierrc.js).
- .python-version
- .strict-typing
- .yamllint
- AGENTS.md
- CLA.md
- CLAUDE.md
- CODE_OF_CONDUCT.mdGood: Code of conduct present.
- codecov.yml
- CODEOWNERS
- CONTRIBUTING.mdGood: Contributing guide is present (+6 pts for length); 400+ words earns the full +12 pts.Info: Contributing guide lacks a setup section (−12 pts).Fix: Show new contributors how to get a local dev environment running.Info: Contributing guide lacks a code style section (−8 pts).Fix: Describe your linting/formatting rules and how to run them (e.g. npm run lint, ruff check .).Info: Contributing guide lacks a testing section (−8 pts).Fix: Show contributors how to run the test suite (e.g. npm test, pytest, cargo test).Good: Contributing guide describes the PR/review workflow.Info: Contributing guide has no code examples (−5 pts).Fix: Add code blocks showing example commands for setup, running tests, and submitting a PR.
- DockerfileGood: Environment pinned via Dockerfile.
- Dockerfile.dev
- LICENSE.mdGood: Licensed under Apache-2.0.
- MANIFEST.in
- mypy.ini
- pyproject.tomlGood: Dependency manifest found (pyproject.toml).
- README.rstGood: README is present.Info: README has little structure (0 pts); 2-3 headings earns +8 pts, 4+ earns +15 pts.Fix: Break it into sections (Overview, Install, Usage, Contributing) using Markdown headings.Warning: No screenshots or images in the README (−20 pts).Fix: Add a GIF, screenshot, or logo image. It is the fastest way to show what your project does.Info: README has no code examples (−15 pts).Fix: Show a quick-start snippet so contributors can see what using your project looks like.Good: README links to a live demo or deployed app.Info: No status badges in the README (−10 pts).Fix: Add CI/build status badges from shields.io or your CI provider to signal project health.Good: README documents how to install the project.Warning: No run or usage instructions found (−45 pts).Fix: Add a section showing how to start or use the project.
- requirements_all.txt
- requirements_test_pre_commit.txt
- requirements_test.txt
- requirements.txtGood: Lockfile present (requirements.txt). Installs are reproducible.