# Send QuiverAI 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",
    "name": "QuiverAI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/charmmm718/quiverai",
    "canonicalUrl": "https://clawhub.ai/charmmm718/quiverai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/quiverai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quiverai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "quiverai",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T19:04:07.995Z",
      "expiresAt": "2026-05-14T19:04:07.995Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quiverai",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quiverai",
        "contentDisposition": "attachment; filename=\"quiverai-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "quiverai"
      },
      "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"
    },
    "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",
    "downloadUrl": "https://openagent3.xyz/downloads/quiverai",
    "agentUrl": "https://openagent3.xyz/skills/quiverai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/quiverai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/quiverai/agent.md"
  }
}
```
## Documentation

### QuiverAI — AI Vector Graphics

QuiverAI generates production-ready SVGs from text prompts or raster images.

Site: https://quiver.ai
Docs: https://docs.quiver.ai
API base: https://api.quiver.ai/v1
Model: arrow-preview
Auth: Bearer token via QUIVERAI_API_KEY
Billing: 1 credit per request (regardless of n).

### Setup

Get an API key at https://app.quiver.ai/settings/api-keys (create account at https://quiver.ai/start first).

### Text to SVG

Generate SVGs from a text description.

Endpoint: POST /v1/svgs/generations

curl -X POST https://api.quiver.ai/v1/svgs/generations \\
  -H "Authorization: Bearer $QUIVERAI_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "model": "arrow-preview",
    "prompt": "A minimalist monogram logo using the letter Q",
    "n": 1,
    "stream": false
  }'

Node.js SDK (npm install @quiverai/sdk):

import { QuiverAI } from "@quiverai/sdk";
const client = new QuiverAI({ bearerAuth: process.env.QUIVERAI_API_KEY });

const result = await client.createSVGs.generateSVG({
  model: "arrow-preview",
  prompt: "A minimalist monogram logo using the letter Q",
});
// result.data[0].svg contains the SVG markup

### Parameters

ParamTypeDefaultDescriptionmodelstring—Required. Use arrow-preview.promptstring—Required. Describes the desired SVG.instructionsstring—Additional style guidance (e.g. "flat monochrome, rounded corners").referencesarray—Up to 4 reference images ({ url } or { base64 }).nint1Number of outputs (1–16).temperaturefloat1Sampling temperature (0–2). Lower = more deterministic.top_pfloat1Nucleus sampling (0–1).max_output_tokensint—Upper bound for output tokens (max 131072).streamboolfalseSSE streaming (events: reasoning, draft, content).

### Response

{
  "id": "resp_01J...",
  "created": 1704067200,
  "data": [{ "svg": "<svg ...>...</svg>", "mime_type": "image/svg+xml" }],
  "usage": { "total_tokens": 1640, "input_tokens": 1200, "output_tokens": 440 }
}

### Image to SVG (Vectorize)

Convert a raster image (PNG/JPEG/WebP) into SVG.

Endpoint: POST /v1/svgs/vectorizations

curl -X POST https://api.quiver.ai/v1/svgs/vectorizations \\
  -H "Authorization: Bearer $QUIVERAI_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "model": "arrow-preview",
    "stream": false,
    "image": { "url": "https://example.com/logo.png" }
  }'

SDK:

const result = await client.vectorizeSVG.vectorizeSVG({
  model: "arrow-preview",
  image: { url: "https://example.com/logo.png" },
});

### Additional parameters (beyond Text-to-SVG shared ones)

ParamTypeDefaultDescriptionimageobject—Required. { url: "..." } or { base64: "..." }.auto_cropboolfalseCrop to dominant subject before vectorization.target_sizeint—Square resize target in px (128–4096) before inference.

Response format is identical to Text-to-SVG.

### Error codes

StatusCodeMeaning400invalid_requestMalformed body or missing fields.401unauthorizedBad or missing API key.402insufficient_creditsOut of credits.429rate_limit_exceededToo many requests; back off and retry.

### Tips

Save SVG output to a .svg file for immediate use.
Use instructions to control style without changing the prompt.
For logos, try low temperature (0.3–0.5) for cleaner, more consistent results.
Use references to provide visual examples the model should match.
For vectorization, enable auto_crop: true when the source image has excess whitespace.
## 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:04:07.995Z
- Expires at: 2026-05-14T19:04:07.995Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/quiverai)
- [Send to Agent page](https://openagent3.xyz/skills/quiverai/agent)
- [JSON manifest](https://openagent3.xyz/skills/quiverai/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/quiverai/agent.md)
- [Download page](https://openagent3.xyz/downloads/quiverai)