Unseen Servant
Run a persistent background agent that handles mundane, repeating tasks silently.
What This Skill Does
Use this spell when you need a tireless helper that organizes, tidies, triages, and maintains without requiring your constant attention.
In this grimoire, Unseen Servant is treated as a literal spell with a shipping-now delivery profile.
Canonical reference input: Unseen Servant (spell).
When To Use
- Routine maintenance tasks keep piling up: dependency updates, stale branch cleanup, inbox triage, log rotation.
- You want a helper that runs continuously in the background and only surfaces when something needs your attention.
- The work is important but low-priority - it should happen reliably without competing for your focus.
Prerequisites
- No extra runtime dependencies beyond Hermes Agent and the normal toolset for this session.
Procedure
- Restate the target, the success condition, and any no-touch boundaries before taking action.
- Define the servant's mandate: which tasks, which surfaces, and what scope boundaries.
- Configure the cadence - continuous, periodic, or event-triggered.
- Let the servant operate silently, logging its actions for later review.
- Review the activity log periodically and adjust the mandate or dismiss the servant when done.
- Stop for explicit confirmation before taking a live action that changes access, triggers an alert, or touches a real system boundary.
- Package the result as the deliverables below, with confidence, assumptions, and unresolved risk called out explicitly.
Deliverables
- A running background process or agent loop with a clear task mandate.
- An activity log of everything the servant touched, with timestamps.
- A dismiss or pause mechanism so the user stays in control.
Pitfalls / Guardrails
- Treat the live action surface as real operational work, not decorative lore.
- The servant does not expand its own mandate - it only touches what the user pre-approved.
- All actions must be logged and reviewable. Silent operation does not mean unaccountable operation.
- Provide a clear dismiss mechanism - the user must always be able to stop the servant immediately.
Verification
- Check that the result includes every deliverable promised above.
- Check that confirmed facts, assumptions, and inferences are visibly separated.
- Check that the exact live target, confirmation gate, and rollback or recovery path are explicit.
Example Invocation
/unseen-servant set up a background agent for this recurring task, with a clear mandate, activity log, and kill switch
1---2name: unseen-servant-23description: Use this spell when you need a tireless helper that organizes, tidies, triages, and maintains without requiring your constant attention.4license: CC0-1.05---6# Unseen Servant7Run a persistent background agent that handles mundane, repeating tasks silently.8## What This Skill Does9Use this spell when you need a tireless helper that organizes, tidies, triages, and maintains without requiring your constant attention.10In this grimoire, Unseen Servant is treated as a literal spell with a shipping-now delivery profile.11Canonical reference input: Unseen Servant (spell).12## When To Use1314- Routine maintenance tasks keep piling up: dependency updates, stale branch cleanup, inbox triage, log rotation.15- You want a helper that runs continuously in the background and only surfaces when something needs your attention.16- The work is important but low-priority - it should happen reliably without competing for your focus.1718## Prerequisites1920- No extra runtime dependencies beyond Hermes Agent and the normal toolset for this session.2122## Procedure23241. Restate the target, the success condition, and any no-touch boundaries before taking action.252. Define the servant's mandate: which tasks, which surfaces, and what scope boundaries.263. Configure the cadence - continuous, periodic, or event-triggered.274. Let the servant operate silently, logging its actions for later review.285. Review the activity log periodically and adjust the mandate or dismiss the servant when done.296. Stop for explicit confirmation before taking a live action that changes access, triggers an alert, or touches a real system boundary.307. Package the result as the deliverables below, with confidence, assumptions, and unresolved risk called out explicitly.3132## Deliverables3334- A running background process or agent loop with a clear task mandate.35- An activity log of everything the servant touched, with timestamps.36- A dismiss or pause mechanism so the user stays in control.3738## Pitfalls / Guardrails3940- Treat the live action surface as real operational work, not decorative lore.41- The servant does not expand its own mandate - it only touches what the user pre-approved.42- All actions must be logged and reviewable. Silent operation does not mean unaccountable operation.43- Provide a clear dismiss mechanism - the user must always be able to stop the servant immediately.4445## Verification4647- Check that the result includes every deliverable promised above.48- Check that confirmed facts, assumptions, and inferences are visibly separated.49- Check that the exact live target, confirmation gate, and rollback or recovery path are explicit.5051## Example Invocation52```text53/unseen-servant set up a background agent for this recurring task, with a clear mandate, activity log, and kill switch54```