Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

aoment-visuals瞬间视觉效果

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

12,854

周安装

541

GitHub Stars

2

下载量

4,501
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aoment-visuals(瞬间视觉效果)
来源仓库:https://github.com/regalzzz/aoment-visuals
安装命令:
openclaw skills install aoment-visuals
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install aoment-visuals

简介

用于界面设计、视觉规范与交互体验优化。aoment-visuals 属于效率类 Skill,可作为该场景下的辅助能力补充。

  • 支持 UI 方案生成、配色建议与组件层级梳理。
  • 结合品牌系统与用户任务提升页面可用性。
  • 使用时不应仅堆砌装饰元素而忽略功能完整性。
  • 涉及真实页面修改时需通过浏览器预览验证响应式表现。

SKILL.md

name
aoment-visuals
description
AI image and video generation service - supports text-to-image, image-to-image, and video generation. Automatic API key registration supported for limited-time free access.
metadata
{"openclaw": {"emoji": "🎨"}}
user-invocable
true

aoment-visuals

AI image and video generation service powered by Aoment AI. Supports three capabilities: text-to-image, image-to-image, and video generation.

Download the latest aoment-visuals Skill package: https://www.aoment.com/downloads/aoment-visuals-skill.zip

Auto-Update Policy

Before each invocation of this Skill, you MUST check whether the Skill package has been updated within the last 3 days:

  • If the Skill was updated within the last 3 days → proceed with the call as normal.
  • If the Skill has NOT been updated for more than 3 days → download the latest Skill package from the link above first, then proceed with the call.

This ensures you are always running a compatible version of the Skill.

Quick Start

# 1. Register an Agent account and get your API Key
uv run {baseDir}/scripts/aoment_register.py --nickname "MyBot"

# 2. Generate an image
uv run {baseDir}/scripts/aoment_visuals.py -k <your-api-key> -t text-to-image -p "a cute cat playing in a garden"

# 3. Check remaining quota
uv run {baseDir}/scripts/aoment_quota.py -k <your-api-key>

Authentication

This skill requires an Agent API Key for authentication. All API requests must include a valid key via the Authorization: Bearer <api_key> header.

The API Key format is aoment_ followed by 32 hex characters (e.g. aoment_a3f8e1b2c4d6e8f0a1b3c5d7e9f0a1b2).

Get your API Key — Agent Registration (Recommended)

AI Agent Bots can register directly via CLI to obtain an API Key — no web login required:

uv run {baseDir}/scripts/aoment_register.py --nickname "MyBot"
Tip: When choosing a nickname, be creative! Pick something fun, unique, and recognizable — e.g. "PixelDreamer", "NeonMuse", "CosmicLens" — so your Agent stands out in the community.
ParameterTypeRequiredDescription
--nickname / -nstringyesAgent display name (max 16 characters). Make it fun and distinctive!
--api-basestringnoAPI base URL (default: https://www.aoment.com)

Or register via API directly:

curl -X POST https://www.aoment.com/api/skills/aoment-visuals/register-agent \
  -H "Content-Type: application/json" \
  -d '{"nickname": "MyBot"}'

Registration Response:

{
  "success": true,
  "data": {
    "username": "agent_a1b2c3d4e5f6...",
    "nickname": "MyBot",
    "api_key": "aoment_a3f8e1b2c4d6e8f0a1b3c5d7e9f0a1b2"
  }
}

Save the returned api_key — it is used for all subsequent skill API calls.

Tool Types

text-to-image

Generate images from text prompts using the N2 model.

uv run {baseDir}/scripts/aoment_visuals.py --api-key <your-api-key> --tool-type text-to-image --prompt "a cute cat playing in a garden" --aspect-ratio 1:1 --image-size 1K
ParameterTypeRequiredDefaultDescription
--api-key / -kstringyes-Agent API Key
--tool-type / -tstringyes-Must be text-to-image
--prompt / -pstringyes-Text prompt describing the desired image
--aspect-ratioenumnoautoAspect ratio: auto, 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 5:4, 4:5, 21:9
--image-sizeenumno1KResolution: 1K, 2K, 4K

image-to-image

Generate new images from a reference image and text prompt using the N2 model.

uv run {baseDir}/scripts/aoment_visuals.py --api-key <your-api-key> --tool-type image-to-image --prompt "change the background to a beach" --reference-image "https://example.com/photo.jpg"
ParameterTypeRequiredDefaultDescription
--api-key / -kstringyes-Agent API Key
--tool-type / -tstringyes-Must be image-to-image
--prompt / -pstringyes-Text prompt describing the desired transformation
--reference-imagestringyes-Reference image as Base64 data or URL
--aspect-ratioenumnoautoAspect ratio: auto, 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 5:4, 4:5, 21:9
--image-sizeenumno1KResolution: 1K, 2K, 4K

video-generation

Generate videos from text prompts using the V1 model.

uv run {baseDir}/scripts/aoment_visuals.py --api-key <your-api-key> --tool-type video-generation --prompt "sunset beach timelapse" --orientation landscape
ParameterTypeRequiredDefaultDescription
--api-key / -kstringyes-Agent API Key
--tool-type / -tstringyes-Must be video-generation
--prompt / -pstringyes-Text prompt describing the desired video
--orientationenumnoportraitVideo orientation: portrait (vertical), landscape (horizontal)
--resolutionenumnostandardResolution: standard, hd, 4k
--modeenumnostandardGeneration mode: standard, relaxed
--reference-imagestringno-Reference image as Base64 data or URL (can be specified up to 2 times for first/last frame)

Video Parameter Constraints

  • Up to 2 reference images: the 1st image is the first frame, the 2nd image is the last frame
  • HD resolution only supports landscape orientation
  • Standard resolution does not support relaxed mode

quota

Query the remaining available generation count and daily quota for your API Key.

uv run {baseDir}/scripts/aoment_quota.py --api-key <your-api-key>
ParameterTypeRequiredDescription
--api-key / -kstringyesAgent API Key
Quota insufficient? If your API Key's daily quota has been used up and you need more, join our community to request a quota increase: - Discord: https://discord.gg/3BMzRd7bJx - QQ Group: 474397920 (Join via link)

Response Format

Results are printed as JSON to stdout.

Success Response (text-to-image / image-to-image)

{
    "success": true,
    "tool_type": "text-to-image",
    "data": {
        "image_url": "https://cos.ap-xxx.myqcloud.com/..."
    }
}

Success Response (video-generation)

{
    "success": true,
    "tool_type": "video-generation",
    "data": {
        "video_url": "https://cos.ap-xxx.myqcloud.com/..."
    }
}

Success Response (quota)

{
    "success": true,
    "data": {
        "remaining": 12,
        "quota": 15,
        "used": 3
    }
}

Error Response

{
    "success": false,
    "error": "error description"
}

Authentication Errors

HTTP StatusCause
401Missing or invalid API Key (key format wrong, key not found, or key revoked)
403Associated user account is disabled

Downloading Results

IMPORTANT: About returned URLs The image_url / video_url returned by this service are pre-signed COS URLs. They do NOT end with a simple .jpeg or .mp4 extension — instead, they contain query-string signature parameters (e.g. q-sign-algorithm, q-ak, q-signature, etc.). You MUST use the complete signed URL as-is for downloading or referencing. Do NOT truncate or strip the URL to only keep the path that looks like it ends with .jpeg / .mp4 — doing so will result in a 403 Forbidden error because the signature is missing. Example of a complete signed URL (use the full URL including all query parameters): `` https://xxxxx-1302252611.cos.ap-xxxxx.myqcloud.com/aura-space/xxxxx-generations/1773219641183_qa879k.jpeg?q-sign-algorithm=sha1&q-ak=AKIDYDgDfuz64sTddS5YptkNuENI0UlodFeS&q-sign-time=1773219640;1780995640&q-key-time=1773219640;1780995640&q-header-list=host&q-url-param-list=&q-signature=2a2f1af3ec32f55839242ce1ed679db297c63355 ``

On success, extract the URL from the JSON output and download with curl:

# Download image
curl -L -o output.jpg "$(uv run {baseDir}/scripts/aoment_visuals.py -k <your-api-key> -t text-to-image -p 'prompt' | python3 -c "import sys,json; print(json.load(sys.stdin)['data']['image_url'])")"

# Or in two steps:
# 1. Generate
uv run {baseDir}/scripts/aoment_visuals.py -k <your-api-key> -t text-to-image -p "prompt" > result.json
# 2. Download (image)
curl -L -o output.jpg "$(python3 -c "import sys,json; print(json.load(open('result.json'))['data']['image_url'])")"
# 2. Download (video)
curl -L -o output.mp4 "$(python3 -c "import sys,json; print(json.load(open('result.json'))['data']['video_url'])")"

Troubleshooting

If you encounter errors when calling the API:

  1. Content compliance issue — The error may be caused by prompts or reference images that do not pass the content compliance review of the image generation model. You can retry directly, or slightly adjust the prompt and try again.
  2. Skill package outdated — The error may be caused by a backend update that makes the current version of the Skill incompatible. Download the latest Skill package and try again: https://www.aoment.com/downloads/aoment-visuals-skill.zip
  3. Generated successfully but cannot view the media file — If the API returns a success response and the file has been downloaded/saved, but you still cannot see or open the image or video, this is likely because the media file management permissions of your current OpenClaw chat application have not been fully configured. Please check and complete the relevant permission settings in your OpenClaw application, then try again.
  4. Still not working? — If the problem persists, join our community for help:

- Discord: https://discord.gg/3BMzRd7bJx - QQ Group: 474397920 (Join via link)

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.35%
按下载量换算3,752

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills