Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

neodomain-ai新域 ai

Agent Skill

neodomain-ai 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,136

周安装

339

GitHub Stars

公开资料未说明

下载量

2,712
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install neodomain-ai

简介

通过 Neodomain AI API 生成图像与视频内容。

  • 适用于创意素材生产、视觉设计辅助等场景。
  • 当用户要求创建文本转图像或体控视频时启用。
  • 安装命令:openclaw skills install neodomain-ai。
  • 依赖第三方服务配额,需注意成本控制。neodomain-ai 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
neodomain-ai
description
Generate images and videos via Neodomain AI API. Supports text-to-image, image-to-video, text-to-video, and motion control video generation. Use when user wants to create AI-generated images or videos using the Neodomain platform.
metadata

Neodomain AI Content Generator

Generate images and videos using the Neodomain AI platform API.

Setup

Set your access token as an environment variable:

export NEODOMAIN_ACCESS_TOKEN="your_access_token_here"

Or pass it directly to scripts via --token flag.

Image Generation

Get Available Models

python3 {baseDir}/scripts/image_models.py --token $NEODOMAIN_ACCESS_TOKEN

Generate Images

# Basic text-to-image
python3 {baseDir}/scripts/generate_image.py --prompt "A futuristic city at sunset" --token $NEODOMAIN_ACCESS_TOKEN

# With options
python3 {baseDir}/scripts/generate_image.py \
  --prompt "A beautiful mountain landscape" \
  --negative-prompt "blurry, low quality" \
  --model "doubao-seedream-4-0" \
  --aspect-ratio "16:9" \
  --num-images 4 \
  --size "2K" \
  --output-dir ./output/images \
  --token $NEODOMAIN_ACCESS_TOKEN

Parameters

ParameterDescriptionDefault
--promptText description for image generationRequired
--negative-promptThings to exclude from imageEmpty
--modelModel name (see models list)gemini-3.1-flash-image-preview
--aspect-ratioImage aspect ratio: 1:1, 16:9, 9:16, 4:3, 3:41:1
--num-imagesNumber of images to generate: 1 or 41
--sizeImage size: 1K, 2K, 4K2K
--guidance-scalePrompt adherence (1.0-20.0)7.5
--seedRandom seed for reproducibilityRandom
--output-formatOutput format: jpeg, png, webpjpeg
--output-dirWhere to save images./output

Image Generation with Reference Images

Use generate_image_ref.py to generate images with character reference(s). Supports up to 10 reference images per generation:

# Single reference image
python3 {baseDir}/scripts/generate_image_ref.py \
  --prompt "A woman walking in a forest" \
  --reference-image "https://example.com/character1.jpg" \
  --model "doubao-seedream-5-0-260128" \
  --aspect-ratio "16:9" \
  --token $NEODOMAIN_ACCESS_TOKEN

# Multiple reference images (up to 10)
python3 {baseDir}/scripts/generate_image_ref.py \
  --prompt "A conversation between two people" \
  --reference-image "https://example.com/character1.jpg" \
  --reference-image "https://example.com/character2.jpg" \
  --reference-image "https://example.com/character3.jpg" \
  --model "doubao-seedream-5-0-260128" \
  --aspect-ratio "16:9" \
  --token $NEODOMAIN_ACCESS_TOKEN
ParameterDescriptionDefault
--reference-imageReference image URL(s) - can specify multiple (up to 10)-

Video Generation

Get Available Models

python3 {baseDir}/scripts/video_models.py --token $NEODOMAIN_ACCESS_TOKEN

Generate Videos

Text-to-Video

python3 {baseDir}/scripts/generate_video.py \
  --prompt "A serene lake at dawn with mist rising from the water" \
  --model "veo3" \
  --generation-type "TEXT_TO_VIDEO" \
  --aspect-ratio "16:9" \
  --resolution "720p" \
  --duration "8s" \
  --token $NEODOMAIN_ACCESS_TOKEN

Image-to-Video

python3 {baseDir}/scripts/generate_video.py \
  --prompt "The camera slowly pans across the landscape" \
  --model "veo3" \
  --generation-type "IMAGE_TO_VIDEO" \
  --first-frame "https://example.com/image.jpg" \
  --aspect-ratio "16:9" \
  --resolution "720p" \
  --duration "8s" \
  --token $NEODOMAIN_ACCESS_TOKEN

Motion Control (Image + Video Reference)

python3 {baseDir}/scripts/motion_control.py \
  --image "https://example.com/ref_image.jpg" \
  --video "https://example.com/ref_video.mp4" \
  --prompt "Make the character dance" \
  --mode "pro" \
  --duration 5000 \
  --token $NEODOMAIN_ACCESS_TOKEN

Parameters

ParameterDescriptionDefault
--promptText description for videoRequired
--modelModel name: veo3, hailuo02, doubaoveo3
--generation-typeType: TEXT_TO_VIDEO, IMAGE_TO_VIDEO, REFERENCE_TO_VIDEOTEXT_TO_VIDEO
--first-frameFirst frame image URL (for IMAGE_TO_VIDEO)-
--last-frameLast frame image URL (optional)-
--image-urlsReference images (comma-separated, for REFERENCE_TO_VIDEO)-
--aspect-ratioVideo aspect: 16:9, 9:16, 1:116:9
--resolutionResolution: 720p, 768p, 1080p720p
--durationDuration: 4s, 5s, 6s, 8s, 10s, 16s8s
--fpsFrame rate24
--seedRandom seedRandom
--generate-audioGenerate audio (true/false)false
--enhance-promptEnhance prompt (true/false)false
--output-dirWhere to save output./output

Authentication

重要: 每次 token 过期或首次使用时,动态询问用户登录账号(手机号/邮箱),不要硬编码保存。

If you need to obtain an access token:

# 1. 发送验证码 (询问用户手机号或邮箱)
python3 {baseDir}/scripts/login.py --send-code --contact "用户手机号或邮箱"

# 2. 用户提供验证码后,登录获取 token
python3 {baseDir}/scripts/login.py --login --contact "用户手机号或邮箱" --code "验证码"

The login script will output an access token that you can store in NEODOMAIN_ACCESS_TOKEN.

Workflow

  1. Authenticate (first time only): Get your access token
  2. Get models: Check available models for your needs
  3. Generate: Create content with appropriate parameters
  4. Wait: Scripts automatically poll for results
  5. Download: Images/videos saved to output directory

Output

  • Images: *.jpg, *.png, or *.webp files
  • Videos: *.mp4 files with thumbnail
  • metadata.json with generation details

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

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

平台分布

OpenClaw

80.78%
按下载量换算2,191

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills