Byted Las Vlm Video
Analysis
The skill matches its video-analysis purpose, but it asks for cloud credentials and automatically installs an external SDK package during setup, so it should be reviewed before use.
Findings (4)
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.
manifest=$(curl -sf "$manifest_url" || echo '{}') ... pip install --quiet --upgrade https://las-ai-cn-beijing-online.tos-cn-beijing.volces.com/operator_cards_serving/public/skills/sdk/las_sdk-0.2.0-py3-none-any.whlThe environment initializer fetches a remote manifest and conditionally installs a remote wheel with pip, but the package contents, hash, and install spec are not provided in the artifacts.
# Poll until terminal state while true; do ... sleep "$SLEEP" done
The included polling helper can continue running until the remote task reaches a terminal state, with no explicit maximum runtime.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
- **环境变量**: `LAS_API_KEY` (必填) ... 需要 `VOLCENGINE_ACCESS_KEY` 和 `VOLCENGINE_SECRET_KEY`
The skill requires a LAS API key and may request Volcengine storage credentials for output downloads, although the registry metadata lists no required environment variables.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
如果用户要求处理的是**本地文件**,则需要先通过 File API 上传至 TOS ... lasutil file-upload <local_path>
Local video files are uploaded to Volcengine/TOS and then analyzed through the LAS VLM provider flow, which is expected for this skill but moves user content outside the local environment.
