Sapi Tts
Analysis
The artifacts show a coherent Windows text-to-speech helper, with the main user-visible risks being manual PowerShell setup and local audio file creation/playback.
Findings (2)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Save the script below as `tts.ps1` in your skills folder:
The runnable helper is delivered as Markdown instructions rather than a packaged code file or install spec, so the user should review the copied script before installing it.
Add-Type -AssemblyName System.Speech ... $synth.SetOutputToWaveFile($Output) ... if ($Play) { Add-Type -AssemblyName PresentationCore ... $player.Play() }The skill uses a local PowerShell/.NET script to synthesize speech, write a WAV file, and optionally play it. This is expected for the stated TTS purpose, but it is still local code execution.
