90/ 100 ยท A
A well-known project done right. Strong docs and solid engineering throughout.
A GraphQL library for Python that leverages type annotations ๐
Python4,673 starsMITupdated 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.
- 1CI/CDEngineeringInfo
Add a lint step (e.g. `npm run lint`, `ruff check .`, `cargo clippy`) to catch style issues automatically.
- 2Install and run instructionsDocumentationInfo
Add a .env.example listing all required environment variables so contributors know what to set up.
- 3Issue and PR templatesEngineeringInfo
Add .github/ISSUE_TEMPLATE/ with bug_report.md and feature_request.md to guide contributors. It dramatically improves issue quality.
Detailed breakdown
Documentation
95- README100
- README is present.
- README is well structured with multiple sections.
- README includes screenshots or visuals. Great for first impressions.
- README has code examples.
- README links to a live demo or deployed app.
- README includes status badges.
- Install and run instructions90
- README documents how to install the project.
- README documents how to run 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 MIT.
- Contributing guide86
- Contributing guide is detailed and thorough.
- Contributing guide lacks a setup section (โ12 pts).Show new contributors how to get a local dev environment running.
- Contributing guide describes code style expectations.
- Contributing guide explains how to run tests.
- Contributing guide describes the PR/review workflow.
- Contributing guide includes code examples.
- Optional: add a Code of Conduct (+5 pts).A CODE_OF_CONDUCT.md signals that your project is welcoming. GitHub has a template you can add in one click.
Engineering
83- Tests100
- Test files detected (e2e/src/tests).
- Pytest is fully configured in pyproject.toml with testpaths and test files detected.
- CI/CD85
Not applicable?
- CI is configured (.github/workflows/test.yml).
- CI workflow runs tests.
- CI runs on pull requests, not just on pushes to main.
- CI does not appear to run a linter (โ15 pts).Add a lint step (e.g. `npm run lint`, `ruff check .`, `cargo clippy`) to catch style issues automatically.
- CI runs type checking (tsc, mypy, cargo check, etc.).
- CI reports or uploads test coverage.
- CI tests across multiple environments or versions.
- Linting and formatting100
- Linter or formatter configured (.editorconfig).
- pyproject.toml configures both a formatter/linter (ruff/black) and type checking (mypy).
- Reproducibility100
- Lockfile present (uv.lock). Installs are reproducible.
- Environment pinned via .devcontainer/Dockerfile.
- Dependabot covers 5 ecosystems (uv, npm, docker, docker, github-actions). Dependencies stay current.
- Issue and PR templates0
- No issue or PR templates found (โ90 pts).Add .github/ISSUE_TEMPLATE/ with bug_report.md and feature_request.md to guide contributors. It dramatically improves issue quality.
- 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).
- 4,673 stars.
- Housekeeping100
- .gitignore present.
Repository files25 root entries
- .devcontainerGood: Environment pinned via .devcontainer/Dockerfile.
- .githubGood: CI is configured (.github/workflows/test.yml).Good: Dependabot covers 5 ecosystems (uv, npm, docker, docker, github-actions). Dependencies stay current.
- docs
- e2eGood: Test files detected (e2e/src/tests).
- federation-compatibility
- strawberry
- tests
- .alexignore
- .alexrc
- .coveragerc
- .dockerignore
- .editorconfigGood: Linter or formatter configured (.editorconfig).
- .gitignoreGood: .gitignore present.
- .gitpod.yml
- .pre-commit-config.yaml
- .prettierrc
- CHANGELOG.mdGood: Contributing guide is detailed and thorough.Info: Contributing guide lacks a setup section (โ12 pts).Fix: Show new contributors how to get a local dev environment running.Good: Contributing guide describes code style expectations.Good: Contributing guide explains how to run tests.Good: Contributing guide describes the PR/review workflow.Good: Contributing guide includes code examples.
- CONTRIBUTING.md
- LICENSEGood: Licensed under MIT.
- mypy.ini
- noxfile.py
- pyproject.tomlGood: Dependency manifest found (pyproject.toml).
- README.mdGood: README is present.Good: README is well structured with multiple sections.Good: README includes screenshots or visuals. Great for first impressions.Good: README has code examples.Good: README links to a live demo or deployed app.Good: README includes status badges.Good: README documents how to install the project.Good: README documents how to run the project.
- setup.py
- uv.lockGood: Lockfile present (uv.lock). Installs are reproducible.