What problem does it solve? It enforces consistent Nx release versioning rules in the Lumen monorepo, preventing incorrect bump types and multi-package version plan files that break the release workflow. ## Core Features & Use Cases - Patch-only bump enforcement: Every version plan frontmatter must use patch, never minor or major, regardless of commit type or breaking changes. - One package per file: Changes affecting multiple packages require separate version-plan-<timestamp>-<pkg>.md files, one per package. - Path-to-package mapping: Maps libs/ui-react/, libs/ui-rnative/, libs/design-core/, and libs/utils-shared/ to their published package names. - Use Case: After adding a feature to both the React and React Native Select components, generate two separate version plan files, each declaring a patch bump for its respective package. ## Quick Start Ask the assistant to create an Nx version plan for your changes under libs/ui-react/src, and it will produce a correctly formatted patch-only version plan file.