Skip to content

v0.8.0 Release Notes

Release Date: 2026-05-17

Highlights

  • Repository Renamed - grokify/prismgrokify/prism-intelligence
  • PRISM Ecosystem - Part of unified framework with prism-capability and prism-execution
  • Updated Dependencies - prism-execution v0.11.0 (renamed from structured-plan)

Breaking Changes

Module Path Change

The Go module path has changed:

// Before
import "github.com/grokify/prism"

// After
import "github.com/grokify/prism-intelligence"

Migration

Update your go.mod:

go mod edit -replace github.com/grokify/prism=github.com/grokify/prism-intelligence@v0.8.0

Or update imports directly:

find . -name "*.go" -exec sed -i '' \
  's|github.com/grokify/prism|github.com/grokify/prism-intelligence|g' {} +

Then run:

go mod tidy

PRISM Ecosystem

PRISM Intelligence is now part of the unified PRISM ecosystem:

┌───────────────────┐    ┌───────────────────┐    ┌───────────────────┐
│ PRISM Capability  │    │ PRISM Intelligence│    │ PRISM Execution   │
│                   │    │                   │    │                   │
│  "What we need"   │───▶│ "How we measure"  │───▶│  "How we act"     │
│                   │    │                   │    │                   │
│ Capability stacks │    │ SLIs, SLOs        │    │ OKRs, V2MOM       │
│ Layers, domains   │    │ Maturity models   │    │ Roadmaps          │
│ Dependencies      │    │ Maturity state    │    │ Initiatives       │
└───────────────────┘    └───────────────────┘    └───────────────────┘
Module Purpose Repository
prism-capability What capabilities exist Capability stacks, layers
prism-intelligence How we measure maturity SLIs, SLOs, maturity models
prism-execution How we improve OKRs, V2MOM, roadmaps

Changed

Schema URLs

JSON Schema $id URLs updated:

Before After
https://github.com/grokify/prism/schema/... https://github.com/grokify/prism-intelligence/schema/...

Dependencies

  • Updated github.com/grokify/prism-execution to v0.11.0 (renamed from structured-plan)

Installation

go install github.com/grokify/prism-intelligence/cmd/prism@v0.8.0

Or as a library:

go get github.com/grokify/prism-intelligence@v0.8.0