[codex] Add versioned release workflow#5
Merged
Conversation
- add release.json manifest and release automation for build/prepare/publish - add versioned installer and meti update command - extend release gate, docs, and tests for bundle hygiene and update flow
- install from the complete Claude plugin release asset - include assets, license, and conduct docs in release bundles - assert installer dry-run references the complete asset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a manifest-driven versioned release workflow for Meti:
release.jsonas the canonical publication manifestscripts/release.py build|prepare|publishfor dry-run-first release automationscripts/install.shandmeti updatefor latest stable or explicitvX.Y.ZinstallsUAT / Risk Checks
Release UAT found and fixed one blocking issue before this PR: the installer initially used the OpenClaw-only zip, which would drop Claude plugin metadata during updates. The installer now uses the complete Claude plugin release asset, and release bundles include assets, license, and code of conduct files.
Validation
python3 scripts/check_release.pypython3 scripts/release.py buildpython3 scripts/release.py publish --version 0.4.3 --dry-runpython3 scripts/meti.py update --version v0.4.3 --dry-runpython3 -m pytest -q tests/test_release_manifest.py tests/test_check_release.py tests/integration/test_update_cli.py/opt/anaconda3/bin/ruff check core/release.py scripts/release.py scripts/check_release.py scripts/meti.py tests/test_release_manifest.py tests/test_check_release.py tests/integration/test_update_cli.py scripts/__init__.pybash -n scripts/install.shRelease Plan After CI
If CI passes, prepare the real release as
0.5.0with a dry-run first, then run the confirmed build/publish flow.