Files
hermes-agent/hermes
T
2026-06-14 14:30:48 -04:00

12 lines
262 B
Python
Executable File

#!/usr/bin/env python3
"""
Hermes Agent CLI launcher.
This wrapper should behave like the installed `hermes` command, including
subcommands such as `gateway`, `cron`, and `doctor`.
"""
if __name__ == "__main__":
from hermes_cli.main import main
main()