用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Demerzels-lab/elsamultiskillagent --skill seisoai命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
The philosophical layer for AI agents.
Agents can sign plugins, rotate credentials without losing identity, and publicly attest to behavior.
A relaxing resource-gathering RPG where AI agents collect resources, trade with NPCs, and manage and build their world at their own pace.
基于 SOC 职业分类
| name | seisoai |
| description | AI image, music, video, and sound effects generation with x402 pay-per-request. |
| metadata | {"openclaw":{"homepage":"https://seisoai.com","emoji":"🎨"}} |
Generate AI images, music, videos, and sound effects. Pay per request with USDC on Base — no account needed.
Default: https://seisoai.com
Override via config: SEISOAI_API_URL or skills.entries.seisoai.config.apiUrl
All endpoints require x402 payment. No account or API key needed.
HTTP 402 with PAYMENT-REQUIRED headerPAYMENT-SIGNATURE headerx402.transactionHash as proof{
"x402Version": 2,
"resource": {
"url": "https://seisoai.com/api/generate/image",
"description": "Generate an AI image"
},
"accepts": [{
"scheme": "exact",
"network": "eip155:8453",
"maxAmountRequired": "65000",
"asset": "USDC",
"payTo": "0x..."
}]
}
Note: maxAmountRequired is in USDC smallest units (6 decimals). 65000 = $0.065
| Endpoint | Description | USDC Units | USD |
|---|---|---|---|
POST /api/generate/image | Generate image | 32500-325000 | $0.03-$0.33 |
POST /api/generate/video | Generate video | ~650000 | ~$0.65 |
POST /api/generate/music | Generate music | ~26000 | ~$0.026 |
POST /api/generate/upscale | Upscale image | 39000 | $0.039 |
POST /api/audio/sfx | Sound effects | 39000 | $0.039 |
POST /api/prompt-lab/chat | Prompt help | 1300 | $0.0013 |
Endpoint: POST /api/generate/image
{
"prompt": "a sunset over mountains, oil painting style",
"model": "flux-pro",
"aspect_ratio": "16:9",
"num_images": 1
}
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt | string | Yes | Text description of the image |
model | string | No | See model table below |
aspect_ratio | string | No | 1:1, 16:9, 9:16, 4:3, 3:4 |
num_images | number | No | Number of images (1-4, default 1) |
image_url | string | No | Reference image URL for img2img editing |
image_urls | array | No | Multiple reference images (for multi-image editing) |
seed | number | No | Seed for reproducibility |
is_360 | boolean | No | Generate 360° panorama (uses nano-banana-pro) |
| Model | USDC Units | USD | Best for |
|---|---|---|---|
flux-pro | 65000 | $0.065 | General purpose, fast, default |
flux-2 | 32500 | $0.0325 | Photorealism, text/logos in images |
nano-banana-pro | 325000 | $0.325 | Premium quality, 360° panoramas |
flux-pro (default): Fast, general-purpose. Good for portraits, landscapes, concepts.flux-2: Best for photorealistic images and when you need text rendered in the image.nano-banana-pro: Highest quality. Use for final production images or 360° panoramas.{
"success": true,
"images": ["https://fal.media/files/..."],
"remainingCredits": 0,
"creditsDeducted": 0,
"freeAccess": true,
"x402": {
"settled": true,
"transactionHash": "0x..."
}
}
Endpoint: POST /api/generate/video
{
"prompt": "a cat walking through a garden",
"duration": 5
}
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt | string | Yes | Text description of the video |
duration | string | No | 4s, 6s, or 8s (default 5s) |
image_url | string | No | Starting frame image URL |
generate_audio | boolean | No | Generate synchronized audio |
{
"success": true,
"video": {
"url": "https://fal.media/files/...",
"content_type": "video/mp4"
},
"x402": {
"settled": true,
"transactionHash": "0x..."
}
}
Endpoint: POST /api/generate/music
{
"prompt": "upbeat jazz with piano and drums",
"duration": 60
}
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt | string | Yes | Description of the music |
duration | number | No | Duration in seconds (10-180, default 60) |
{
"success": true,
"audio_file": {
"url": "https://fal.media/files/...",
"content_type": "audio/wav"
},
"x402": {
"settled": true,
"transactionHash": "0x..."
}
}
Endpoint: POST /api/audio/sfx
{
"prompt": "thunder rumbling in the distance",
"duration": 5
}
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt | string | Yes | Description of sound effect |
duration | number | No | Duration in seconds (1-30, default 5) |
{
"success": true,
"audio_url": "https://fal.media/files/...",
"duration": 5,
"x402": {
"settled": true,
"transactionHash": "0x..."
}
}
Endpoint: POST /api/generate/upscale
{
"image_url": "https://example.com/image.jpg",
"scale": 2
}
| Parameter | Type | Required | Description |
|---|---|---|---|
image_url | string | Yes | URL of image to upscale |
scale | number | No | 2 (default) or 4 |
{
"success": true,
"image_url": "https://fal.media/files/...",
"scale": 2,
"x402": {
"settled": true,
"transactionHash": "0x..."
}
}
Endpoint: POST /api/prompt-lab/chat
Get AI assistance for crafting better prompts.
{
"message": "Help me create a prompt for a fantasy landscape",
"context": {
"mode": "image",
"selectedModel": "flux-pro"
}
}
| Parameter | Type | Required | Description |
|---|---|---|---|
message | string | Yes | Your question or request |
history | array | No | Previous messages for context |
context.mode | string | No | image, video, music |
context.selectedModel | string | No | Model being used |
{
"success": true,
"response": "Here's a prompt for a fantasy landscape: [PROMPT]Mystical floating islands...[/PROMPT]",
"timestamp": "2025-02-03T12:00:00.000Z",
"x402": {
"settled": true,
"transactionHash": "0x..."
}
}
Normal response when payment is needed. Decode PAYMENT-REQUIRED header and retry with payment.
{
"success": false,
"error": "prompt is required"
}
{
"success": false,
"error": "Image generation failed",
"creditsRefunded": 0
}
{
"skills": {
"entries": {
"seisoai": {
"enabled": true,
"config": {
"apiUrl": "https://seisoai.com"
}
}
}
}
}