Skip to content

v0.13.0 Release Notes

Release Date: 2026-07-27

Highlights

  • UIForge Rename - The dashforge dependency, local package, and CLI command have all been renamed to uiforge following 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 dashforge CLI command has been renamed to prism uiforge. Update any scripts or automation that invoke prism dashforge to use prism uiforge instead.

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 to uiforge/, updating imports to github.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.md to docs/integrations/uiforge.md and updated CLI reference, architecture, and design docs
  • Documented SCALE aspect tagging in SLIs & SLOs and Framework Mappings
  • Fixed a broken mkdocs.yml navigation link left over from the uiforge rename

Migration Notes

If you invoke prism dashforge in scripts or CI pipelines, update to prism uiforge:

# Before
prism dashforge prism.json -o dashboards/

# After
prism uiforge prism.json -o dashboards/

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"

Installation

go get github.com/grokify/prism-maturity@v0.13.0