fedcomp-index-scoring
v2026.3.5
Published
FedComp Index scoring engine. Computes posture scores and posture classes for federal contractors from USASpending award data.
Maintainers
Keywords
Readme
FedComp Index Scoring

Federal contractor posture scoring. Scores any federal contractor from 0 to 100 based on public award data from USASpending.gov.
Each contractor receives a FedComp Index score and a posture class:
- Class 1 (score 60+) - dominant award volume, typically $100M+ over 5 years
- Class 2 (score 40-59) - mid-tier, typically $5M-$100M
- Class 3 (below 40) - emerging or low-volume
Install
npm install fedcomp-index-scoringUsage
const { scoreContractor, PostureClass } = require("fedcomp-index-scoring");
const result = scoreContractor(15_000_000, "2025-09-15");
result.fedcompIndex; // 58
result.postureClass; // "Class 2"
result.volumeDriver; // 53
result.recencyDriver; // 100FedComp Index scoring methodology
Two drivers, no normalization:
| Driver | Weight | How it works | |--------|--------|-------------| | Award volume | 90% | log10 of total dollars won, mapped to 0-100 | | Award recency | 10% | Last award date, bucketed by age |
The FedComp Index score is an absolute measure. A contractor scoring 60 always represents roughly the same award volume regardless of state or time period. Scores are not percentile-ranked against peers.
Posture classes use fixed thresholds tied to the score:
| Posture class | FedComp Index score | Typical award volume | |---------------|--------------------|--------------------| | Class 1 | 60-100 | $100M+ | | Class 2 | 40-59 | $5M-$100M | | Class 3 | 0-39 | Under $5M |
Full methodology: fedcompindex.org/methodology
Related packages
| Package | What it does | |---------|-------------| | fedcomp-index | Meta-package (installs both) | | fedcomp-index-scoring | Scoring engine (this one) | | fedcomp-index-data | Pre-scored contractor datasets |
Also available on PyPI
pip install fedcomp-index-scoring- fedcomp-index - meta-package
- fedcomp-index-scoring - scoring engine
- fedcomp-index-data - pre-scored datasets
Data sources
All data is sourced from public federal records:
- USASpending.gov - award history, dollar amounts, agencies, NAICS codes, PSC codes
- SAM.gov - entity registration, certifications, CAGE/UEI
- SBA.gov - small business certification verification
Live rankings
Scored contractor rankings with dossier pages, proximity maps, and spectator tracking:
- Nevada - 349 contractors scored
Datasets
Pre-scored datasets available for download:
- Nevada Federal Contractors - FedComp Index (HuggingFace)
- Nevada Federal Contract Awards - Monthly (HuggingFace)
- Nevada Federal Contractors - FedComp Index (Kaggle)
- Nevada Federal Contract Awards - Monthly (Kaggle)
Links
- Website: https://fedcompindex.org/
- Nevada Rankings: https://fedcompindex.org/nv/
- Methodology: https://fedcompindex.org/methodology/
- Tabularium: https://fedcompindex.org/tabularium/
- FAQ: https://fedcompindex.org/faq/
- Source: https://github.com/fedcompindex/FedCompIndex
- PyPI: https://pypi.org/project/fedcomp-index/
- HuggingFace: https://huggingface.co/datasets/npetro6/nevada-federal-contractors
- Kaggle: https://www.kaggle.com/datasets/npetro6/nevada-federal-contractors-fedcomp-index
Citation
@software{fedcomp_index,
title = {FedComp Index},
author = {FedComp Index},
url = {https://fedcompindex.org/},
year = {2026}
}License
MIT
