Release Notes - v0.11.0¶
Release Date: 2026-05-17
Overview¶
This release renames the repository from structured-plan to prism-execution as part of the PRISM ecosystem consolidation. The PRISM ecosystem provides a unified framework for capability-driven organizational intelligence.
Breaking Changes¶
Module Path Rename¶
The Go module path has changed:
| Before | After |
|---|---|
github.com/grokify/structured-plan | github.com/grokify/prism-execution |
Update your imports:
// Before
import "github.com/grokify/structured-plan/goals/okr"
import "github.com/grokify/structured-plan/requirements/prd"
import "github.com/grokify/structured-plan/roadmap"
// After
import "github.com/grokify/prism-execution/goals/okr"
import "github.com/grokify/prism-execution/requirements/prd"
import "github.com/grokify/prism-execution/roadmap"
Schema URL Updates¶
JSON Schema $id URLs have been updated:
| Before | After |
|---|---|
https://github.com/grokify/structured-plan/schema/... | https://github.com/grokify/prism-execution/schema/... |
PRISM Ecosystem¶
This project is now part of the PRISM ecosystem:
| Project | Purpose |
|---|---|
| prism-capability | Define what capabilities exist |
| prism-intelligence | Measure maturity with SLIs/SLOs |
| prism-execution | Plan and track improvement (this project) |
prism-capability prism-intelligence prism-execution
"What we need" ───▶ "How we measure" ───▶ "How we act"
Migration Guide¶
-
Update
go.modto use the new module path: -
Update all import statements in your code
-
The API remains unchanged - only the import paths have changed
Installation¶
Homebrew (macOS/Linux)¶
Go Install¶
Go Module¶
Full Changelog¶
See CHANGELOG.md for complete details.