Operator Communication
Use this skill when jarvOS needs to explain an operational condition to the
operator. It controls message semantics, not delivery: the owning runtime may
present an approved message through its configured local surface, but this
public skill neither selects nor configures that surface.
Contract
The workflow is complete only when the operator can tell:
- what happened
- what jarvOS did to preserve safety
- whether an action is required and, if so, the reviewed choice
- what jarvOS will do next
Use the versioned jarvos-operator-notification/v1 event contract and its
deterministic renderer. For routine safe repairs or resolutions, return
NO_REPLY. For safety holds and stale observations, preserve a durable status
without escalating a routine event into an interruption. For an action-required
event, include only its opaque reference for follow-up.
Boundaries
- Do not render source paths, command output, stack traces, commit IDs,
credentials, private receipt content, raw diagnostic codes, or caller-supplied
prose.
- Do not claim that a release is current, approval-ready, or publishable from
stale or unknown evidence.
- Do not send Telegram, email, calendar, chat, push, or any other external
notification from this skill. Delivery belongs to an explicitly configured,
owner-authorized runtime adapter.
- Do not turn a safe hold, repair, or resolution into a request for operator
action unless the semantic event explicitly requires a reviewed action.
Decision guide
- Validate a typed semantic event before rendering.
- For
direct-notification, present the rendered plain-English output once,
using local deduplication keyed by the contract's dedupe identity.
- For
durable-status, record the renderer's status text in the owner-owned
status surface and return NO_REPLY to the immediate channel.
- For
quiet, return NO_REPLY and retain any detailed evidence only in its
owner-authorized private system.
Completion evidence
- the event validates against
jarvos-operator-notification/v1
- the output is deterministic and contains no unreviewed diagnostic detail
- any delivery claim is supported by the selected runtime's local configuration
- the adapter still declares delivery as unconfigured when no such proof exists
1---2name: operator-communication3description: Communicate jarvOS operational conditions in plain language without exposing diagnostics or inventing a delivery channel.4---56# Operator Communication78Use this skill when jarvOS needs to explain an operational condition to the9operator. It controls message semantics, not delivery: the owning runtime may10present an approved message through its configured local surface, but this11public skill neither selects nor configures that surface.1213## Contract1415The workflow is complete only when the operator can tell:1617- what happened18- what jarvOS did to preserve safety19- whether an action is required and, if so, the reviewed choice20- what jarvOS will do next2122Use the versioned `jarvos-operator-notification/v1` event contract and its23deterministic renderer. For routine safe repairs or resolutions, return24`NO_REPLY`. For safety holds and stale observations, preserve a durable status25without escalating a routine event into an interruption. For an action-required26event, include only its opaque reference for follow-up.2728## Boundaries2930- Do not render source paths, command output, stack traces, commit IDs,31 credentials, private receipt content, raw diagnostic codes, or caller-supplied32 prose.33- Do not claim that a release is current, approval-ready, or publishable from34 stale or unknown evidence.35- Do not send Telegram, email, calendar, chat, push, or any other external36 notification from this skill. Delivery belongs to an explicitly configured,37 owner-authorized runtime adapter.38- Do not turn a safe hold, repair, or resolution into a request for operator39 action unless the semantic event explicitly requires a reviewed action.4041## Decision guide42431. Validate a typed semantic event before rendering.442. For `direct-notification`, present the rendered plain-English output once,45 using local deduplication keyed by the contract's dedupe identity.463. For `durable-status`, record the renderer's status text in the owner-owned47 status surface and return `NO_REPLY` to the immediate channel.484. For `quiet`, return `NO_REPLY` and retain any detailed evidence only in its49 owner-authorized private system.5051## Completion evidence5253- the event validates against `jarvos-operator-notification/v1`54- the output is deterministic and contains no unreviewed diagnostic detail55- any delivery claim is supported by the selected runtime's local configuration56- the adapter still declares delivery as unconfigured when no such proof exists