b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
Build Skills Index / trigger-deploy (push) Waiting to run
CI / Deny unrelated histories (push) Blocked by required conditions
CI / Lint Docker scripts (push) Blocked by required conditions
CI / Docs Site (push) Blocked by required conditions
CI / Supply-chain scan (push) Blocked by required conditions
CI / OSV scan (push) Waiting to run
CI / CI timing report (push) Blocked by required conditions
CI / Check contributors (push) Blocked by required conditions
CI / Check uv.lock (push) Blocked by required conditions
CI / Build&Test Docker image (push) Blocked by required conditions
CI / Detect affected areas (push) Waiting to run
CI / Python tests (push) Blocked by required conditions
CI / Python lints (push) Blocked by required conditions
CI / TypeScript (push) Blocked by required conditions
CI / All required checks pass (push) Blocked by required conditions
12 lines
262 B
Python
Executable File
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()
|