SPB Git

spb/airiskindex Public

The most methodologically rigorous, fully transparent AI job-exposure index.

TypeScript 88% Python 6.1% SQL 2.7% CSS 1.2% JavaScript 0.9% Shell 0.8%
722 B · 28 lines typescript
Raw Blame History
1//  File:    index.ts2//  Path:    packages/scoring/src/index.ts3//  Project: AI Risk Index — airiskindex.io4//  Author:  Simon-Pierre Boucher5//  Contact: contact@spboucher.ai6//  Copyright © 2026 Simon-Pierre Boucher. All rights reserved.7//8//  Description: Public API of the pure, deterministic scoring engine.910export { HIGH_EXPOSURE_THRESHOLD, scoreOccupation } from "./composite";11export { pressure, scoreTask } from "./task";12export type {13  OccupationScores,14  RatingBand,15  ScoreBand,16  TaskInput,17  TaskRatings,18  TaskScores,19} from "./types";20export { INDEX_VERSION } from "./version";21export {22  DIMENSIONS,23  type DimensionKey,24  EXPOSURE_DIMENSIONS,25  INVERTED_DIMENSIONS,26  WEIGHTS,27} from "./weights";28