Voice Memos
ReviewAudited by ClawScan on May 1, 2026.
Overview
This skill is coherent for transcribing voice memos, but users should understand that audio is uploaded to SenseAudio and an API key is required.
This skill appears purpose-aligned and not suspicious. Before installing or using it, make sure you are comfortable sending selected voice recordings to SenseAudio, use a revocable API key, and consider installing Python dependencies in an isolated environment.
Findings (3)
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.
The skill can make API calls using the user's SenseAudio account, which may affect account usage, quotas, or billing depending on the provider.
The skill requires a SenseAudio API key and uses it as a bearer token for the transcription API, which is expected for this service integration.
required_credentials:\n - name: SENSEAUDIO_API_KEY ... env_var: SENSEAUDIO_API_KEY
Use a dedicated, revocable API key if possible, and confirm the key's permissions and billing implications before using the skill.
Private speech, names, tasks, dates, or other sensitive information in recordings may be sent to the external transcription provider.
The transcription flow uploads the selected audio file to an external SenseAudio API endpoint; this is central to the skill but means voice memo contents leave the local environment.
url = "https://api.senseaudio.cn/v1/audio/transcriptions" ... files = {"file": open(audio_file, "rb")} ... requests.post(url, headers=headers, files=files, data=data)Only process recordings you intend to share with SenseAudio, and review the provider's privacy, retention, and data-use policies for sensitive memos.
Installing an unpinned package can pull the latest package version from the package index, which may vary over time.
The skill instructs installing the external Python package requests without a pinned version. This is common and purpose-aligned for API calls, but still affects the local Python environment.
Install required Python packages:\n\n```bash\npip install requests\n```
Install in a virtual environment and pin or verify dependency versions if using this workflow in a sensitive environment.
