Aoment Image Video

PassAudited by VirusTotal on May 13, 2026.

Overview

Type: OpenClaw Skill Name: aoment-image-video Version: 1.3.0 The skill bundle provides a legitimate interface for Aoment AI's image and video generation services. The Python scripts (aoment_image_video.py, aoment_hd_repair.py, etc.) are well-structured wrappers for the service's API, handling tasks like registration, quota management, and media processing. All network communication is directed to the official domain (www.aoment.com), and the code lacks any indicators of data exfiltration, unauthorized execution, or malicious prompt injection.

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

If invoked unintentionally, the skill could use the Aoment account's free or paid quota and send prompts to the provider.

Why it was flagged

The skill exposes active provider operations that can generate media and use account quota. This is aligned with the stated purpose, but users should understand these are not purely local/read-only actions.

Skill content
Supports text-to-image, image-to-image, image recognition, video generation, and image HD repair service ... # 5. Check remaining quota uv run {baseDir}/scripts/aoment_quota.py -k <your-api-key>
Recommendation

Ask the agent to confirm before quota-consuming generation or repair tasks, especially for large video or HD repair requests.

What this means

Anyone who obtains the API key may be able to use the associated Aoment quota or account access.

Why it was flagged

A provider API key is required and is sent as a bearer token to Aoment endpoints. This is expected for the service and no unrelated credential access or hardcoded secret is shown.

Skill content
This skill requires an Agent API Key via: Authorization: Bearer <api_key> ... Save the returned `api_key`; it is used for all subsequent skill calls.
Recommendation

Store the API key securely, avoid exposing it in shared chats or logs, and rotate it if it is accidentally disclosed.

What this means

Selected local images, image URLs, base64 image data, and prompts may leave the local environment and be processed by Aoment.

Why it was flagged

For HD repair, a user-specified image is read and uploaded to the Aoment API with the API key. Similar provider uploads are used for image recognition and media generation.

Skill content
filename, image_bytes, content_type = _read_image_source(args.image) ... requests.post(url, data=data, files=files, headers=_auth_headers(args.api_key), timeout=REQUEST_TIMEOUT)
Recommendation

Only use the skill with media and prompts you are comfortable sending to Aoment, and avoid private or regulated images unless Aoment's data handling terms are acceptable.

What this means

A future update package could change behavior, and the provider can observe version-check traffic during use.

Why it was flagged

The skill checks a remote version endpoint and directs users to a provider-hosted zip for updates. This is disclosed and manual rather than automatic code replacement, but users must trust the update source.

Skill content
Download the latest package: https://www.aoment.com/downloads/aoment-image-video-skill.zip ... Before each invocation, the Python scripts read the `version` field above and query: GET https://www.aoment.com/api/skills/aoment-image-video/version
Recommendation

Install updates only from the expected Aoment source or registry entry, and review update contents before replacing the skill.