The follow-up to Getting started. This is how a stock Hermes install becomes a daily driver: cost-aware model routing, memory that doesn't rot, skills that compound, sub-agents that parallelize your work, and the config knobs nobody reads until something's slow or expensive.
People ask "which model is best?" first. Wrong question. Hermes' output quality is roughly:
result = model × context × tools × memory × skills × your feedback
A flagship model with no memory and no skills loses to a mid-tier model with six months of accumulated skills and clean memory — and costs 10× more doing it. Optimize the multipliers in order of leverage: skills > memory > model routing > config > everything else.
Hermes lets you assign different models to different jobs. Use that ruthlessly:
| Job type | Route to | Why |
|---|---|---|
| Cron jobs, health checks, monitoring | Cheap/free models (Gemini free tier, DeepSeek, Kimi) | Structured, low-stakes, high-frequency. These are 80% of your token volume. |
| Daily ops (SSH work, HA config, file edits) | Mid-tier (your default) | Tool-calling competence matters more than benchmark scores. |
| Multi-file debugging, architecture, tricky migrations | Flagship (Claude Sonnet/Opus, GPT-5-class) | Reserve for tasks where being wrong costs more than the tokens. |
| Auxiliary tasks (vision, compression, session naming) | Cheapest that works | Set explicitly or they fall back to auto and may silently fail. |
| Sub-agents (delegation) | Configurable separately | delegation.model — children often need less brain than the parent. |
Concrete commands:
# per-job model pinning for cron (routine work on cheap models)
hermes cron edit <id> # set model/provider per job
# auxiliary models — stop silent vision/compression failures
hermes config set auxiliary.vision.provider openrouter
hermes config set auxiliary.vision.model google/gemini-flash-1.5
# delegation gets its own brain
hermes config set delegation.model deepseek/deepseek-chat
My setup runs on a $22/month Nous research API budget. All routine work (health checks, backups, monitoring, most HA ops) goes to cheap models; flagships only get multi-file forensics. Before routing: ~$60/mo. After: comfortably under budget with more total work done. Check yours with hermes insights.
Hermes injects memory into every turn. That makes memory both its superpower and its biggest failure mode: a bloated or stale memory degrades every single response and burns tokens 24/7.
session_search (FTS5, free) for recalling past work."Review everything in your memory. Remove anything stale, convert instructions into declarative facts, and move anything procedural into a skill. Show me the diff before saving."
Skills are where Hermes pulls away from every other agent. Two months of disciplined skill-building and your agent does things a fresh install simply cannot.
Hermes ships a background curator that tracks skill usage, marks idle ones stale, and archives them (never deletes). Keep it enabled:
hermes curator status
hermes curator run # deterministic sweep — free, no tokens
hermes curator pin home-assistant # protect your crown jewels
Pin the 3–5 skills that define your setup (mine: home-assistant, homelab-services, plus the SSH fleet one). Everything else can flow through the lifecycle.
Hermes can spawn sub-agents with isolated contexts and terminal sessions. Use delegation when a subtask is reasoning-heavy but independent (debugging one service while it works on another, researching two options in parallel). The key config:
hermes config set delegation.max_iterations 50 # cap child loops
hermes config set delegation.model <cheap-model> # children don't need your flagship
Two rules from experience:
The gateway + cron is what turns "assistant I query" into "operator that works while I sleep." Patterns that work well:
| Pattern | Setup |
|---|---|
| Silent watchdog | Job runs a script; empty output = no message. Only state changes and new issues alert. Recurring known-bad belongs in kanban, not your Telegram. |
| Morning brief | Daily job, cheap model, aggregates overnight state into one message. |
| Chained jobs | Job A collects data, job B processes it (context_from links them). |
| Project-scoped jobs | workdir pins a job to a repo so its AGENTS.md loads — the job behaves like a team member who read the docs. |
Only notify on CRITICAL or NEW issues. If everything alerts, nothing does — you'll mute the agent within a month, and then it could be on fire and you wouldn't know. "Silence is the default" is the best cron instruction ever written.
Profiles are separate Hermes instances with isolated config, sessions, skills, and memory (~/.hermes/profiles/<name>/). Uses I've found genuinely valuable:
.env — for testing prompts or skills before promoting them.hermes profile create sandbox --clone # clone current as starting point
hermes -p sandbox # run against it
Defaults are sane; these are the ones that actually change daily experience:
| Setting | Recommended | Why |
|---|---|---|
approvals.mode | smart | Auto-approve low-risk, still asks on dangerous. Manual gets old fast. |
compression.threshold | 0.50 (default) | Earlier compression = cheaper long sessions but more summary loss. Raise slightly if summaries lose too much. |
agent.max_turns | 90 (default) | Lower it for cron jobs on cheap models — bounded loops = bounded cost. |
terminal.timeout | 180+ for build-heavy work | Nothing's worse than a killed 20-minute build at 95%. |
security.redact_secrets | true (default) — never change | Scrubs keys from tool output before they hit context/logs. |
display.show_cost | true while tuning | You can't optimize what you can't see. Turn off later. |
curator.enabled | true | Free skill lifecycle maintenance. Keep consolidate: false unless you want an aux-model merging skills. |
/new is free./compress before long multi-step work in a session you want to keep — better to compress on your terms than the auto-compressor's./title) — session_search and --resume become actually useful, and future-you can find "the vacuum automation session" in seconds.Hermes improves fastest when you treat corrections as training data:
hermes insights for cost, the memory-audit prompt from section 3, hermes curator status for skills.In order of leverage — do these once and Hermes is operating near its ceiling:
smart; secret redaction untouchedhermes insights bookmarked — check monthly, adjust routingInstall, provider setup, gateway on Telegram, memory seeding, safety — the zero-to-useful path.
Related: Letting an AI agent run your Home Assistant · Official docs