Voice Wake Say

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

When the exact Voice Wake trigger is present, the assistant may speak its response aloud through the Mac's speakers.

Why it was flagged

The skill directs the assistant to invoke the local macOS `say` command. This is disclosed and central to the skill's purpose, but users should notice that installing it authorizes local command use for text-to-speech.

Skill content
printf '%s' "$SPOKEN_TEXT" | say
Recommendation

Use it only if you want local speech output, and avoid voice-triggered use for sensitive responses when others may overhear.

What this means

On non-macOS systems, or systems without `say`, the spoken-output feature may fail even though the registry does not pre-warn about that requirement.

Why it was flagged

The skill documentation is macOS-specific and uses `say`, but the registry metadata does not declare the OS or binary dependency. This is a compatibility/declaration gap rather than evidence of hidden behavior.

Skill content
OS restriction: none; Required binaries (all must exist): none
Recommendation

Treat this as a macOS-only skill and confirm that `say` is available if you expect audio output.