v0.1.6: human-friendly reports
- Dashboard renders deck reports and scorecards as formatted pages (self-contained markdown renderer inlined in index.html — headings, styled tables, evidence blockquotes; no CDN, air-gap friendly) - At-a-glance strip on every deck report: composite with delta vs the prior deck, quant/qual/penalty mix, KPI hit/miss chips, BDEF best/weakest category, red-flag count - Generated DECK_REPORT.md now leads with a concise "At a glance" summary table (scorecard.py); jobs.py passes the previous deck record so the delta appears in the file too; dashboard hides the duplicate section since the strip covers it - .gitignore: .venv/ Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
6bf0786993
commit
32d5d7f373
@@ -5,9 +5,10 @@ import { v_0_1_2 } from './v_0_1_2'
|
||||
import { v_0_1_3 } from './v_0_1_3'
|
||||
import { v_0_1_4 } from './v_0_1_4'
|
||||
import { v_0_1_5 } from './v_0_1_5'
|
||||
import { v_0_1_6 } from './v_0_1_6'
|
||||
|
||||
/** The current version MUST be the first argument (`current`). */
|
||||
export const versions = VersionGraph.of({
|
||||
current: v_0_1_5,
|
||||
other: [v_0_1_4, v_0_1_3, v_0_1_2, v_0_1_1, v_0_1_0],
|
||||
current: v_0_1_6,
|
||||
other: [v_0_1_5, v_0_1_4, v_0_1_3, v_0_1_2, v_0_1_1, v_0_1_0],
|
||||
})
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
import { VersionInfo } from '@start9labs/start-sdk'
|
||||
|
||||
/** Human-friendly reports. ExVer form `<upstream>:<downstream>`. */
|
||||
export const v_0_1_6 = VersionInfo.of({
|
||||
version: '0.1.6:0',
|
||||
releaseNotes:
|
||||
'Reports are now human-friendly: deck reports and scorecards render as ' +
|
||||
'formatted pages in the dashboard (headings, styled tables, evidence ' +
|
||||
'quotes) instead of raw markdown, with an at-a-glance strip on every ' +
|
||||
'deck report — composite with delta vs the prior deck, quant/qual/penalty ' +
|
||||
'mix, KPI hit/miss chips, best/weakest BDEF category, and red-flag count. ' +
|
||||
'Generated DECK_REPORT.md files lead with the same concise At a glance ' +
|
||||
'summary table, so downloaded and emailed copies read well too.',
|
||||
migrations: {},
|
||||
})
|
||||
Reference in New Issue
Block a user