|
|
il y a 3 semaines | |
|---|---|---|
| scripts | il y a 3 semaines | |
| src | il y a 3 semaines | |
| tests | il y a 3 semaines | |
| .env.example | il y a 3 semaines | |
| .gitignore | il y a 3 semaines | |
| DB_SCHEME.md | il y a 3 semaines | |
| HERMES_CONCERNS.md | il y a 3 semaines | |
| HERMES_CYCLE.md | il y a 3 semaines | |
| PROJECT.md | il y a 3 semaines | |
| README.md | il y a 3 semaines | |
| RELEASE_NOTES.md | il y a 3 semaines | |
| TRADER_COMPATIBILITY_NOTE.md | il y a 3 semaines | |
| UPGRADE_PLAN.md | il y a 3 semaines | |
| hermes.md | il y a 3 semaines | |
| hermes_and_strategies.md | il y a 3 semaines | |
| killserver.sh | il y a 3 semaines | |
| pyproject.toml | il y a 3 semaines | |
| requirements.txt | il y a 3 semaines | |
| restart.sh | il y a 3 semaines | |
| run.sh | il y a 3 semaines | |
| tests.sh | il y a 3 semaines |
Hermes MCP is a FastAPI + MCP supervisor for market interpretation, strategy selection, and Trader control.
/mcp/sse/health/dashboard/report()Hermes reads Trader state via strategy snapshots and writes only through Trader's canonical action tool:
apply_control_decision(payload)Dispatch is gated locally by:
HERMES_ALLOW_ACTIONSWhen the gate is false, Hermes still makes and records decisions, but returns a blocked dispatch result instead of changing Trader state.
./run.sh 8590
./tests.sh
Hermes now stores a full replay_input bundle with each new decision, so stored decisions can be replayed against the current decision engine.
Replay recent decisions:
python3 scripts/replay_decisions.py --limit 20
Only show changed outcomes:
python3 scripts/replay_decisions.py --limit 50 --only-changed
JSON output:
python3 scripts/replay_decisions.py --limit 50 --json
Optional filter by concern:
python3 scripts/replay_decisions.py --concern-id <concern-id>
Note: decisions created before this replay capture existed will not have replay_input yet.