Skip to content

Release Notes - v0.13.0

Release Date: 2026-05-24

Overview

This release renames the project from prism-execution to prism-roadmap to better reflect its focus on roadmaps, requirements, and goal frameworks. It also includes the cascading goals framework specification and CLI refactoring.

Highlights

  • BREAKING: Module Rename: Repository renamed from grokify/prism-execution to grokify/prism-roadmap
  • Cascading Goals Specification: PRD, TRD, and ROADMAP for unified cascading goals framework supporting OKR and V2MOM
  • CLI Refactoring: Commands extracted to reusable cli/ package

Breaking Changes

Module Path Changed

The Go module path has changed from github.com/grokify/prism-execution to github.com/grokify/prism-roadmap.

Migration Steps:

  1. Update import paths in your code:
- import "github.com/grokify/prism-execution/requirements/prd"
+ import "github.com/grokify/prism-roadmap/requirements/prd"
  1. Update go.mod:
- github.com/grokify/prism-execution v0.12.0
+ github.com/grokify/prism-roadmap v0.13.0
  1. Run go mod tidy

Added

Cascading Goals Framework Specification

Added comprehensive specification documents for unified cascading goals framework:

Document Description
PRD User stories, functional requirements, data model changes
TRD Package structure, interfaces, implementation details
ROADMAP 3-phase implementation plan with milestones

Planned Features:

  • OKR cascading with ParentObjectiveID for organizational alignment
  • Unified Framework interface abstracting OKR and V2MOM differences
  • Maturity-driven goal suggestions from SLI gaps
  • CLI commands: cascade, align, import, suggest, plan

Changed

All Import Paths Updated

All internal import paths have been updated from prism-execution to prism-roadmap.

Refactored

CLI Commands Extracted to Package

CLI commands have been extracted from cmd/splan/main.go to a reusable cli/ package:

cli/
├── cli.go       # Root command initialization
└── commands.go  # All command implementations

Benefits:

  • Commands can be shared across multiple entry points
  • Easier testing of command logic
  • Cleaner separation of concerns

Dependencies

Dependency Version Notes
github.com/plexusone/structured-evaluation v0.4.0 Updated
github.com/grokify/prism-core v0.1.0 Unchanged
github.com/spf13/cobra v1.10.2 Unchanged

PRISM Ecosystem

The project rename clarifies its role in the PRISM ecosystem:

prism-core (shared types)
         ├── prism-capability ── "What we need"
         ├── prism-intelligence ── "How we measure"
         └── prism-roadmap ── "What we build"

Compatibility

  • Go 1.24+
  • Breaking change: Module path changed (see Migration Steps above)

Installation

Homebrew (macOS/Linux)

brew upgrade grokify/tap/splan

Go Install

go install github.com/grokify/prism-roadmap/cmd/splan@v0.13.0

Go Module

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

Full Changelog

See CHANGELOG.md for complete details.