v0.13.0 Release Notes
Release Date: 2026-07-27
Highlights
- UIForge Rename - The
dashforgedependency, local package, and CLI command have all been renamed touiforgefollowing the upstream project rename - SCALE Aspect Tagging - New SLI fields for classifying AI/tooling adoption metrics (Standards, Consumption, Automation, Leverage, Effectiveness)
- PRISM Ecosystem Updates - Updated prism-capability, prism-roadmap, oscompat, excelize, and golang.org/x/text to latest versions
Breaking Changes
- The
prism dashforgeCLI command has been renamed toprism uiforge. Update any scripts or automation that invokeprism dashforgeto useprism uiforgeinstead.
Added
SCALE Aspect Tagging
New SLI fields for classifying how a metric relates to AI/tooling adoption across an organization:
import prism "github.com/grokify/prism-maturity"
sli := prism.SLI{
SCALEAspect: "consumption",
SCALEConsumptionKind: "adoption",
}
sli.HasSCALEAspect() // true
sli.IsSCALEConsumption() // true
sli.IsSCALEAdoption() // true
sli.IsSCALEConformance() // false
SCALEAspect accepts standards, consumption, automation, leverage, or effectiveness. For the consumption aspect, SCALEConsumptionKind further distinguishes adoption from conformance. See SLIs & SLOs for details.
Changed
- Renamed the local
dashforge/package touiforge/, updating imports togithub.com/plexusone/uiforge/dashboardir - Updated schema URLs and CLI help text referencing dashforge to uiforge
Dependencies
| Dependency | Version | Change |
|---|---|---|
github.com/plexusone/uiforge |
v0.4.0 | Replaces github.com/plexusone/dashforge v0.3.0 |
github.com/grokify/prism-capability |
v0.7.0 | Updated from v0.6.0 |
github.com/grokify/prism-roadmap |
v0.16.0 | Updated from v0.14.1 |
github.com/grokify/oscompat |
v0.5.0 | Updated from v0.4.0 |
github.com/xuri/excelize/v2 |
v2.11.0 | Updated from v2.10.1 |
golang.org/x/text |
v0.40.0 | Updated from v0.38.0 |
Documentation
- Renamed
docs/integrations/dashforge.mdtodocs/integrations/uiforge.mdand updated CLI reference, architecture, and design docs - Documented SCALE aspect tagging in SLIs & SLOs and Framework Mappings
- Fixed a broken
mkdocs.ymlnavigation link left over from the uiforge rename
Migration Notes
If you invoke prism dashforge in scripts or CI pipelines, update to prism uiforge:
If you import the local dashboard conversion package directly:
// Before
import "github.com/grokify/prism-maturity/dashforge"
// After
import "github.com/grokify/prism-maturity/uiforge"