feat(protocol): add OMP operation capability contract - #111
Merged
Conversation
iarbpairs
force-pushed
the
feat/omp-capability-contract
branch
from
July 21, 2026 02:50
9338cd1 to
6dc04c7
Compare
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.
What this changes
I added a shared, bounded operation-capability contract so Flutter and the official OMP runtime adapter can proceed in parallel without inventing separate capability models.
The catalog can now expose stable
operationIdvalues with four execution classes:typed,headless,terminal-only, andunavailable. Unsupported operations carry structured disabled reasons, and contradictory states are rejected at the wire boundary.I added a language-neutral fixture covering an ordinary prompt, verified headless
/compact, terminal-only/plan, unavailable goal creation, and explicitterminal_only/capability_unavailableresponse examples. Flutter now decodes and preserves this contract through catalog frames andcatalog.getresults.This PR deliberately does not implement live runtime discovery or dispatch enforcement. Those backend changes will follow from
mainin a separate runtime-adapter branch while Flutter consumes this contract and fixture.Checklist
bun test packages/host-wire/test/app-wire.test.tspasses (42 tests)bun test packages/host-service/test/operations.test.tspasses (12 tests)bun run --cwd packages/host-wire typecheckpassesflutter test test/protocol/wire_conformance_test.dartpasses (40 tests)flutter analyzereports no issues