LEI

LowEndInsight

Open source supply chain risk and agentic analysis

Quick Start

Analyze any public git repository for contributor risk, commit currency, and supply chain indicators.

Analyze a repo

curl -X POST https://lowendinsight.dev/v1/analyze \
  -H "Content-Type: application/json" \
  -d '{"urls": ["https://github.com/kitplummer/clikan"]}'

Check a job result

curl https://lowendinsight.dev/v1/analyze/{uuid}

Analyze an SBOM

curl -X POST https://lowendinsight.dev/v1/analyze/sbom \
  -H "Content-Type: application/json" \
  -d '{"sbom": <cyclonedx-or-spdx-json>}'

API Endpoints

Method Path Description
POST /v1/analyze Submit URLs for analysis (blocking, async, or stale mode)
GET /v1/analyze/{uuid} Retrieve analysis results by job UUID
POST /v1/analyze/sbom Analyze repos from a CycloneDX or SPDX SBOM
GET /v1/cache/export Export cache for air-gapped deployment
POST /v1/cache/import Import pre-warmed cache
GET /v1/cache/stats Cache statistics

See the full interactive API documentation for request/response schemas and examples.

Risk Indicators

  • Contributor count — bus factor risk
  • Contributor risk — overall contributor risk level
  • Functional contributors — concentration of commits
  • Functional contributors risk — contributor concentration risk level
  • Commit currency — weeks since last commit
  • Commit currency risk — staleness risk level
  • Large recent commit risk — codebase volatility
  • Recent commit size % — last commit as % of codebase
  • SBOM risk — dependency/supply chain risk
  • Agentic classificationhuman / mixed / agent based on bot/AI commit ratio
  • Agentic contribution ratio — fraction of commits from bots or AI agents (0.0–1.0)
  • Restricted contributors — whether any contributors have restricted GitHub profiles (requires GitHub token)

Agentic thresholds: human < 0.3, mixed 0.3–0.7, agent > 0.7

Agentic Classification

Each repository is classified based on the ratio of commits attributed to automated or AI contributors:

humanRatio < 0.3 — predominantly human-authored
mixedRatio ≥ 0.3 — mix of human and agentic
agentRatio ≥ 0.7 — predominantly agentic

Risk Levels

criticalImmediate attention needed
highSignificant concern
mediumWorth monitoring
lowHealthy indicator

Try it