Getting some notice. Tests and CI would be the fastest wins.
Books! ๐
Documentation
30
README is present.
No install instructions found in the README (โ45 pts).
โ Add a section showing how to install dependencies.
Contributing guide is detailed and thorough.
Licensed under MIT.
Engineering
67
No issue or PR templates found (โ100 pts).
โ Add .github/ISSUE_TEMPLATE/ with bug_report.md and feature_request.md to guide contributors. It dramatically improves issue quality.
CI is configured (.github/workflows/android.yml).
Lockfile present (Gemfile.lock). Installs are reproducible.
Test files detected (__tests__).
Linter or formatter configured (devDependency in package.json).
Project health
70
No repository description set on GitHub (โ60 pts).
โ Add a one-line description in the repo Settings โ About. It appears in search results and social previews.
Dependency manifest found (Gemfile).
Actively maintained (pushed within the last month).
.gitignore present.
Repository files20 root entries
- __tests__Good: Test files detected (__tests__).
- .githubGood: CI is configured (.github/workflows/android.yml).
- android
- config
- images
- ios
- src
- .gitignoreGood: .gitignore present.
- App.js
- app.json
- babel.config.js
- bun.lock
- CONTRIBUTING.mdGood: Contributing guide is detailed and thorough.Good: Contributing guide includes setup/install instructions.Issue: Contributing guide lacks a code style section (โ8 pts).Fix: Describe your linting/formatting rules and how to run them.Issue: Contributing guide lacks a testing section (โ8 pts).Fix: Show contributors how to run the test suite (e.g. npm test, pytest, cargo test).Issue: Contributing guide lacks a PR workflow section (โ8 pts).Fix: Explain how to fork, branch, and open a pull request so contributors know what to expect.Issue: Contributing guide has no code examples (โ5 pts).Fix: Add code blocks showing example commands for setup, running tests, and submitting a PR.
- GemfileGood: Dependency manifest found (Gemfile).
- Gemfile.lockGood: Lockfile present (Gemfile.lock). Installs are reproducible.
- index.js
- LICENSEGood: Licensed under MIT.
- metro.config.js
- package.json
- README.mdGood: README is present.Issue: README is very short (โ20 pts). 400+ characters earns +10 pts; 1,500+ earns +20 pts.Fix: Add an Overview, Install, Usage, and Contributing section at minimum.Issue: README has little structure (โ15 pts). Add 2-3 headings for +8 pts; 4+ earns +15 pts.Fix: Break it into sections (Overview, Install, Usage, Contributing) using Markdown headings.Issue: 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.Issue: README has no code examples (โ15 pts).Fix: Show a quick-start snippet so contributors can see what using your project looks like.Issue: No live demo link in the README (โ20 pts).Fix: Link to a deployed version, docs site, or demo video. Users want to see it running.Issue: 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.Issue: No install instructions found in the README (โ45 pts).Fix: Add a section showing how to install dependencies.Issue: No run or usage instructions found (โ45 pts).Fix: Add a section showing how to start or use the project.