hermes-overnight-autonomy

Configures Kanban-based durable task execution and alert-only watchdogs for unattended Hermes operation.

115|9|Updated Aug 5, 2026
One-click install
npx skills add https://github.com/AtlasOmnia/donna-starter --skill hermes-overnight-autonomy-atlasomnia
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hermes-overnight-autonomy
Source: https://github.com/AtlasOmnia/donna-starter/tree/main/skills/autonomous-ai-agents/hermes-overnight-autonomy
Command: npx skills add https://github.com/AtlasOmnia/donna-starter --skill hermes-overnight-autonomy-atlasomnia

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Running AI agent work unattended overnight or across gateway restarts risks lost tasks, dead workers, and silent failures. This Skill provides a staged, bounded-risk approach to durable Hermes autonomy using Kanban as the execution kernel, with OS-supervised watchdogs for liveness and alerting. ## Core Features & Use Cases - Staged rollout: Progresses from read-only baseline through a disposable lifecycle pilot, gateway acceptance, alert-only watchdog, and finally fail-closed recovery only after calibration. - Alert-only monitoring: Deploys a one-shot deterministic collector plus relay that emits [SILENT] when healthy and deduplicated JSON alerts via hermes send when issues change. - Worker transaction contract: Enforces one invariant, exact writable files, one gate, and one checkpoint per card, with controller-owned verification instead of trusting worker self-reports. - Use Case: Set up a macOS LaunchAgent watchdog that checks Kanban board heartbeats and dispatcher liveness every interval, alerting you on Telegram only when a running card's heartbeat goes stale. ## Quick Start Ask the agent to set up an alert-only Kanban watchdog for my Hermes gateway so unattended overnight tasks are monitored without automatic recovery.

Frequently Asked Questions about hermes-overnight-autonomy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I keep Hermes agent tasks running overnight unattended?

Use Kanban as the durable execution kernel: SQLite-backed cards preserve task state, claims, and heartbeats across restarts, while the gateway-embedded dispatcher handles scheduling and stale-claim reclamation. Add an OS-supervised watchdog for liveness alerting only after a staged pilot verifies the lifecycle.

How do I monitor Kanban board task progress without automatic recovery?

Deploy an alert-only collector that reads board state, heartbeats, claims, and dispatcher dry-run output, emitting `[SILENT]` when healthy and deduplicated JSON alerts on new issues. The collector must never kill, restart, reassign, or modify any task.

Does the Kanban watchdog support automatic recovery of failed workers?

Automatic recovery is a separate, explicitly approved stage enabled only after synthetic failure tests prove the alert path. It uses atomic expiring claims, bounded stale sampling, and at most one automatic resume before circuit-breaking and alerting.

Why does reading a live SQLite WAL database fail with mode=ro?

URI mode=ro can fail on WAL databases when SQLite cannot establish its shared-memory sidecar, and immutable=1 can hide committed WAL content. Use a normal connection followed by PRAGMA query_only=ON for safe read-only watchdog queries.

What are the limitations of unattended Kanban-based autonomy?

Kanban handles durable task lifecycle and dead-worker redispatch but cannot prove meaningful progress, resume in-memory reasoning, judge code quality, or survive total gateway loss alone. A replacement worker receives card context and filesystem checkpoints, not the failed worker's chain of thought.