@aibvf/core
v0.2.0
Published
AI BVF — open protocol for scoring AI investments. Validator and scoring engine.
Downloads
516
Maintainers
Readme
@aibvf/core
AI BVF v1.0 — open protocol for scoring AI investments. Validator and scoring engine.
npm install @aibvf/coreValidate a portfolio
import { validate } from '@aibvf/core';
const result = validate(portfolioJson);
if (!result.valid) console.error(result.errors);Score an initiative
import { score } from '@aibvf/core';
const r = score({
industry: 'manufacturing',
revenue_eur: 2_400_000_000,
function: 'supply',
ai_tier: 'gen2',
readiness: 'traditional',
scores: {
strategic_alignment: 72,
financial_return: 64,
change_enablement: 48,
governance_risk: 35,
},
});
console.log(r.classification); // 'Fix'
console.log(r.net_low_eur); // ~75.6M
console.log(r.net_high_eur); // ~247MSpec
Full specification at bvf-app.vercel.app/protocol. JSON Schema at bvf-app.vercel.app/bvf-protocol.schema.json.
License
MIT. The underlying specification is CC-BY-4.0.
