Competing installers and checkout-local venv assumptions bypassed PM selection, install consent, and generation lifetimes. Route consumers through PM and installation-bound launchers. Refresh source launchers before obsolete Python entries can be collected. Remove Node, browser, and CUA acquisition engines, obsolete venv-holder handling, detached sync, and unused PM APIs. Keep historical updater exports inert and preserve external tool ownership and native integration. Share product freshness and prepared inputs across builders. Align plugin admission, Docker provisioning, setup instructions, and behavioral tests. Verified targeted Python and JavaScript tests, desktop and web typechecks, scoped lint, real product builds, and the Docker frontend smoke test. The missed post-setup test cleanup is included and verified. Native Windows/macOS execution, full Rust compilation, and the complete repository suite remain unverified. Historical compatibility requirements were preserved and extended, not fully rescanned.
13 lines
408 B
Python
Executable File
13 lines
408 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Historical script entry; service policy belongs to ``hermes gateway``."""
|
|
import os
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
root = Path(__file__).resolve().parents[1]
|
|
sys.path.insert(0, str(root))
|
|
from hermes_cli._launchers import runtime_command
|
|
|
|
if __name__ == "__main__":
|
|
command = runtime_command(root, ["gateway", *(sys.argv[1:] or ["run"])])
|
|
os.execv(command[0], command) |