Tomoviee Image to Video

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

Someone who sees the printed token may be able to authenticate to the provider as the user's Tomoviee/Wondershare app.

Why it was flagged

The helper displays a Basic-auth token derived from app_key/app_secret. This is expected for setup, but the printed token is credential-equivalent and should not be exposed in shared logs or transcripts.

Skill content
token = generate_access_token(app_key, app_secret)
    print(f"Access Token: {token}")
Recommendation

Use service-specific, rotatable credentials; avoid pasting token output into shared places; rotate the app secret if the token is exposed.

What this means

Installing dependencies can modify the local Python environment, though the declared dependency is common and purpose-aligned.

Why it was flagged

The skill depends on an external Python package. This is normal and proportionate for an HTTP API client, but users should install it from a trusted package index and preferably inside a virtual environment.

Skill content
requests>=2.31.0,<3.0.0
Recommendation

Install in a virtual environment, use a trusted package index, and consider locking dependencies for repeatable deployments.

What this means

If a callback is set to an untrusted endpoint or params contain secrets, task metadata or user-provided data could be exposed outside the provider workflow.

Why it was flagged

The API supports sending a callback URL and opaque callback parameter to the provider. This is optional and purpose-aligned, but it expands where task-related data may flow if enabled.

Skill content
- `callback` (optional): callback URL.
- `params` (optional): transparent callback parameter.
Recommendation

Use callbacks only with trusted endpoints and do not place secrets or private data in the params field.