RepoBoost is a Python command-line tool that audits GitHub repositories and suggests practical improvements for better open-source presentation.
It helps developers make their repositories easier to understand, trust, install, fix, and share.
RepoBoost looks for the details that make a repository more useful for visitors, recruiters, contributors, and other developers.
It checks for:
- README quality
- License file
.gitignore- Installation instructions
- Usage examples
- Screenshots or visual media
- Demo or live links
- README badges
- Contributing guide
- Tests
- GitHub Actions workflow
- Repository score and grade
Install RepoBoost from PyPI:
pip install repoboostVerify the installation:
repoboost --versionExpected output:
RepoBoost 0.2.0
Scan the current repository:
repoboost scan .Show the most important improvement priorities:
repoboost doctor .Get project-specific recommendations:
repoboost recommend .Preview common repository fixes:
repoboost fix .Apply common repository fixes:
repoboost fix . --applyGenerate a Markdown report:
repoboost report . --output REPOBOOST_REPORT.mdList built-in scoring presets:
repoboost presetsCreate a configurable scoring file:
repoboost init-config . --preset portfolio-projectRepoBoost Score: 72/100 — Grade C
MISS Screenshots or media 0/10 No screenshots or visual media detected.
MISS Badges 0/6 No README badges detected.
MISS Contributing guide 0/6 No contributing guide found.
MISS CI workflow 0/6 No GitHub Actions workflow detected.
Next best improvements:
1. Add a screenshot, GIF, or demo image to make the repository easier to understand quickly.
2. Add small badges for license, tests, or package version after the project title.
3. Add CONTRIBUTING.md if you want other developers to contribute.
- Scores a repository from 0 to 100
- Gives a grade from A to F
- Supports configurable scoring with
.repoboost.toml - Includes built-in scoring presets
- Supports custom check weights
- Supports disabled checks
- Shows the active scoring profile in scan reports
- Detects README, license,
.gitignore, tests, and CI - Detects installation and usage sections
- Detects screenshots, badges, and demo links
- Gives practical next-step suggestions
- Shows top improvement priorities with doctor mode
- Suggests useful GitHub topics
- Detects project type, languages, frameworks, and tools
- Recommends project-specific next steps
- Generates Markdown audit reports
- Generates common repository improvement files
- Supports dry-run fixes before writing files
- Generates a RepoBoost README badge
- Generates a GitHub Actions workflow for CI usage
- Saves scan reports as JSON files
- Supports JSON output for automation
- Supports score thresholds for CI usage
Run a full repository audit:
repoboost scan .Scan another local repository:
repoboost scan path/to/projectUseful options:
repoboost scan . --json
repoboost scan . --output repoboost-report.json
repoboost scan . --fail-under 90
repoboost scan . --config .repoboost.tomlShow the most important missing improvements:
repoboost doctor .Use a custom config file:
repoboost doctor . --config .repoboost.tomlPreview common repository improvement files without writing anything:
repoboost fix .Apply the suggested files:
repoboost fix . --applyGenerate an MIT license too:
repoboost fix . --apply --license mit --author "Mohammad Azimi"Print fix actions as JSON:
repoboost fix . --jsonOverwrite existing files:
repoboost fix . --apply --forceCurrently, repoboost fix can generate:
.gitignoreCONTRIBUTING.md.github/workflows/repoboost.ymlLICENSEwhen--license mitis used
By default, repoboost fix runs in dry-run mode. It shows what would be created or skipped, but it does not write files until --apply is used.
Show project-specific recommendations:
repoboost recommend .Print recommendations as JSON:
repoboost recommend . --jsonUse a custom config file:
repoboost recommend . --config .repoboost.tomlGenerate a Markdown report from the repository audit:
repoboost report .Save the report to a file:
repoboost report . --output REPOBOOST_REPORT.mdShow only missing checks in the audit table:
repoboost report . --missing-onlyUse a custom config file:
repoboost report . --config .repoboost.tomlList built-in scoring presets:
repoboost presetsPrint presets as JSON:
repoboost presets --jsonAvailable presets:
defaultpython-cliweb-appmachine-learningportfolio-projectdocs-only
Create a .repoboost.toml file:
repoboost init-config .Create a config file with a built-in preset:
repoboost init-config . --preset python-cli
repoboost init-config . --preset web-app
repoboost init-config . --preset machine-learning
repoboost init-config . --preset portfolio-project
repoboost init-config . --preset docs-onlyOverwrite an existing config file:
repoboost init-config . --forceCreate a config file with a custom profile name:
repoboost init-config . --profile my-project-profileSuggest useful GitHub topics:
repoboost topics .Print topic suggestions as JSON:
repoboost topics . --jsonDetect project type, languages, frameworks, tools, and important files:
repoboost inspect .Print the detected project profile as JSON:
repoboost inspect . --jsonGenerate a Markdown badge based on the repository score:
repoboost badge .Example badge output:
Generate a GitHub Actions workflow for running RepoBoost in CI:
repoboost ci .Save the workflow to a file:
repoboost ci . --output .github/workflows/repoboost.ymlSet a required score threshold:
repoboost ci . --fail-under 80RepoBoost can help create common repository files.
Preview the fixes first:
repoboost fix .Apply the fixes:
repoboost fix . --applyGenerate an MIT license:
repoboost fix . --apply --license mit --author "Mohammad Azimi"The fix command is intentionally safe by default.
Without --apply, it only shows a dry run. This makes it easier to review changes before writing anything to disk.
Example dry-run output:
RepoBoost Fix
Mode: Dry run
would_create .gitignore
would_create CONTRIBUTING.md
would_create .github/workflows/repoboost.yml
Example apply output:
RepoBoost Fix
Mode: Apply
created .gitignore
created CONTRIBUTING.md
created .github/workflows/repoboost.yml
created LICENSE
RepoBoost includes built-in scoring presets for different repository types.
List all presets:
repoboost presetsPrint presets as JSON:
repoboost presets --jsonUse a preset when creating a config file:
repoboost init-config . --preset portfolio-project| Preset | Best For |
|---|---|
default |
Balanced scoring for general repositories |
python-cli |
Python command-line tools and installable packages |
web-app |
Deployed web apps, dashboards, and frontend/backend projects |
machine-learning |
ML, computer vision, data science, and experiment-based repositories |
portfolio-project |
Projects that should look strong to recruiters, supervisors, or visitors |
docs-only |
Documentation-first repositories without code execution requirements |
Presets help RepoBoost score repositories more fairly based on the type of project.
For example:
- A Python CLI package may need stronger installation, usage, tests, and CI checks.
- A web app may need stronger screenshots, demo links, and deployment-focused presentation.
- A machine learning project may need stronger examples, visual outputs, results, and reproducibility notes.
- A portfolio project may need stronger visual presentation and a clear demo.
- A docs-only project may not need tests, CI, screenshots, or a live demo.
RepoBoost can use a .repoboost.toml file to customize scoring for different repository types.
Create a default config file:
repoboost init-config .Create a config file using a preset:
repoboost init-config . --preset machine-learningExample .repoboost.toml:
profile = "python-cli"
preset = "python-cli"
fail_under = 90
disabled_checks = []
[weights]
readme = 18
license = 12
gitignore = 8
installation = 12
usage = 12
screenshots = 6
demo_link = 4
badges = 6
contributing = 6
tests = 10
ci = 6
[recommendations]
focus = [
"documentation",
"automation",
"distribution",
"code-quality"
]You can adjust the score weight of each check depending on the type of project.
You can also disable checks that do not make sense for a specific repository:
disabled_checks = ["screenshots", "demo_link"]RepoBoost can generate a Markdown report from the repository audit.
Print a report in the terminal:
repoboost report .Save a report to a file:
repoboost report . --output REPOBOOST_REPORT.mdGenerate a report with only missing checks:
repoboost report . --missing-onlyA generated report includes:
- repository summary
- score and grade
- active scoring profile
- audit results table
- recommendation table
- next-step suggestions
This is useful for:
- project reviews
- portfolio project tracking
- repository improvement plans
- sharing audit results with teammates
- documenting before-and-after improvements
RepoBoost supports JSON output for automation and CI workflows.
Example:
repoboost scan . --jsonSave the result to a file:
repoboost scan . --output repoboost-report.jsonThis can be useful for:
- CI checks
- dashboards
- automated repository audits
- portfolio project tracking
RepoBoost can fail a command if the score is below a required threshold:
repoboost scan . --fail-under 80This is useful when you want to keep repository presentation quality above a minimum score.
You can also generate a GitHub Actions workflow:
repoboost ci . --output .github/workflows/repoboost.ymlMany repositories contain useful code, but visitors may leave quickly if the project is not presented clearly.
A strong repository should answer these questions quickly:
- What does this project do?
- Who is it for?
- How do I install it?
- How do I use it?
- Can I trust it?
- Is it maintained?
- Are there examples, tests, or screenshots?
RepoBoost helps developers improve these details with clear checks, scoring presets, Markdown reports, and safe fix helpers.
Clone the repository:
git clone https://github.com/mohammad-azimi/RepoBoost.git
cd RepoBoostCreate and activate a virtual environment:
python -m venv .venv
.venv\Scripts\activateInstall the project in editable mode:
pip install -e ".[dev]"Run the test suite:
pytestBuild the package locally:
python -m build
python -m twine check dist/*Run RepoBoost on itself:
repoboost scan . --fail-under 90Preview fix actions:
repoboost fix .List presets:
repoboost presetsGenerate a Markdown report:
repoboost report . --output REPOBOOST_REPORT.mdRepository fix command.
Added:
repoboost fixcommand- dry-run mode for safe fix previews
--applyoption for writing generated files--forceoption for overwriting existing files--license mitoption for generating an MIT license--authoroption for generated license ownership- JSON output for fix actions
.gitignoregenerationCONTRIBUTING.mdgeneration- RepoBoost GitHub Actions workflow generation
- tests for repository fix actions
Built-in scoring presets.
Added:
repoboost presetscommand--presetoption forrepoboost init-config- built-in scoring presets for different repository types
defaultpresetpython-clipresetweb-apppresetmachine-learningpresetportfolio-projectpresetdocs-onlypreset- preset-aware config generation
- tests for scoring presets
Markdown report generation.
Added:
repoboost reportcommand- Markdown audit report generation
--outputsupport for saving reports--missing-onlyoption for reports- recommendation tables inside generated reports
- next-step suggestions inside generated reports
- tests for Markdown report generation
Configurable scoring and smarter recommendations.
Added:
.repoboost.tomlsupportrepoboost init-config- custom check weights
- disabled checks
- scoring profile display
--configsupport for scan, doctor, recommend, and badge- configuration-aware recommendations
- tests for configurable scoring
Initial PyPI release.
Added:
- repository scoring
- scan command
- doctor command
- topics command
- inspect command
- recommend command
- badge command
- CI workflow generator
- JSON output
- report saving
- score thresholds
Full release notes are available in:
CHANGELOG.md
Release documentation is available in:
docs/RELEASE.md
docs/TESTPYPI.md
docs/PYPI.md
- Add automatic README section generation
- Add more project-type specific recommendations
- Add portfolio-readiness score
- Add repository comparison mode
- Add optional auto-fix helpers for common README sections
- Add Markdown report templates
- Add richer before-and-after examples
Contributions are welcome.
Please read CONTRIBUTING.md before opening a pull request.
This project is licensed under the MIT License.
You are free to use, modify, and distribute this project, as long as the original license and copyright notice are included.
See the LICENSE file for more details.