hermes-overnight-autonomy

hermes-overnight-autonomy is a skill for Claude Code, Codex from AtlasOmnia/donna-starter. It costs 17 tokens per session (3,035 once invoked), scanned A, original, MIT.

A set of instructions for keeping Hermes projects running when nobody is watching, including during gateway restarts or worker failures. It uses a SQLite-backed Kanban board to track tasks, claims, retries, heartbeats, and recovery state, plus an operating-system watchdog for liveness alerts.

In plain words
What is it for?
Use it to run unattended work overnight or continuously, recover stale task assignments, monitor gateway or dispatcher availability, and define limits and acceptance conditions for each task.
Why use it?
It provides durable task tracking and can reassign work from failed workers, while keeping retries and runtime limits bounded.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for hermes-agent. Also seen: built for hermes-agent.

Good fit Use it to run unattended work overnight or continuously, recover stale task assignments, monitor gateway or dispatcher availability, and define limits and acceptance conditions for each task.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/atlasomnia/donna-starter/hermes-overnight-autonomy
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AtlasOmnia/donna-starter --skill hermes-overnight-autonomy
Clone the repo
git clone --depth 1 https://github.com/AtlasOmnia/donna-starter

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hermes-overnight-autonomy

README.md
[![agentmods](https://agentmods.dev/badge/skills/atlasomnia/donna-starter/hermes-overnight-autonomy/github.svg)](https://agentmods.dev/skills/atlasomnia/donna-starter/hermes-overnight-autonomy)
Your own site
<a href="https://agentmods.dev/skills/atlasomnia/donna-starter/hermes-overnight-autonomy"><img src="https://agentmods.dev/badge/skills/atlasomnia/donna-starter/hermes-overnight-autonomy/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hermes-overnight-autonomy

Your own site · 80×15
<a href="https://agentmods.dev/skills/atlasomnia/donna-starter/hermes-overnight-autonomy"><img src="https://agentmods.dev/badge/skills/atlasomnia/donna-starter/hermes-overnight-autonomy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,035 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 153
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Rogue Agent · line 159
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.03035
Opus 5 $0.00009 $0.01517
Sonnet 5 $0.00003 $0.00607
Haiku 4.5 $0.00002 $0.00303

Measured 11d ago against content hash 0713f984107d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

hermes-overnight-autonomy scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/autonomous-ai-agents/hermes-overnight-autonomy/SKILL.md · 193 lines

How it starts

The opening of the file, as written. The whole thing — 193 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Hermes Overnight Autonomy

Use this skill when the user asks for Hermes projects to continue across the night, gateway restarts, worker failures, or 24/7 operation. The target is durable progress with bounded risk—not a tower of supervisors.

Architecture decision

Use Kanban as the durable execution kernel:

  • SQLite-backed cards preserve task bodies, dependencies, claims, heartbeats, run history, comments, retries, and circuit-breaker state.
  • The gateway-embedded dispatcher is the normal scheduler and stale-claim reclaimer.
  • Each unattended card has an explicit runtime cap, retry budget, named assignee, workspace, and acceptance contract.
  • A separate OS-supervised watchdog provides liveness and alerting when the gateway or dispatcher is unavailable.
  • Recovery remains disabled during calibration. Do not add a standalone Kanban daemon against the same board database or multiple competing relaunchers.

Kanban solves durable task lifecycle and dead-worker redispatch; it does not prove meaningful progress, resume in-memory reasoning, judge code quality, substitute models automatically, or survive total gateway loss by itself.

Rollout stages

Stage 0 — Read-only baseline

Before any mutation, collect:

  1. Hermes version and live profile roster; never invent assignee names.
  2. Gateway service state, launchd/systemd ownership, PID, and ticker/cron health.
  3. Kanban board list, dispatcher configuration, board diagnostics, and current running tasks.
  4. Existing watchdogs, rescue registries, cron jobs, launchers, and service labels; pause/avoid overlapping writers rather than creating duplicates.
  5. Exact checkout/file ownership for every intended write surface.

Use the smallest existing empty board for a pilot when appropriate; do not create a second board merely to prove the lifecycle.

Stage 1 — Disposable lifecycle pilot

Create one harmless card with:

  • a real existing assignee;
  • workspace=scratch unless repository work is explicitly required;
  • a short runtime cap and one retry maximum;
  • explicit instructions to show state, heartbeat, comment, and complete;
  • no repository, credential, external-service, or configuration access.

Read the full file on GitHub · 193 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 193 lines · 17 tokens per session scan A 0713f984107d

Subscribe to this mod's changes

hermes-overnight-autonomy is a skill published in the GitHub repository AtlasOmnia/donna-starter (110 stars, last pushed 11d ago), licensed MIT. It adds 17 tokens to every session and 3,035 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

kill-the-standup

Reads yesterday's Linear issues and GitHub commits for the authenticated user, formats a standup update (done / doing / blockers), and posts it to Slack. Use when asked to write a standup, generate a standup update, post to the standup channel, summarize yesterday's work, or automate the daily standup. Trigger when a…

Varnan-Tech/opendirectory · 108 tokens

notion-artifact-capture

Use when a user says “save to Notion” for research, reports, drafts, references, or generated artifacts and wants a reusable default destination. Bootstraps a generic Notion AI Output Library under a user-created shared parent page, saves typed metadata and optional Markdown, verifies every write through the live API…

AtlasOmnia/hermes-custom-pack · 82 tokens

libretranslate-markdown-i18n

Machine-translate Markdown / Obsidian / Quartz content into other languages using a self-hosted LibreTranslate instance, preserving frontmatter, headings, emojis, bold/italic, wikilinks (![[...]]/[[...]]) and internal links. Use whenever a user wants to auto-translate a Markdown vault, Obsidian notes, or a…

pedroiff0/awesome-skills · 127 tokens

todo-discipline

Use when starting any complex task (3+ steps) or before declaring work complete. Enforces todo/task state to match reality — merge updates + read verification. Prevents false completion.

frankxai/awesome-hermes-agent-skills · 41 tokens

obscure-tool-install-lookup

Use when a user asks how to install or use an obscure CLI tool, agent, or package and search engines are blocked, CAPTCHA-walled, or unhelpful. Resolves canonical install commands via GitHub repo search, raw README fetches, and official docs — without relying on websearch or bot-walled search engines.

pedroiff0/awesome-skills · 74 tokens

google-workspace

Gmail, Calendar, Drive, Contacts, Sheets, and Docs — through Hermes-managed OAuth and a thin CLI wrapper. When gws is installed, the skill uses it as the execution backend for broader Google Workspace coverage; otherwise it falls back to the bundled Python client implementation.

AtlasOmnia/hermes-custom-pack · 24 tokens