Audio2Text

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears purpose-aligned for cloud audio transcription, but it sends local recordings to Tinrec and uses/stores a Tinrec API key.

Install only if you are comfortable uploading selected audio files to Tinrec for transcription. Use a dedicated or rotatable Tinrec API key, protect or delete the api-keys file after use, and avoid sending highly confidential recordings unless the provider's privacy practices meet your needs.

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.

What this means

The API key may allow use of the user's Tinrec account quota or paid plan if it is left on disk or reused.

Why it was flagged

The skill requires a user-provided Tinrec API key and instructs the agent to save it to a local file for later CLI use. This is purpose-aligned, but it is still credential handling and persistence.

Skill content
claw需要将用户发送的key保存至api-keys文件后使用cli模式进行调用,调用时通过 `--api-keys-file` 指定该文件
Recommendation

Use a dedicated Tinrec key if possible, avoid sharing broader account credentials, and delete or rotate the api-keys file/key when no longer needed.

What this means

Private meetings, interviews, or recordings provided to the skill will be sent to Tinrec/cloud infrastructure for processing.

Why it was flagged

The CLI reads the local audio file and uploads its full contents to a signed cloud upload URL before requesting transcription.

Skill content
with open(path, "rb") as f: body_bytes = f.read(); put_status = _http_put(signed_url, body_bytes, timeout=120)
Recommendation

Only use this with recordings you are comfortable uploading to Tinrec, review the provider's privacy terms for sensitive audio, and keep the default service URL unless you intentionally trust another endpoint.

What this means

Users have less external information for verifying who maintains the skill or where its code comes from.

Why it was flagged

The registry metadata does not provide an upstream source or homepage, which limits provenance review even though no suspicious install behavior is shown.

Skill content
Source: unknown; Homepage: none
Recommendation

Prefer skills with clear provenance when handling sensitive recordings; if installing this one, review the included script and provider identity before use.