# Send QuiverAI Quickstart to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "quiverai-quickstart",
    "name": "QuiverAI Quickstart",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/charmmm718/quiverai-quickstart",
    "canonicalUrl": "https://clawhub.ai/charmmm718/quiverai-quickstart",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/quiverai-quickstart",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quiverai-quickstart",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "quiverai-quickstart",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T19:02:56.989Z",
      "expiresAt": "2026-05-14T19:02:56.989Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quiverai-quickstart",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quiverai-quickstart",
        "contentDisposition": "attachment; filename=\"quiverai-quickstart-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "quiverai-quickstart"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/quiverai-quickstart"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/quiverai-quickstart",
    "downloadUrl": "https://openagent3.xyz/downloads/quiverai-quickstart",
    "agentUrl": "https://openagent3.xyz/skills/quiverai-quickstart/agent",
    "manifestUrl": "https://openagent3.xyz/skills/quiverai-quickstart/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/quiverai-quickstart/agent.md"
  }
}
```
## Documentation

### QuiverAI 快速入门指南

本指南将帮助你快速上手QuiverAI的SVG生成API，包括账户创建、API密钥配置、SDK安装和发送请求的完整流程。

### 1. 创建账户

首先访问 quiver.ai/start 创建QuiverAI公开测试账户，然后登录 app.quiver.ai。

### 2. 创建API密钥

在应用中打开 API Keys（Settings > Developers > API Keys）
点击 Create API key 并命名
立即复制密钥 —— 密钥只显示一次，无法后续找回

### 3. 配置环境变量

QuiverAI API使用Bearer认证方式。将密钥保存为 QUIVERAI_API_KEY：

macOS/Linux:

export QUIVERAI_API_KEY="<your-key>"

Windows PowerShell:

$env:QUIVERAI_API_KEY="<your-key>"

### Node.js SDK

使用官方Node.js SDK：

npm install @quiverai/sdk

或使用 pnpm/bun：

pnpm add @quiverai/sdk
# 或
bun add @quiverai/sdk

### 使用Node.js SDK

import { QuiverAI } from "@quiverai/sdk";

const client = new QuiverAI({
  bearerAuth: process.env["QUIVERAI_API_KEY"],
});

const logo = await client.createSVGs.generateSVG({
  model: "arrow-preview",
  prompt: "A logo for the next AI Design startup",
});

console.log(logo);

### 使用REST API

也可以直接使用HTTP请求：

curl --request POST \\
  --url https://api.quiver.ai/v1/svgs/generations \\
  --header 'Authorization: Bearer <QUIVERAI_API_KEY>' \\
  --header 'Content-Type: application/json' \\
  --data '{
    "model": "arrow-preview",
    "prompt": "A logo for the next AI Design startup",
    "n": 1,
    "stream": false
  }'

### 错误处理

API返回JSON错误载荷：

{
  "status": 429,
  "code": "rate_limit_exceeded",
  "message": "Rate limit exceeded",
  "request_id": "req_01J..."
}

常见错误码：

401 Unauthorized: API密钥缺失或无效
402 Payment Required: 积分不足
429 Too Many Requests: 请求过于频繁，请稍后重试

### 计费模型

每次成功的API请求消耗1积分
计费按请求次数计算，即使 n 大于1也只消耗1积分

### 下一步

查看 API参考文档
了解 定价和套餐
探索模型：Text to SVG 和 Image to SVG

### 重要提示

永远不要将API密钥提交到版本控制仓库
确保环境变量在生产环境中安全存储
关注API调用频率以避免触发速率限制
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: charmmm718
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T19:02:56.989Z
- Expires at: 2026-05-14T19:02:56.989Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/quiverai-quickstart)
- [Send to Agent page](https://openagent3.xyz/skills/quiverai-quickstart/agent)
- [JSON manifest](https://openagent3.xyz/skills/quiverai-quickstart/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/quiverai-quickstart/agent.md)
- [Download page](https://openagent3.xyz/downloads/quiverai-quickstart)