迷你厨房烹饪视频
Analysis
The skill matches its stated video-generation purpose, but users should notice that it uses a WeryAI API key and sends prompts or public image URLs to external services.
Findings (3)
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.
确认后执行 `node {baseDir}/scripts/video_gen.js wait --json '…'`The skill instructs the agent to run a local Node.js script after user confirmation; this is purpose-aligned for submitting a video-generation job but still means local code will execute.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const BASE_URL = (process.env.WERYAI_BASE_URL || 'https://api.weryai.com').replace(/\/$/, ''); ... Authorization: `Bearer ${apiKey}`The script sends a bearer API key to the configured WeryAI base URL. This is expected for authenticated API use, but the credential can grant account access or consume credits.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
图片 URL 必须是 HTTPS 公网可访问地址,本地路径无效,建议先上传到图床(如 imgbb、cloudinary)
Image-to-video mode requires an externally accessible image URL, meaning image content or links may be exposed to a hosting provider and then sent to WeryAI.
