Allow project-specific validation in omm update - #60
Merged
Conversation
johnnygreco
added a commit
that referenced
this pull request
Sep 10, 2026
Delegate generation to omm with project validation and publish its generated bindings and manifest. Align project guidance with the issue-first policy for manager gaps. The generation helper depends on the --check-command option in PR #60.
johnnygreco
added a commit
that referenced
this pull request
Sep 11, 2026
Delegate generation to omm with project validation and publish its generated bindings and manifest. Align project guidance with the issue-first policy for manager gaps. The generation helper depends on the --check-command option in PR #60.
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
Allow existing Python middleware projects to use their normal validation command during
omm update, instead of the default pytest invocation:omm update /path/to/middleware --openshell-version v0.0.116 --check-command 'make check'This is the manager-only work split out from the Pi admission example in #38. It contains no Pi harness changes, Egress Gate changes, generated protocol changes, or dependency additions. The example's pending generation-script update depends on this option and should follow this PR.
Validation
uv run --frozen ruff format --check .uv run --frozen ruff check .uv run --frozen ty checkuv run --frozen pytest— 91 passed; 95.83% coverageuv buildpython3 tests/test_render_dev_notes.py— 11 passedscripts/build-docs.sh— strict build and artifact checks passedKnown limitation
The README also records an existing starter-template incompatibility with OpenShell v0.0.116 (
max_body_bytes). This PR does not change starter templates or claim to fixomm createfor that release; it enables validation of updates to services already compatible with that contract.