Parakeet Stt

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

Installing the skill’s backend may run code and dependencies that were not part of this review.

Why it was flagged

The skill relies on code and dependencies from an external repository that are not included in the reviewed artifact. This is purpose-aligned for running the STT service, but users must trust that upstream project.

Skill content
git clone https://github.com/groxaxo/parakeet-tdt-0.6b-v3-fastapi-openai.git ... docker compose up -d parakeet-cpu ... pip install -r requirements.txt
Recommendation

Review the upstream repository, Docker Compose file, and requirements before running them; pin to a trusted commit if possible.

What this means

If your firewall or network allows it, other machines may be able to reach the transcription service.

Why it was flagged

The direct Python example can expose the transcription API on all network interfaces and shows no API authentication. This is disclosed and related to serving the local API, but it is broader than binding only to localhost.

Skill content
uvicorn app.main:app --host 0.0.0.0 --port 5000 ... api_key="not-needed"
Recommendation

Prefer binding to 127.0.0.1/localhost, keep the port firewalled, and do not expose the service publicly unless you add access controls.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

The service may continue using CPU, memory, storage, and port 5000 until you stop it.

Why it was flagged

The recommended Docker mode starts a detached background service, but the documentation also gives explicit stop and management commands.

Skill content
docker compose up -d parakeet-cpu ... docker compose down
Recommendation

Use the documented Docker management commands, and stop the container with docker compose down when you no longer need transcription.