Sleep
Put processes, notifications, or systems into graceful suspension.
What This Skill Does
Sleep = temporary, reversible suspension with guaranteed state preservation. The target stops acting but wakes up intact. No data loss, no corruption, no permanent change.
In this grimoire, Sleep is treated as a hybrid spell with a shipping-now delivery profile.
Canonical reference input: Sleep (spell).
When To Use
- Keywords: pause, suspend, hibernate, DND, maintenance window, cooldown, quiet mode, silence temporarily, freeze (with resume), graceful degradation
- Patterns requiring all three:
- Something must stop acting for a defined period
- State/queue/context must be preserved during the stop
- A wake condition exists (timer, threshold, manual trigger, external event)
Prerequisites
- Environment variables available to Hermes:
HA_URL, HA_TOKEN.
- Primary credential or token:
HA_TOKEN.
- Binaries on PATH:
curl.
Setup
- Confirm the required environment variables are available inside the active Hermes runtime, not just in a shell profile.
- Verify the required binaries resolve on PATH before you rely on them in a procedure.
- Choose a non-production or low-risk target first if the skill can page, unlock, alert, or touch a live integration.
Procedure
- Restate the target, the success condition, and any no-touch boundaries before taking action.
- Identify the sleeper: What exact process, channel, service, or workflow stops?
- Define the boundary: What stops, what keeps running, what queues for later?
- Set the wake condition: Timer? Manual trigger? Threshold? External event? Must have one.
- Verify state preservation: Confirm nothing is lost—only deferred. List what persists.
- Return the plan: Sleep configuration + wake conditions + state-preservation checklist.
- Package the result as the deliverables below, with confidence, assumptions, and unresolved risk called out explicitly.
Deliverables
- Sleep configuration: what suspends, what stays active, what queues
- Wake conditions: how/when resume happens
- State-preservation checklist: confirmation nothing is lost
Pitfalls / Guardrails
- Keep the theatrical framing, but name the concrete mechanism that makes the skill useful right now.
- Do not use for: "Permanently decommission" / "never come back" → Kill, not Sleep
- Do not use for: "Shut it down right now" / "pull offline" / "kill it" → Kill, not Sleep
- Do not use for: "Lock their credentials" / "prevent any further queries" → Access control, not Sleep
- Do not use for: "Paralyze a competing process" / "hard block" → Resource blocking, not Sleep
- Do not use for: "Team-wide agreement" / "communication norms" → Policy, not Sleep
- Do not use for: "Reduce fan noise" / "HVAC configuration" → Hardware config, not Sleep
- Do not use for: No wake condition defined → Bug, not Sleep (ask for one)
- Do not rely on a live integration until credentials, target scope, and rollback expectations are verified.
Verification
- Check that the result includes every deliverable promised above.
- Check that confirmed facts, assumptions, and inferences are visibly separated.
- Check which parts are concrete actions versus framing, so the user can tell what is real now.
- Check the required environment variables and binaries in the active Hermes runtime before trusting the procedure on a live target.
Example Invocation
/sleep design a graceful suspension plan for this [system/process/notification channel]. Define what stops, what queues, and how it wakes up
1---2name: sleep-23description: Sleep = temporary, reversible suspension with guaranteed state preservation. The target stops acting but wakes up intact. No data loss, no corruption, no permanent change.4license: CC0-1.05---6# Sleep7Put processes, notifications, or systems into graceful suspension.8## What This Skill Does9Sleep = temporary, reversible suspension with guaranteed state preservation. The target stops acting but wakes up intact. No data loss, no corruption, no permanent change.10In this grimoire, Sleep is treated as a hybrid spell with a shipping-now delivery profile.11Canonical reference input: Sleep (spell).12## When To Use1314- Keywords: pause, suspend, hibernate, DND, maintenance window, cooldown, quiet mode, silence temporarily, freeze (with resume), graceful degradation15- Patterns requiring all three:16- Something must stop acting for a defined period17- State/queue/context must be preserved during the stop18- A wake condition exists (timer, threshold, manual trigger, external event)1920## Prerequisites2122- Environment variables available to Hermes: `HA_URL`, `HA_TOKEN`.23- Primary credential or token: `HA_TOKEN`.24- Binaries on PATH: `curl`.2526## Setup27281. Confirm the required environment variables are available inside the active Hermes runtime, not just in a shell profile.292. Verify the required binaries resolve on PATH before you rely on them in a procedure.303. Choose a non-production or low-risk target first if the skill can page, unlock, alert, or touch a live integration.3132## Procedure33341. Restate the target, the success condition, and any no-touch boundaries before taking action.352. Identify the sleeper: What exact process, channel, service, or workflow stops?363. Define the boundary: What stops, what keeps running, what queues for later?374. Set the wake condition: Timer? Manual trigger? Threshold? External event? Must have one.385. Verify state preservation: Confirm nothing is lost—only deferred. List what persists.396. Return the plan: Sleep configuration + wake conditions + state-preservation checklist.407. Package the result as the deliverables below, with confidence, assumptions, and unresolved risk called out explicitly.4142## Deliverables4344- Sleep configuration: what suspends, what stays active, what queues45- Wake conditions: how/when resume happens46- State-preservation checklist: confirmation nothing is lost4748## Pitfalls / Guardrails4950- Keep the theatrical framing, but name the concrete mechanism that makes the skill useful right now.51- Do not use for: "Permanently decommission" / "never come back" → Kill, not Sleep52- Do not use for: "Shut it down right now" / "pull offline" / "kill it" → Kill, not Sleep53- Do not use for: "Lock their credentials" / "prevent any further queries" → Access control, not Sleep54- Do not use for: "Paralyze a competing process" / "hard block" → Resource blocking, not Sleep55- Do not use for: "Team-wide agreement" / "communication norms" → Policy, not Sleep56- Do not use for: "Reduce fan noise" / "HVAC configuration" → Hardware config, not Sleep57- Do not use for: No wake condition defined → Bug, not Sleep (ask for one)58- Do not rely on a live integration until credentials, target scope, and rollback expectations are verified.5960## Verification6162- Check that the result includes every deliverable promised above.63- Check that confirmed facts, assumptions, and inferences are visibly separated.64- Check which parts are concrete actions versus framing, so the user can tell what is real now.65- Check the required environment variables and binaries in the active Hermes runtime before trusting the procedure on a live target.6667## Example Invocation68```text69/sleep design a graceful suspension plan for this [system/process/notification channel]. Define what stops, what queues, and how it wakes up70```