TL;DX
Analysis
TL;DX has a clear transcription and summarization purpose, but its helper scripts can install system packages with sudo and fetch/build unpinned external components, so users should review it before installing.
Findings (5)
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.
git clone --depth=1 https://github.com/ggml-org/whisper.cpp.git "${REPO_DIR}" ... cmake --build "${REPO_DIR}/build" --config Release --target whisper-cliThe script clones and builds the current upstream whisper.cpp source without a pinned commit, release, or checksum before using the resulting executable.
curl -L --fail --continue-at - "${url}" -o "${partial}" ... if [[ "${size_bytes}" -gt 100000000 ]]; then
mv "${partial}" "${output}"The Whisper model download is purpose-aligned, but integrity validation appears limited to a size threshold rather than a pinned hash or signature.
WHISPER_BIN="$("${SCRIPT_DIR}/ensure_whisper_cpp.sh")" ... "${WHISPER_BIN}" \
-m "${MODEL_PATH}" \
-f "${AUDIO_INPUT}"The skill executes local transcription binaries as part of its core media workflow; this is expected for the stated purpose but should be visible to users.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
if command -v sudo >/dev/null 2>&1; then
sudo "$@"
...
retry_command 3 run_with_optional_sudo apt-get install -y ffmpeg || trueThe helper can invoke system package managers through sudo to install ffmpeg during runtime provisioning, granting OS-level installation authority that is not declared in the requirements.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
If the environment provides a stable memory file and the workflow permits reading it, use it carefully.
The skill may use persistent memory for personalization, which is purpose-aligned but can influence outputs based on prior stored context.
