Skip to content

Getting started

This guide walks you through installing the Pullminder GitHub App, triggering your first analysis, and reading the results. The whole process takes under five minutes.

Go to github.com/apps/pullminder and click Install. Select the organization you want to monitor, then choose which repositories Pullminder should have access to.

Once installed, Pullminder begins listening for pull request events on the selected repositories. No further configuration is required.

Create or update a pull request on one of the repositories you selected. Pullminder picks up the webhook automatically and begins analysis.

Analysis typically completes within 30 seconds. For very large diffs (1,000+ changed files), it may take up to a minute.

When analysis finishes, Pullminder posts a comment on the pull request. The comment includes:

  • Risk score — a number from 0 to 100 indicating overall PR risk
  • Findings summary — a count of issues grouped by severity (critical, high, medium, low)
  • Top findings — the highest-severity issues with file locations and descriptions
  • Reviewer brief — a short narrative explaining what changed and where to focus the review

Visit app.pullminder.com and sign in with your GitHub account. The dashboard shows:

  • Risk score trends across your repositories
  • Most common finding categories
  • Per-repository and per-author breakdowns
  • Historical analysis results for every PR

The Pullminder CLI runs the same analyzers locally, so you can check a diff before pushing.

Terminal window
brew install pullminder/tap/pullminder

Then run a check against your current branch:

Terminal window
pullminder check

The CLI compares your branch against the default branch and prints findings to the terminal. It works offline and does not require a Pullminder account.