openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > OpenVid

通过基本网络上的OpenVid提供品牌信息和URL的提示,生成品牌15-180秒的高清动态图形解释器视频。

媒体与内容

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.7

统计:⭐ 2 · 624 · 0当前安装量· 0历史安装量

2

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aklo360/openvid

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

仅供说明使用的技能,用于记录付费的外部视频生成API ;其请求、范围和要求与所述目的一致。

目的

名称和描述声称是品牌运动图形视频生成服务, SKILL.md仅记录对gateway.openvid.app的HTTP API调用和链上支付流程。该技能不需要环境变量,没有二进制文件,也没有安装步骤--所有这些都与纯指令API包装器成比例。

说明范围

运行时指令仅限于:发布到/v1/video/generate、处理402个付款回复、链上支付、使用X-Payment重新发送以及轮询作业状态。该文档明确指出,服务会获取任何提供的公共URL以提取品牌资产,并警告不要发送内部/私有URL。没有读取本地文件、访问不相关的env变量或将数据发送到gateway.openvid.app和gateway.openvid.app之外的意外端点的指令…

安装机制

无安装规范和代码文件—该技能仅供说明使用。这最大限度地降低了磁盘/写入风险,并与声明的设计(外部API的文档)相匹配。

证书

技能声明不需要环境变量或凭据。它引用代理的钱包来签名链上付款,但不会请求私钥或其他秘密。这是相称的:按次付费API需要付款签名,并且技能正确地将签名委托给代理/钱包基础设施。

持久

该技能并非始终启用,并使用正常的自主调用默认值。它不会请求持续的系统更改或修改其他技能的配置。

综合结论

此技能仅记录付费外部API ,并在内部保持一致,但在安装或使用之前采取以下预防措施: -确认端点( gateway.openvid.app )和网站( openvid.app )是合法的,并且与您预期的供应商相匹配。-切勿发送私人/内部网址或专有内容;服务会获取您提供的任何网址,并会看到其内容。-付款流程需要您的代理/钱包在线签名……

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「OpenVid」。简介:通过基本网络上的OpenVid提供品牌信息和URL的提示,生成品牌15-180秒的高清动态图形解释器视频。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aklo360/openvid/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

# Skill: openvid

## Description
AI motion graphics video generation service. Send a prompt + URL, receive a branded explainer video.

**Pricing:** $5–$20 with volume discounts (15s, 30s, 60s, 90s)

**This is a SERVICE skill** — it calls an external API. No code execution, no local files modified.

---

## Privacy & Data

- **What you send:** Prompt text and (optionally) a public URL for brand extraction
- **What happens:** The service fetches the URL, extracts brand colors/fonts/logo, generates video
- **Data retention:** Videos stored on Cloudflare R2 for 7 days, then deleted
- **Recommendation:** Only send **public URLs**. Do not send internal/private URLs or sensitive text.

---

## x402 Payment Flow

This skill uses the **x402 HTTP payment protocol** — a standard for pay-per-call APIs.

### How It Works

1. **Request** → You POST to the API
2. **402 Response** → API returns payment requirements (amount, wallet address, chain)
3. **Pay** → Your agent/wallet sends payment on-chain (USDC on Base or SOL on Solana)
4. **Retry with proof** → Re-send request with `X-Payment` header containing the signed transaction
5. **Job created** → API returns `jobId`, you poll until complete

### Who Signs Payments?

**Your agent's wallet signs payments, not this skill.** 

The skill only documents the API. Payment signing is handled by:
- Your agent's wallet infrastructure (e.g., OpenClaw's built-in wallet)
- x402-compatible libraries (`@x402/fetch`, `@x402/client`)
- Manual wallet signing if calling directly

**No private keys are needed or requested by this skill.**

---

## API Reference

**Gateway:** `https://gateway.openvid.app`

### Create Video

```http
POST /v1/video/generate
Content-Type: application/json

{
  "prompt": "Make a video about Stripe https://stripe.com",
  "duration": 30
}
```

**First response (402 Payment Required):**
```json
{
  "error": "Payment Required",
  "price": "$10",
  "duration": 30,
  "options": {
    "baseUsdc": {
      "network": "eip155:8453",
      "asset": "USDC",
      "amount": "10000000",
      "payTo": "0xc0A11946195525c5b6632e562d3958A2eA4328EE"
    },
    "solanaSol": {
      "network": "solana:mainnet",
      "asset": "SOL",
      "amount": "116000000",
      "payTo": "DzQB5aqnq8myCGm166v6AfWkJ4fsEq9HdWqhFLX6LQfi"
    }
  }
}
```

**After payment, retry with X-Payment header:**
```http
POST /v1/video/generate
Content-Type: application/json
X-Payment: <base64-encoded-payment-proof>

{
  "prompt": "Make a video about Stripe https://stripe.com",
  "duration": 30
}
```

**Success response:**
```json
{
  "jobId": "abc-123",
  "status": "processing",
  "pollUrl": "https://gateway.openvid.app/v1/jobs/abc-123"
}
```

### Poll Job Status

```http
GET /v1/jobs/{jobId}
```

**Response (completed):**
```json
{
  "jobId": "abc-123",
  "status": "completed",
  "videoUrl": "https://api.openvid.app/api/renders/...",
  "productName": "Stripe",
  "duration": 30
}
```

---

## Pricing

| Duration | Price |
|----------|-------|
| 15s | $5 |
| 30s | $10 |
| 60s | $15 |
| 90s | $20 |

---

## ACP (Virtuals Protocol)

For agent-to-agent commerce via Virtuals Protocol:
- **Agent ID:** `1869`
- **Wallet:** `0xc0A11946195525c5b6632e562d3958A2eA4328EE`

---

## Best Practices

- **Include a public URL** for accurate brand extraction
- **Be specific** about what the video should communicate
- **Shorter is better** — 15-30s videos have highest quality
- **Never send private/internal URLs** — all URLs are fetched by the service