- Update __version__ to 0.2.0 (was 0.1.0) - Update pyproject.toml to match - Add RELEASE_v0.2.0.md with comprehensive changelog covering: - All 231 merged PRs - 120 resolved issues - 74+ contributors credited - Organized by feature area with PR links
16 lines
505 B
Python
16 lines
505 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.2.0"
|
|
__release_date__ = "2026.3.12"
|