npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vantigo-ai/career-score

v1.0.0

Published

Multi-dimensional career health scoring algorithm. Combines salary percentile, AI resilience, market timing, and demand signals into a single Career Score (0-100).

Downloads

25

Readme

@vantigo/career-score

Multi-dimensional career health scoring algorithm. Combines salary percentile, AI automation resilience, market timing, and demand signals into a single interpretable Career Score (0–100).

npm version MIT License

Installation

npm install @vantigo/career-score

Quick Start

const { computeCareerScore } = require('@vantigo/career-score');

const result = computeCareerScore({
  pctile:        75,         // Salary at 75th percentile
  aiRisk:        22,         // Low AI automation risk
  timingVerdict: 'act-now',  // Hot job market
  marketDemand:  68,         // Strong hiring demand
});

console.log(result);
// {
//   score: 79,
//   band: 'Strong',
//   color: '#34D399',
//   components: {
//     compensation: 75,
//     aiResilience: 78,
//     growth: 85,
//     demand: 68
//   }
// }

Formula

Career Score = round(
  0.35 × compensation  +   // salary percentile rank
  0.25 × AI_resilience +   // 100 − aiRisk.score
  0.20 × growth        +   // market timing (act-now=85, prepare=55, wait=30)
  0.20 × demand            // market demand score
)

Weight Rationale

| Component | Weight | Rationale | |---|---|---| | Compensation | 35% | Salary position is the primary signal of career health | | AI Resilience | 25% | Automation risk is the defining career risk of the 2020s | | Growth / Timing | 20% | Market timing affects whether job switching is financially optimal | | Market Demand | 20% | Demand predicts negotiation leverage and job security |

Score Bands

| Score | Band | Meaning | |---|---|---| | 85–100 | Excellent | Well-compensated, resilient to automation, strong market | | 70–84 | Strong | Above average in most dimensions | | 50–69 | Average | Targeted improvements recommended | | 30–49 | Needs Attention | Undercompensated or high automation risk | | 0–29 | Critical | Multiple risk factors; immediate action recommended |

API

computeCareerScore(params) → result

Parameters:

| Parameter | Type | Description | |---|---|---| | pctile | number | Salary percentile rank (0–100) | | aiRisk | number | AI automation risk score (0–100); will be inverted to resilience | | timingVerdict | string|number | "act-now" | "prepare" | "wait" or numeric (0–100) | | marketDemand | number | Market demand score (0–100) |

Returns:

| Field | Type | Description | |---|---|---| | score | number | Career Score integer (0–100) | | band | string | Score band label | | color | string | Hex color for the band | | components | object | Individual component scores for transparency |

computeCareerScoreFromReport(report) → result | null

Convenience wrapper that accepts a full Vantigo report JSON object.

const { computeCareerScoreFromReport } = require('@vantigo/career-score');

const result = computeCareerScoreFromReport({
  market: { pctile: 75 },
  aiRisk: { score: 22 },
  timing: { verdict: 'act-now' },
  marketDemand: 68,
});

Validation

Validated against 10 occupation profiles spanning technology, healthcare, education, law, and skilled trades. See docs/methodology.md for full validation table.

Citation

If you use this package in academic research, please cite:

@software{ogirala2026careerscore,
  author = {Ogirala, Kranthi Kumar},
  title  = {Vantigo Career Score: A Multi-Dimensional Career Health Metric},
  year   = {2026},
  url    = {https://github.com/ogkranthi/earnmore},
  note   = {npm package @vantigo/career-score}
}

See also: arXiv preprint (link to be added upon submission)

Related Packages

License

MIT © Kranthi Kumar Ogirala / Vantigo