/ hermes
hermes
 1  #!/usr/bin/env python3
 2  """
 3  Hermes Agent CLI launcher.
 4  
 5  This wrapper should behave like the installed `hermes` command, including
 6  subcommands such as `gateway`, `cron`, and `doctor`.
 7  """
 8  
 9  if __name__ == "__main__":
10      from hermes_cli.main import main
11      main()