Files
Jonathan KirkwoodandClaude Fable 5 b1d7aed9f4 Implement BDEF v1.1 grading: scoring core, per-deck pipeline, ledger, dashboard, StartOS layer
- Deterministic scoring.py (quant 60 / qual 40 / flags -15, profitability heaviest)
- Per-company JSON ledger with forecast-target chaining deck N-1 -> N
- Single-shot sandbox agent with guided-JSON fallback ladder (no tool loop)
- Portfolio dashboard with sparklines, KPI hit rates, BDEF category bars
- 48 unit tests green; endpoints smoke-tested; npm check+build green

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-06 14:15:12 -05:00

19 lines
846 B
TypeScript

import { VersionInfo } from '@start9labs/start-sdk'
/**
* Initial release. ExVer form `<upstream>:<downstream>` — we track our own
* packaging revision since Boardroom Map has no separate upstream semver.
*/
export const v_0_1_0 = VersionInfo.of({
version: '0.1.0:0',
releaseNotes:
'Initial version — BDEF v1.1 deck grading with per-company scorecards. ' +
'Drop board decks into inbox/<company-slug>/ and a panel of local LLMs on ' +
'your DGX Sparks grades them against the BDEF framework (Girdley + ' +
'Munger/Buffett); a deterministic scorer computes the 0-100 composite ' +
'(quant 60 incl. profitability 30, qualitative 40, red flags to -15) and ' +
'appends it to each company\'s running ledger. Default air-gapped mode ' +
'keeps decks and grades entirely on your hardware.',
migrations: {},
})