Add the MEOS-API pin manifest, generator policy, and ecosystem orchestrator#23
Merged
Nyuke235 merged 1 commit intoJun 28, 2026
Conversation
…chestrator MEOS-API is the catalog producer (the root of the chain), not a generated binding. Add tools/pin/compose-order.txt (its enrichment/projection PRs), GENERATION.md (the producer framing: run.py reads the MEOS pin headers and emits output/meos-idl.json, the single source of truth every binding consumes), and tools/ecosystem-generate.sh (the turnkey orchestrator: given a pin, build the catalog + libmeos, then drive each binding's own regen-from-pin.sh in dependency order — JVM consumers after the JMEOS jar, PyMEOS after PyMEOS-CFFI).
Collaborator
Approving.Docs + manifest + orchestrator only; additive (+172/−0), merges clean, no compilable change. Verified locally: Two trivial things worth folding in before merge (non-blocking):
|
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
MEOS-API is the root of the per-binding generator policy — the catalog producer, not a generated binding. This adds:
tools/pin/compose-order.txt— MEOS-API's own fold manifest (its enrichment + projection PRs).GENERATION.md— the producer framing:run.pyreads the MEOS pin headers and emitsoutput/meos-idl.json, the single source of truth every binding consumes; thegenerator/modules project the language-agnostic contracts (OpenAPI/MCP/runtime/movfeat).tools/ecosystem-generate.sh— the turnkey orchestrator:tools/ecosystem-generate.sh <PIN>builds the catalog + all-familieslibmeos.sofrom the pin, then drives each binding's owntools/regen-from-pin.shin dependency order (JVM consumers after the JMEOS jar; PyMEOS after PyMEOS-CFFI). GH is the only SoT — each repo is fetched fresh at its frontier branch;$HOMEworktrees (never/tmp).Docs + manifest + a
bash -n-clean shell script — no compilable change.The chain
Completes the per-binding generator policy across the whole ecosystem (11 binding repos + this producer).