Weryai Video Generator
Analysis
The skill’s stated video-generation purpose is coherent, but its runnable scripts delegate the real API, upload, and credential-handling logic to core files that are not included in the provided artifacts.
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.
export * from '../../../../../core/weryai-core/client.js';
The client implementation that would handle WeryAI API communication is imported from a core path outside the supplied skill files; similar wrappers are used for wait, submit, models, validators, and other behavior.
For generation tasks, use `node {baseDir}/scripts/wait-video.js` by default so polling continues until videos are ready or timeout is reached.The agent is instructed to submit and poll generation jobs by default for generation requests. This is aligned with the skill purpose and bounded, but it can initiate paid API work.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Add it to the required environment variable `WERYAI_API_KEY`.
The skill requires a WeryAI API key, which is expected for this service integration and is also disclosed in the metadata.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Reference media (`image`, `images`, `videos`, `audios`) can be `http/https` URLs or local/file sources. Local/non-http(s) sources are uploaded first via `/v1/generation/upload-file`.
The skill discloses that local media references may be uploaded to the WeryAI service. This is purpose-aligned for video generation, but it crosses a local-to-provider data boundary.
