0
/ 100
Fresh project with a decent start. Tests and CI now will set it apart.
๐ซ A fast systems programming language with Python-like syntax, static typing, LLVM-powered native code generation, and a full modern toolchain.
Documentation
74
No license detected.
โ Add a LICENSE file. Without one, nobody can legally use, copy, or contribute to your code.
README is present.
README documents how to install the project.
Contributing guide is too short for full depth credit (โ6 pts). 400+ words earns the full +12 pts.
โ Add setup instructions, code style notes, and how to run tests.
Engineering
29
No CI configuration detected in this repository.
โ If your CI lives elsewhere (a private repo that builds this one) or this project is itself a CI/CD tool, mark this check Not Applicable. Otherwise add a GitHub Actions workflow that runs tests on each push. It takes 15 minutes and reassures contributors their changes won't break things.
No Rust linting or formatting enforced.
โ Add `cargo clippy -- -D warnings` and `cargo fmt --check` as CI steps, and optionally a rustfmt.toml for project-specific style rules.
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.
Cargo.toml has dev-dependencies (may include test tooling).
Lockfile present (nimble-lsp-vscode/package-lock.json). Installs are reproducible.
Project health
86
Dependency manifest found (Cargo.toml).
Repository has a description.
Actively maintained (pushed within the last month).
.gitignore present.
Repository health signals
Activity, community, and responsiveness at scan time
Activity
- -Commits (30d / 90d)
- 0Forks
- 0Releases
Community
- -Community health
- -authors own >50% of commits
- 5Watchers
Responsiveness
- -Median issue response
- -Median PR merge time
- 0Open issues
Repository files17 root entries
- .github
- benches
- docs
- errors
- examples
- nimble-lsp-vscodeGood: Lockfile present (nimble-lsp-vscode/package-lock.json). Installs are reproducible.
- src
- std
- .gitignoreGood: .gitignore present.
- build.py
- Cargo.tomlGood: Dependency manifest found (Cargo.toml).
- cleanup.py
- CONTRIBUTING.mdIssue: Contributing guide is too short for full depth credit (โ6 pts). 400+ words earns the full +12 pts.Fix: Add setup instructions, code style notes, and how to run tests.Good: Contributing guide includes setup/install instructions.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.
- logo.png
- 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.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.Good: README documents how to install the project.Good: README documents how to run the project.
- run_examples.py
- setup-lsp.ps1