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-executiontogrokify/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:
- Update import paths in your code:
- import "github.com/grokify/prism-execution/requirements/prd"
+ import "github.com/grokify/prism-roadmap/requirements/prd"
- Update go.mod:
- 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
ParentObjectiveIDfor organizational alignment - Unified
Frameworkinterface 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:
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)¶
Go Install¶
Go Module¶
Full Changelog¶
See CHANGELOG.md for complete details.