Skip to main content

๐Ÿ” repoglance

Instant, gorgeous insight into any code repository โ€” in one command.

Point it at any folder. In under a second you get a beautiful terminal report: language breakdown, complexity hotspots, TODO tracker, biggest files, and git activity. Zero config. Zero API keys. Zero telemetry.

PyPI CI Python License: MIT repoglance


Why repoglance?

You clone an unfamiliar repo. What is this thing? How big? What's the messy part? Where's the unfinished work? cloc gives you a wall of numbers. tokei is fast but bare. repoglance answers the human questions in one glance:

repoglance .

repoglance demo

Seen in the wild

repoglance run against well-known projects (click to view the full report):

Project Files Lines of code Health
flask 207 25,266 D (67)
httpie 234 20,023 D (66)
requests 88 13,709 C (70)

flask report

Install

pip install repoglance

Or run without installing:

pipx run repoglance .

Usage

repoglance                       # analyze current directory
repoglance path/to/repo          # analyze another repo
repoglance --json                # machine-readable output for scripts / CI
repoglance --csv                 # per-file CSV
repoglance --sarif               # SARIF for GitHub code scanning
repoglance --svg report.svg      # export a vector report
repoglance --html report.html    # export a browser report
repoglance --badge badge.svg     # export an embeddable badge
repoglance --since origin/main   # only files changed since a revision
repoglance --baseline base.json                         # snapshot now
repoglance --compare base.json --fail-on-regression     # fail on new complexity
repoglance --ci --fail-under 70 --max-complexity 25     # gate a build
repoglance --include "src/**" --exclude "**/*_pb2.py"   # glob filters
repoglance --duplicates          # detect copy-paste blocks
repoglance --owners              # attribute hotspots to authors (git blame)
repoglance --imports             # python import graph + circular imports
repoglance --coverage coverage.xml   # cross coverage with complexity
repoglance --cache .rg.cache     # incremental cache for fast repeat runs
repoglance --watch               # live re-render on file changes
repoglance --no-git --jobs 8

JSON output

Pipe structured data anywhere โ€” dashboards, CI gates, badges:

repoglance --json | jq '.languages.Python.code'

What it measures

Section What you get
Languages Lines of code per language, ranked, with % bars
Complexity hotspots Real per-function cyclomatic complexity across 15+ languages (C/C++, Java, C#, JS, TS, Go, Rust, Ruby, PHP, Swift, Kotlin, Pythonโ€ฆ) via lizard
Maintainability index Approximate MI (0โ€“100) from complexity, size and token counts
Refactor priority Files ranked by churn ร— complexity โ€” what to fix first
Coverage risk Cross a coverage report with complexity (--coverage): complex + untested = danger
Python quality Docstring and type-hint coverage across functions
Import graph Python module coupling + circular-import detection (--imports)
Longest functions The biggest functions by logical lines
Duplicate code Copy-paste blocks across files, with a duplication %
TODO tracker Every TODO / FIXME / HACK / XXX / BUG with file:line
Biggest files & directories Where the mass and the worst complexity live
Ownership Which author owns each hotspot (--owners, git blame)
Git activity Top authors, most-churned files, active days, project lifespan

Vendored and generated files (minified bundles, _pb2.py, node_modules, files marked @generated) are detected and excluded by default โ€” pass --include-vendored to keep them.

Binary files, node_modules, .venv, build dirs and friends are skipped automatically.

More than a counter

repoglance isn't just another cloc. Tools like tokei, cloc and scc answer "how many lines?". repoglance answers "what should I look at?" โ€” and gives you artifacts you can put in a PR or a README.

repoglance tokei scc cloc
Lines-of-code by language โœ… โœ… โœ… โœ…
Per-function complexity (15+ langs) โœ… โŒ โš ๏ธ file-level โŒ
Refactor priority (churn ร— complexity) โœ… โŒ โŒ โŒ
Coverage ร— complexity risk โœ… โŒ โŒ โŒ
Circular-import detection โœ… โŒ โŒ โŒ
Maintainability index โœ… โŒ โŒ โŒ
TODO / FIXME tracker โœ… โŒ โŒ โŒ
Git activity (authors, churn) โœ… โŒ โŒ โŒ
Respects .gitignore โœ… โœ… โœ… โŒ
JSON / CSV / SARIF output โœ… โš ๏ธ โš ๏ธ โš ๏ธ
HTML / SVG report export โœ… โŒ โŒ โŒ
Embeddable repo badge โœ… โŒ โŒ โŒ
Diff mode (--since) + baselines โœ… โŒ โŒ โŒ
CI gate + regression ratchet โœ… โŒ โŒ โŒ
Config file ([tool.repoglance]) โœ… โœ… โŒ โŒ

Share it: badges & reports

Generate a self-contained SVG badge โ€” no shields.io round-trip, no tracking:

repoglance --badge assets/badge.svg

repoglance badge

Export the full report as a standalone file to drop in a PR or wiki:

repoglance --svg report.svg      # vector, pixel-perfect
repoglance --html report.html    # opens in any browser

Guard your codebase in CI

Fail the build when complexity or TODO debt crosses a line:

repoglance --ci --max-complexity 25 --max-todos 100
# .github/workflows/quality.yml
- run: pip install repoglance
- run: repoglance --ci --max-complexity 25

Exit code 0 = clean, 2 = a threshold was exceeded.

Integrations

GitHub Action โ€” comment on every PR

Drop repoglance into any repo. It posts a sticky report comment on pull requests and can gate the build:

# .github/workflows/repoglance.yml
name: repoglance
on: [pull_request]
permissions:
  contents: read
  pull-requests: write
jobs:
  analyze:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: SRJ-ai/repoglance@v0.4.0
        with:
          fail-under: "70"       # optional health gate
          max-complexity: "25"   # optional complexity gate

The report also lands in the workflow's job summary every run.

pre-commit hook

# .pre-commit-config.yaml
repos:
  - repo: https://github.com/SRJ-ai/repoglance
    rev: v0.4.0
    hooks:
      - id: repoglance
        args: ["--ci", "--fail-under", "70"]

Self-updating badge

Commit a shields endpoint file and point a dynamic badge at it โ€” the badge refreshes itself, no service to run:

repoglance --badge-json .repoglance-badge.json   # commit this file
![repoglance](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/SRJ-ai/repoglance/main/.repoglance-badge.json)

Markdown anywhere

repoglance --md   # paste into a PR, wiki, or Slack

Configuration file

Set defaults once via .repoglance.toml or a [tool.repoglance] table in pyproject.toml (CLI flags always win):

[tool.repoglance]
exclude = ["**/*_pb2.py", "vendor/**"]
max_complexity = 25
fail_under = 70

Docker & GitLab

docker run --rm -v "$PWD:/repo" repoglance /repo

A ready-to-copy GitLab CI job lives in integrations/gitlab-ci.yml.

Built for large monorepos

repoglance is designed to stay useful at the scale of a big-tech monorepo โ€” millions of lines, thousands of files โ€” not just small projects:

  • Diff mode (--since <rev>) analyzes only the files a change touches, so a PR check on a giant repo stays fast regardless of total size.
  • Incremental cache (--cache) reuses unchanged files by mtime + size โ€” repeat runs are near-instant (see below).
  • True multicore scanning: for large repos it automatically uses a process pool (complexity parsing is CPU-bound, so threads alone can't use every core), roughly halving cold-scan time. Force it with --processes / --threads.
  • .gitignore-aware and vendored/generated exclusion, so third-party and generated code doesn't drown the signal.
  • Path scoping with --include / --exclude globs for per-team slices of a shared repo.

Note: repoglance is an independent open-source project. It is not affiliated with, endorsed by, or used by any company named for scale comparison.

Performance

Measured on Django (3,180 files, ~415k lines of code), single machine:

Run Repo Time
Cold scan, full analysis (8 cores) Django, 415k LOC ~5.0 s
Re-run with --cache Django, 415k LOC ~1.1 s
--fast (counts only), process pool 20,000,000 LOC ~4.4 s

--fast skips per-function complexity parsing (the expensive step) and reports languages, line counts and sizes only โ€” that's what makes a 20-million-line scan finish in seconds (~4.5M LOC/s here). Drop --fast when you want the full complexity/health analysis.

The cold scan is dominated by real per-function complexity parsing. The process pool spreads that across cores (~2ร— here); the incremental cache (--cache <file>) reuses unchanged files by mtime + size, so repeat runs โ€” the common case in editors and CI โ€” are roughly 20ร— faster than a cold thread scan.

Design goals

  • Fast โ€” a single pass, no external services.
  • Honest โ€” no network, no telemetry, no surprise writes.
  • Pretty โ€” powered by rich.
  • Scriptable โ€” everything the report shows is available as --json.

Contributing

Adding a language is a one-line change in languages.py. PRs welcome โ€” see CONTRIBUTING.md.

License

MIT ยฉ repoglance contributors

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

repoglance-0.5.0.tar.gz (76.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

repoglance-0.5.0-py3-none-any.whl (39.8 kB view details)

Uploaded Python 3

File details

Details for the file repoglance-0.5.0.tar.gz.

File metadata

  • Download URL: repoglance-0.5.0.tar.gz
  • Upload date:
  • Size: 76.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for repoglance-0.5.0.tar.gz
Algorithm Hash digest
SHA256 38a9a9a53511435dbff38ad90ae0ca081d66d53115b9181b4d04e968357dd145
MD5 cf5000c064d73ae237398b751ea8bb0c
BLAKE2b-256 411ea1aa722fcaf799a80957c6f20c054417473ab23daab0485d1cad4ddfdfca

See more details on using hashes here.

Provenance

The following attestation bundles were made for repoglance-0.5.0.tar.gz:

Publisher: release.yml on SRJ-ai/repoglance

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file repoglance-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: repoglance-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 39.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for repoglance-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5f2c34fc6d7759bae97ff3a67f658ad5670d5460e4200219752d2c9afcd571b7
MD5 29cf1b2a4644d6297c375fe0ebda96e5
BLAKE2b-256 da8d92824b6ea054d5f0eb886a0a9558efce9d3a58901bf79374cd05cb03c4dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for repoglance-0.5.0-py3-none-any.whl:

Publisher: release.yml on SRJ-ai/repoglance

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page