hermes-overnight-autonomy

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

A guide for keeping Hermes projects running without supervision, including overnight, after gateway restarts, or during worker failures. It uses a Kanban board backed by SQLite, a small database, to preserve tasks and execution history.

In plain words
What is it for?
Running Hermes tasks overnight or continuously, recovering from gateway or worker failures, tracking task claims and heartbeats, and supervising service liveness.
Why use it?
It helps unfinished work survive process failures and lets stale tasks be reclaimed, while setting limits on retries, runtime, and ownership to reduce unattended risk.

Skill for Claude CodeCodex

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

Good fit Running Hermes tasks overnight or continuously, recovering from gateway or worker failures, tracking task claims and heartbeats, and supervising service liveness.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/atlasomnia/hermes-custom-pack/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/hermes-custom-pack --skill hermes-overnight-autonomy
Clone the repo
git clone --depth 1 https://github.com/AtlasOmnia/hermes-custom-pack

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/hermes-custom-pack/hermes-overnight-autonomy/github.svg)](https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/hermes-overnight-autonomy)
Your own site
<a href="https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/hermes-overnight-autonomy"><img src="https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/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/hermes-custom-pack/hermes-overnight-autonomy"><img src="https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/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.
Origin 100% copy Near-identical to another mod 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

This is a copy

100% identical to hermes-overnight-autonomy — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/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/hermes-custom-pack (56 stars, last pushed 27d 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. It is 100% identical to hermes-overnight-autonomy, differing in 0 lines, and is treated as a copy.

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

pipefy-process-intelligence

Use this skill when the user wants to analyze an existing pipe for improvement opportunities — automation gaps, manual bottlenecks, missing AI agents, field conditions, or adjacent processes. Acts as a process analyst: investigates, diagnoses, and improves the pipe in progressive rounds — each round delivers visible…

pipefy/ai-toolkit · 65 tokens

parallel-orchestrator

Manage parallel Claude Code workstreams using git worktrees. Use when: splitting large tasks across multiple workers, coordinating parallel development, monitoring worker progress, integrating completed work, analyzing work item documents (code reviews, issue lists). Triggers: parallel, orchestrator, worktrees…

jimmc414/claude-code-plugin-marketplace · 78 tokens

lark-workflow-meeting-summary

A workflow for collecting Feishu meeting notes from a chosen time range and turning them into a structured report. Feishu meeting notes are records created from workplace meetings.

davidtoby/agent-skills · 55 tokens

things-mac

Manage Things 3 via the things CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database). Use when a user asks OpenClaw to add a task to Things, list inbox/today/upcoming, search tasks, or inspect projects/areas/tags.

SafeAI-Lab-X/ClawKeeper · 69 tokens

trello

Manage Trello boards, lists, and cards via the Trello REST API.

SafeAI-Lab-X/ClawKeeper · 19 tokens