Skip to content

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

  1. Update go.mod to use the new module path:

    go get github.com/grokify/prism-execution@v0.11.0
    

  2. Update all import statements in your code

  3. The API remains unchanged - only the import paths have changed

Installation

Homebrew (macOS/Linux)

brew upgrade grokify/tap/splan

Go Install

go install github.com/grokify/prism-execution/cmd/splan@v0.11.0

Go Module

go get github.com/grokify/prism-execution@v0.11.0

Full Changelog

See CHANGELOG.md for complete details.