Skip to main content

Portfolio intelligence for AI engineering teams. Scan repos, score health, find cross-project patterns.

Project description

repoatlas

Portfolio intelligence for AI engineering teams.

Scan your repos. Score health. Find cross-project patterns nobody else sees.

pip install repoatlas

The Problem

You manage 5, 10, 20+ repos. Every tool on the market — Cursor, Copilot, Claude Code — works inside a single repo. Nobody sees the full picture:

  • Which repos have zero tests?
  • Are your React versions consistent across projects?
  • Where are you duplicating FastAPI patterns instead of sharing them?
  • Which repos haven't been touched in weeks?

You don't know until something breaks.

The Solution

atlas init --name "My Portfolio"
atlas add ~/projects/api
atlas add ~/projects/frontend
atlas add ~/projects/ml-pipeline
atlas scan
atlas status

30 seconds. Full portfolio health dashboard. Real data from your repos.

What You Get

╭───────────────────────  ATLAS Portfolio Dashboard  ─────────────────────────╮
│                                                                             │
│  Portfolio: NXTG.AI  |  8 Projects  |  609 Test Files  |  1,251,303 LOC    │
│  Health: B (82%)  |  Scanned: 2026-03-04T01:15                             │
│                                                                             │
╰─────────────────────────────────────────────────────────────────────────────╯
┌────┬────────────────────┬──────────┬────────┬──────────┬─────────────────────┐
│    │ Project            │ Health   │  Tests │      LOC │ Tech Stack          │
├────┼────────────────────┼──────────┼────────┼──────────┼─────────────────────┤
│ ●  │ Dx3                │  A 94%   │    179 │  164,806 │ Python · TypeScript │
│ ●  │ content-engine     │  B+ 88%  │     23 │   12,552 │ Python              │
│ ●  │ Podcast-Pipeline   │  B+ 88%  │     49 │   33,680 │ Python · FastAPI    │
│ ●  │ nxtg.ai            │  B+ 87%  │     36 │   49,938 │ TypeScript · Next.js│
│ ●  │ Faultline          │  B+ 86%  │     29 │   15,527 │ TypeScript · React  │
│ ●  │ voice-jib-jab      │  B+ 86%  │     58 │   45,311 │ TypeScript · Python │
│ ●  │ SynApps            │  C 67%   │    114 │  793,406 │ Python · TypeScript │
│ ●  │ NXTG-Forge         │  D 59%   │    121 │  136,083 │ TypeScript · Rust   │
└────┴────────────────────┴──────────┴────────┴──────────┴─────────────────────┘

This is real output from scanning 8 production repos. Not a mockup.

Features

Free

  • Health scoring — 4 dimensions (tests, git hygiene, documentation, structure) → A-F grade
  • Tech stack detection — Python, TypeScript, Rust, Go, Java + frameworks (FastAPI, React, Next.js, Django, etc.)
  • Git health — branch, commit count, dirty state, remote status
  • Database detection — PostgreSQL, SQLite, Redis, MongoDB, pgvector
  • Single project scanatlas add + atlas inspect
  • Up to 3 projects in your portfolio

Pro ($49 one-time)

  • Unlimited projects — scan your entire org
  • Cross-project intelligence — shared deps, version mismatches, health gaps
  • Batch addatlas batch-add ~/projects adds every repo at once
  • Export — markdown and JSON reports for stakeholders
  • Priority support

Get Pro →

What It Detects

Category Examples
Languages Python, TypeScript, JavaScript, Rust, Go, Java, Ruby, C++, Swift, Kotlin
Frameworks FastAPI, Django, Flask, React, Next.js, Vue, Express, Tailwind, Vite
Test Frameworks pytest, Vitest, Jest, Playwright
Databases PostgreSQL, SQLite, Redis, MongoDB, pgvector
CI/CD GitHub Actions workflows
AI Tools Anthropic SDK, OpenAI
Documentation README, CLAUDE.md, CHANGELOG, docs/

Health Score Breakdown

Each project scores 0-100% across 4 dimensions:

  Health Breakdown:
    Tests          █████████████░░  90%
    Git Hygiene    ██████████████░  99%
    Documentation  ███████████████  100%
    Structure      █████████████░░  90%
Dimension What It Measures
Tests (35%) Test file count relative to source files
Git Hygiene (20%) Commits, remote, clean working tree
Documentation (20%) README, CLAUDE.md, NEXUS, CHANGELOG, docs/
Structure (25%) CI/CD, .gitignore, package config, source organization, linting

Cross-Project Intelligence (Pro)

Atlas finds patterns across your repos that no single-repo tool can see:

╭───────────────── Cross-Project Intelligence ──────────────────╮
│                                                                │
│  Shared Dependencies                                           │
│    ℹ  fastapi used across 4 projects                           │
│    ℹ  react used across 3 projects                             │
│                                                                │
│  Version Mismatches                                            │
│    ⚠  react: ^18.2.0 (app-a), ^19.2.1 (app-b)                 │
│    ⚠  fastapi: >=0.100.0 (api-v1), >=0.115.9 (api-v2)         │
│                                                                │
│  Health Gaps                                                   │
│    ✖  3 projects have zero tests                               │
│    ⚠  1 project has 50+ uncommitted changes                    │
│                                                                │
╰────────────────────────────────────────────────────────────────╯

Commands

Command Description Tier
atlas init Create a portfolio Free
atlas add <path> Add a project Free (3 max)
atlas scan Re-scan all projects Free
atlas status Portfolio dashboard Free
atlas inspect <name> Deep-dive on one project Free
atlas remove <name> Remove a project Free
atlas connections Cross-project patterns Pro
atlas batch-add <dir> Add all repos in a directory Pro
atlas export Markdown/JSON report Pro
atlas activate <key> Activate Pro license
atlas license Show license status
atlas reset Delete all data Free

Requirements

  • Python 3.11+
  • git (for repo detection)

How It Works

Atlas scans your project directories — no network calls, no cloud, no telemetry. Everything runs locally.

  1. File walking — counts source and test files, skipping node_modules, .venv, target, etc.
  2. Config parsing — reads pyproject.toml, package.json, Cargo.toml for deps and frameworks
  3. Git inspection — runs git log, git status, git branch for repo health
  4. Health scoring — weighted formula across 4 dimensions → A-F grade
  5. Cross-project analysis — compares deps, versions, and patterns across all repos

State lives in ~/.atlas/portfolio.json. Portable, inspectable, no database.

FAQ

Is this open source? Yes. MIT license. Free tier is fully functional, not crippled.

Does it phone home? No. Zero network calls. No telemetry. No analytics. Your code stays on your machine.

How fast is it? 8 projects with 1.25M lines of code scanned in 31 seconds.

Does it work with monorepos? Each atlas add path is treated as one project. For monorepos, add the root.

Can I use it in CI? atlas export --format json outputs machine-readable data. CI integration coming soon.

License

MIT


Built by NXTG.AI — the team behind NXTG-Forge.

Project details


Download files

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

Source Distribution

nxtg_atlas-0.1.0.tar.gz (24.5 kB view details)

Uploaded Source

Built Distribution

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

nxtg_atlas-0.1.0-py3-none-any.whl (22.3 kB view details)

Uploaded Python 3

File details

Details for the file nxtg_atlas-0.1.0.tar.gz.

File metadata

  • Download URL: nxtg_atlas-0.1.0.tar.gz
  • Upload date:
  • Size: 24.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for nxtg_atlas-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c7f2b2fa8275f4adf30e7ed2998b222059ea3c772197a60fff8f4dc01acac57e
MD5 0e0d4cf15e19d2b969a72fb12abef607
BLAKE2b-256 d3593ec412d4d9239957efaaa5979cdf1a441b837288e55e0b1c49aaeaf5be1f

See more details on using hashes here.

File details

Details for the file nxtg_atlas-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: nxtg_atlas-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 22.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for nxtg_atlas-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9e19f6dfd01df5a46e67eede30b2a2de957aedad400bb70f190b53500e7e3954
MD5 abaaa98576b631d3924e4022030dc0c0
BLAKE2b-256 7c8edb7969dd451971aaf2258e0b9acea837da501c2c03569cca3fbacbcbf78a

See more details on using hashes here.

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