Integrations And Routed Runtimes¶
Purpose¶
This page records the reference facts for product binaries, plugin runtime behavior, Python facade APIs, and the remaining Python compatibility baseline that still matters.
flowchart TD
A[bijux <tool>] --> B[bijux-<tool> runtime binary]
C[bijux dev <tool>] --> D[bijux-dev-<tool> control binary]
E[Python package] --> F[Rust-backed facade]
G[plugins command group] --> H[plugin.manifest.json lifecycle] This diagram shows the four integration surfaces that still matter in the current repository: routed product commands, routed product control commands, the Python facade, and the plugin lifecycle exposed through the runtime.
flowchart LR
A[Current Rust runtime] --> B[current bijux-cli-python]
B --> C[configured PyPI baseline] The second diagram explains the remaining compatibility chain. It shows why the reference docs still talk about both the current Python package and the configured stable PyPI baseline.
Product Binary Routing¶
| Surface | Binary pattern |
|---|---|
| Routed runtime command | bijux <tool> ... |
| Routed control command | bijux dev <tool> ... |
| Runtime binary | bijux-<tool> |
| Control-plane binary | bijux-dev-<tool> |
Known routed product namespaces are:
agent, atlas, dag, dna, gnss, rag, rar, vex
Owned product binaries are discovered by executable name on PATH.
bijux <tool> ...delegates tobijux-<tool> ...bijux dev <tool> ...delegates tobijux-dev-<tool> ...bijux-dev-cli ...remains the standalone maintainer surface for the CLI repository itself
The bijux runtime command contract stays separate from these maintainer and product binaries, but it now owns both routed product entrypoints.
Plugin Runtime Reference¶
The durable local plugin contract is based on plugin.manifest.json.
- local installs consume either a plugin directory root or
plugin.manifest.json plugins info,plugins, andplugins listreport registry-wide status, inventory counts, state totals, and current compatibility or load diagnostics- delegated and Python plugins resolve their declared entrypoint from the installed manifest anchor when available, and they must declare that entrypoint as
module:callable - delegated and Python plugin execution requires Python 3.11 or newer on
PATH plugins inspect [plugin]can report either one plugin or the full inventory, andplugins doctorreports current-runtime drift and missing entrypointsplugins explain [plugin]can report either a registry-wide summary or one plugin's compatibility and load diagnostics, including unknown or reserved referencesplugins wherereports the active plugins directory and registry file together with existence and write-readiness hintsplugins reserved-namesreports the full blocked plugin namespace inventory, including official product namespaces and grouped ownership details, and confirms that the same policy applies to plugin aliases- compatibility is validated from
compatibility.min_inclusiveandcompatibility.max_exclusive - duplicate namespaces and alias conflicts are rejected during install
- installed plugin namespaces and declared plugin aliases are executed as routed
bijux <plugin-command> ...subcommands pythonanddelegatedplugins return structured payloads through the host renderer, whileexternal-execplugins keep their own stdout, stderr, and exit-code contract
Python Facade APIs¶
The current documented Python-facing facade exports:
version()command_tree_introspection()execution_facade(argv)execution_facade_with_status(argv)output_envelope_model()error_to_exception(payload)config_resolution_helpers(home_dir)plugin_registry_inspection(registry_file)install_path_helpers(home_dir)migration_warnings()post_install_diagnostics()
The Python package is a Rust-backed compatibility surface, not a second independent runtime.
Relevant runtime-facing exceptions include:
PlatformWheelUnavailableNativeExtensionUnavailable
Local Product Routing¶
Adjacent Bijux product binaries can be invoked either through the routed umbrella command or directly when their executables are discoverable.
Typical local setup:
Examples:
bijux atlas --help
bijux dev atlas --help
bijux-atlas --help
bijux-dev-atlas --help
# from a workspace checkout
cargo run -q -p bijux-dev-cli --bin bijux-dev-cli -- list-products --format json --no-pretty
The list-products output is the verification surface for known runtime and control-plane product binaries.
Current Python Compatibility Baseline¶
Compatibility review is still anchored on two comparisons:
- current
bijux-clivs currentbijux-cli-python - current
bijux-cli-pythonvs the repository's configured stable PyPI baseline selected for the parity suite
Historically retained Python-facing overlap still matters for:
- top-level command identity
- global flag behavior and precedence
- plugin command behavior
- REPL and completion expectations
- documented exit code meanings
Migration Notes That Still Matter¶
- the Python package now delegates command execution to the Rust runtime
- runtime resolution follows
BIJUX_BINfirst, thenbijuxonPATH - compatibility warnings and post-install diagnostics exist to surface legacy Python-only assumptions
- if no usable runtime binary is found, the facade fails rather than silently inventing a second execution path
Honest Limit¶
This page describes supported routed and compatibility surfaces. It does not claim that every historical Python implementation detail remains public or stable.