Hermes Agent Goals Automation (Persistent Loops 2026)

Julian Goldie — founder, AI Profit Boardroom
By Julian Goldie · 10 min read
Get The AI Profit Stack Join AIPB →
🎯 1,000+ done-for-you AI agent workflows 📅 5 live coaching calls / week with me 🛡️ 7-day refund + 30-day ROI guarantee 👥 3,000+ AI operators inside

The Hermes agent goals automation is the closest thing to a real autonomous agent loop in open-source AI right now, and after running it daily I'm convinced this is the feature that finally makes Hermes production-grade for long-running work. This guide breaks down the automation use of the new persistent goals feature in 2026.

This is the automation view. I'll cover how goals replace manual loops, how to wire them into your stack, and what runs without you once everything is configured.

🔥 Want my Hermes goals automation roadmap? AI Profit Boardroom has the 30-day roadmap plus automation templates ready to deploy. → Get the roadmap

Why Hermes Agent Goals Automation Changes The Game

There are three reasons goals are a bigger deal than they look.

1 — No more polling loops

Pre-goals you had to write your own loop logic for any multi-step task. Post-goals there's a native loop inside Hermes that handles all of it.

2 — Judge replaces brittle checks

Pre-goals you wrote check logic into your scripts to decide when something was done. Post-goals a judge model handles completion detection cleanly.

3 — Resume across sessions

Pre-goals you had to keep the script running continuously. Post-goals you can pause and resume at any point without losing state.

How The Goal Loop Works (Technical)

The mechanics are inspired by Ralph Loops and follow a clear pattern. The goal gets accepted, turn N executes, the judge model is called to check completion, if the goal is complete the loop finishes, otherwise turn N+1 runs, and the loop repeats until the goal is done, the budget is exhausted, or you pause it manually.

That's it. Six steps and an autonomous agent.

Watch The Walkthrough

For the Hermes basics that goals build on top of, this walkthrough covers the foundations.

Setup

Three commands and you're running.

Step 1 — Update Hermes

hermes update

Step 2 — Configure

In your Hermes config, set goal_max_turns to somewhere between 20 and 50 depending on goal complexity, and configure goal_judge with your preferred provider and model for judging completion.

Step 3 — Run

/goal <text>

That's it. The loop fires immediately.

Best Judge Models

There are tradeoffs at each tier of judge model.

Cheap + fast

GPT-4o-mini and Haiku are cheap and fast, and they handle clear unambiguous goals well. Use them for high-volume routine work.

Balanced

Sonnet 4.8 and GPT-4o are the balanced middle, good for most goals where some nuance matters but the budget can't go infinite.

Premium

Opus and GPT-5 are premium tier and good for nuanced goals where the judge needs to make subtle calls about completion.

For most automation, Sonnet 4.8 is the sweet spot — see Sonnet 4.8 Review for why.

Automation Patterns

There are five patterns worth knowing.

Pattern 1 — Daily scheduled goals

Cron triggers /goal daily on a fixed schedule for routine work like content generation or data summaries.

Pattern 2 — Event-driven goals

A webhook triggers /goal when something happens externally, like a new lead landing or a customer ticket arriving.

Pattern 3 — Multi-step goals

A single goal spawns sub-goals via skills, breaking a complex task into manageable pieces autonomously.

Pattern 4 — Multi-agent goals

A manager goal coordinates worker agents, each with their own sub-goals running in parallel.

Pattern 5 — Closed-loop goals

The output of one goal feeds the input of the next, creating a continuous improvement loop without human intervention.

Configurable Settings Deep-Dive

Three knobs worth understanding properly.

goal_max_turns

Defaults to 20. Increase it for bigger goals that need more steps, decrease it for cost control on routine work.

goal_judge

Provider plus model. Higher quality judge means better completion detection but higher cost per goal.

Resume behaviour

Pause and resume preserves state across sessions, which means you can stop a long-running goal overnight and pick up exactly where you left off.

Common Automation Use Cases

Six high-leverage uses for goals.

1 — Daily content generation

/goal write and publish 1-3 articles on today's trending topics. Runs morning, done by lunch.

2 — Lead enrichment pipeline

/goal enrich today's leads with web data and score them. Runs nightly while you sleep.

3 — Customer ticket triage

/goal process incoming tickets and draft responses or escalate. Runs continuously throughout the day.

4 — Daily data summary

/goal pull metrics from all sources and summarise. Lands in your inbox by 9am.

5 — Code maintenance

/goal lint, format, and test all branches. Runs pre-commit on every push.

6 — Research deep-dive

/goal research [topic] across primary and secondary sources. Multi-step research without manual prompting.

Cost Of Goal Automation

Per goal cost depends on whether you're running local or cloud. Local Ollama costs nothing beyond your hardware. Cloud LLMs run £0.50-£10 per long-running goal depending on length and model choice.

For daily automation with 1-3 goals running per day, expect £30-£300/mo on cloud — versus thousands for the equivalent human work.

Reliability For Production

Three considerations for production-grade goals.

1 — Judge model accuracy

A stronger judge means fewer false completions and fewer over-runs. Don't cheap out on the judge if reliability matters.

2 — Turn budget tuning

Too low a turn budget produces incomplete goals. Too high and cost spirals. Tune for your specific goal types.

3 — Retry logic

Wrap goals in retry-on-fail logic so transient errors don't kill long-running automations.

Common Automation Mistakes

Three mistakes worth avoiding.

1 — Vague goals

Specific goals produce better judge accuracy. "Write 3 blog posts about X" beats "create some content" by a wide margin.

2 — No monitoring

Set and forget produces surprises. Monitor goal status at least daily so you catch failures early.

3 — Trying to automate everything via goals

Some tasks fit skills better than goals. Not everything is open-ended enough to need a goal loop.

Goals Vs Skills Vs Multi-Agent

Quick comparison of when to use what.

Pattern Best for
Skills Repeated specific actions
Goals Open-ended multi-step
Multi-agent Parallel coordinated work

Combine all three for maximum power rather than picking one.

Pairing Hermes Agent Goals Automation With Hermes Stack

Three combinations worth running together.

Goals + skills

Goals trigger skills mid-loop, which means the agent has tools available rather than just reasoning.

Goals + memory

Memory keeps long-running goals coherent across many turns, which is what makes complex goals actually finish.

Goals + multi-agent

Manager goal coordinates a worker swarm. See Hermes Agent Swarm for the swarm pattern.

Real Goal Examples I Run

Five goals from my own daily setup.

Goal 1 — daily blog series

/goal write 3 SEO blog posts on today's topics and publish. Runs in the morning and is done by lunch.

Goal 2 — lead scrape

/goal scrape 100 prospects from these criteria and add to sheet. Runs nightly while I sleep.

Goal 3 — competitor monitor

/goal check 10 competitors for new content and alert if anything notable. Weekly schedule.

Goal 4 — code maintenance

/goal lint, format, and test all branches. Runs pre-commit automatically.

Goal 5 — research summary

/goal weekly AI news summary with structured output. Sunday morning before coffee.

All five run via single /goal commands and require essentially zero manual intervention.

Migration From Manual Loops

If you've already built loops manually, here's the migration path.

Step 1 — Identify replaceable loops

Anything that's "do X until Y is true" maps cleanly to goals.

Step 2 — Test small

Migrate one loop first and verify it works before mass migrating.

Step 3 — Scale

Migrate all viable loops once you've validated the pattern.

By month two, your manual loops are gone and Hermes is handling everything natively.

🚀 Want help wiring goals automation? AI Profit Boardroom has weekly live coaching for goals deployment. → Join here

Time Saved By Automation

Per week, the difference is dramatic. Manual prompting eats most of the day for serious operators. Goal-based automation drops that to a few hours of monitoring and adjusting.

The net saving is a part-time hire's worth of output reclaimed.

What Goals Won't Automate

Three things to be honest about.

1 — Strategic decisions

You decide what to chase. Goals execute on direction, they don't set direction.

2 — Creative direction

Goals execute creative work. You direct the creative vision.

3 — Real-time interaction

For real-time conversations with customers or collaborators, use chat. Goals are for autonomous batch work.

Privacy Considerations

For sensitive automation work, privacy matters.

Local Hermes (Ollama)

Full privacy, since nothing leaves your machine.

Cloud LLM judge

Subject to provider data policies, which may or may not be acceptable for your use case.

For sensitive workflows, use a local model as the judge to keep everything in-house.

Performance Tips

Three tips for keeping goals fast and cheap.

1 — Cache prompts

Reuse system prompts across goals to take advantage of prompt caching on cloud APIs.

2 — Tune judge model

Stronger isn't always better. Test with your specific goals to find the right tier.

3 — Monitor turn distribution

If goals consistently use the full turn budget, scope them smaller. Hitting the cap is a sign your goals are too big.

FAQ — Hermes Agent Goals Automation

Best automation use case?

Daily multi-step content and research work, where the loop pattern fits naturally.

Cost to run?

Free local with Ollama, £30-£300/mo cloud depending on volume.

Setup time?

15 minutes to your first running goal.

Best judge model?

Sonnet 4.8 for most use cases.

Can goals run while I sleep?

Yes — set them up and walk away. They'll run autonomously and pause cleanly if needed.

What if a goal stalls?

Goal status shows clearly in the Hermes UI. Clear and re-prompt with tighter scope.

Worth automation investment?

For knowledge businesses, yes — the ROI is enormous within the first quarter.

Also On Our Network

Related Reading

📺 Video notes + links to the tools 👉

🎥 Learn how I make these videos 👉

🆓 Get a FREE AI Course + Community + 1,000 AI Agents 👉

The Hermes agent goals automation is the loop feature you've been waiting for in open-source AI — set it up this week and watch the autonomy compound.

Real wins from inside the AI Profit Boardroom

See all 3,000+ members →
AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot AIPB member win screenshot

What members are shipping right now

Real AI agents, real workflows, real revenue — built by AIPB members inside the community this week.

Member-built AI workflow Member-built AI agent Member-built automation
See what 3,000+ operators are building →

Ready to Build AI Agents That Actually Make Money?

Join 3,000+ entrepreneurs inside the AI Profit Boardroom. Get 1,000+ plug-and-play AI agent workflows, daily coaching, and a community that holds you accountable.

Join The AI Agent Community →

7-Day No-Questions Refund • Cancel Anytime

← Back to all posts