🚀 Core Commands
Start Hermes Agent hermes
Show help menu hermes --help
Show version hermes --version
Run interactive mode hermes chat
Run with model hermes --model <model-name>
Verbose logging hermes --verbose
🤖 Model + Provider Usage
Use OpenAI provider hermes --provider openai
Use local model hermes --provider ollama
Specify API endpoint hermes --api-base http://localhost:11434
Specify model directly hermes --model llama3
Environment variable auth export OPENAI_API_KEY=<key>
💻 Agent Workflows
Analyze repo hermes analyze .
Explain codebase hermes summarize .
Generate documentation hermes docs .
Review security posture hermes security-review .
Assist with debugging hermes debug <project>
🐧 Linux + TMUX Workflows
Run Hermes in TMUX tmux new -s hermes
Launch Hermes inside session hermes chat
Detach session safely Ctrl+b then d
Reattach later tmux attach -t hermes
Monitor logs in second pane tail -f logs/app.log
🔐 Security Practices
Never hardcode secrets Use environment variables
Review generated code git diff
Verify dependencies npm audit
Validate build before deploy npm run build
Check repo status before commit git status