The Wizard of AI
Back to Resources
Agent Skill Pack

Hermes AgentUse-Case Playbooks

Seven hands-on guides for putting a self-improving AI agent to work on the processes you actually care about — with the real CLI commands and config, not hand-waving.

Download the Pack(.zip, 17 KB)

What's Inside

Each guide is self-contained: what the use case is, which agent primitives make it possible (memory, skills, cron, webhooks), and exactly how to set it up.

  • 01 — Profiles & Memory Budget: isolated agent personas and the bounded-memory config everything else relies on
  • 02 — Cost & Review Monitoring: the wakeAgent gate — a cheap pre-run script that only wakes the LLM when something actually changed
  • 03 — System Health Checks: LLM-free cron watchdogs for TLS, uptime, and services — effectively free
  • 04 — Second Brain over Slack: one shared, ever-learning source of company context for the whole team
  • 05 — Auto-Respond to Leads over Gmail: lead detection, drafted replies, and meeting booking — including the full Google OAuth walkthrough
  • 06 — Competitor Watchdog: a weekly cron that studies competitors and keeps your PRD current, using the PRD-as-a-skill pattern
  • 07 — Social Media Drafting & Posting: video script → X + LinkedIn drafts → human review → publish via the xurl CLI

The Big Idea: Stop Paying for Empty Ticks

Most scheduled AI automations burn tokens on every tick whether anything happened or not. These playbooks are built around two mechanisms that fix that: the wakeAgent gate (a $0 pre-check that decides if the model should fire) and no-agent mode (the script's output IS the message — no model call at all). If you run agents on a schedule, this pattern alone pays for the read.

Who It's For

Anyone running Hermes Agent (by Nous Research) or designing scheduled agent automations on any platform — the gating patterns, bounded-memory philosophy, and skills-as-procedural-memory approach transfer directly.

How to Install

  1. 1Download and unzip the pack.
  2. 2Start with README.md — it maps all seven guides and the two token-saving flags.
  3. 3Read Guide 01 first (profiles & memory) — the other six build on it.
  4. 4Pick the guide matching your use case and follow the CLI steps — or paste a guide into your agent and ask it to build the automation for you.

Pairs With