15 lines
474 B
Python
15 lines
474 B
Python
|
|
"""
|
||
|
|
Hermes CLI - Unified command-line interface for Hermes Agent.
|
||
|
|
|
||
|
|
Provides subcommands for:
|
||
|
|
- hermes chat - Interactive chat (same as ./hermes)
|
||
|
|
- hermes gateway - Run gateway in foreground
|
||
|
|
- hermes gateway start - Start gateway service
|
||
|
|
- hermes gateway stop - Stop gateway service
|
||
|
|
- hermes setup - Interactive setup wizard
|
||
|
|
- hermes status - Show status of all components
|
||
|
|
- hermes cron - Manage cron jobs
|
||
|
|
"""
|
||
|
|
|
||
|
|
__version__ = "0.1.0"
|