feat: add hermes backend support

- Add myhermes entrypoint and myagents hermes subcommand
- Hermes sessions read from global SQLite store (~/.hermes/state.db)
- Default args: --yolo
- Update README, AGENTS.md, Makefile, pyproject.toml
- Add tests for hermes subcommand, passthrough, and session listing
This commit is contained in:
Zhengshou Lai
2026-07-15 10:21:38 +08:00
parent 2169a0a303
commit 78ca74152f
11 changed files with 284 additions and 17 deletions
+1
View File
@@ -13,6 +13,7 @@ myagents = "myagents.cli:cli"
myclaude = "myagents.entrypoints:claude_main"
mykimi = "myagents.entrypoints:kimi_main"
mycodex = "myagents.entrypoints:codex_main"
myhermes = "myagents.entrypoints:hermes_main"
[dependency-groups]
dev = ["pytest>=8.0"]