Doubao Image Video Skill V2
Analysis
The skill mostly matches its Doubao image/video generation purpose, but its troubleshooting guidance could cause users to reveal their ARK API key.
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.
sudo apt-get install curl jq ... chmod +x doubao.sh doubao_skill.sh examples.sh
The documented setup asks the user to install local dependencies and make scripts executable; this is normal for a Bash skill, but users should recognize it as manual local setup.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
如遇到问题,请提供以下信息: ... 4. 环境变量:`env | grep ARK_API_KEY`
This support/debugging instruction can print and disclose the user's real ARK API key in an issue report or support message.
-H "Authorization: Bearer ${ARK_API_KEY}"The script uses the ARK_API_KEY as a bearer credential for Volcengine API calls, which is expected for this service integration but gives the skill delegated account authority.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
BASE_URL="https://ark.cn-beijing.volces.com/api/v3" ... curl ... -d "$payload"
Prompts, image URLs, and generation requests are sent to the Volcengine ARK API endpoint; this is disclosed and necessary for the skill's stated purpose.
