Openclaw Feishu Optimizer

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

Private or sensitive voice messages may be transmitted to Google for transcription when this feature is used.

Why it was flagged

The speech-recognition code sends recorded audio data to Google Speech Recognition. This is expected for the advertised transcription feature, but it means voice-message contents may be processed by an external provider.

Skill content
text = r.recognize_google(audio, language=language)
Recommendation

Avoid using the transcription command on highly sensitive audio unless you are comfortable with the external speech-recognition provider.

What this means

Installing dependencies may fetch whatever current package versions are available from the package index or mirror.

Why it was flagged

The skill asks the user to install unpinned Python packages. These dependencies are directly related to audio transcription, but unpinned package installation carries normal supply-chain and reproducibility risk.

Skill content
pip3 install SpeechRecognition pydub
Recommendation

Install dependencies from a trusted package source and consider pinning versions if you need reproducible or controlled deployments.