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

### Canva Connect

Manage Canva designs, assets, and folders via the Connect API.

### What This Skill Does (and Doesn't Do)

✅ CAN DO❌ CANNOT DOList/search designsAdd content to designsCreate blank designsEdit existing design contentExport designs (PNG/PDF/JPG)Upload documents (images only)Create/manage foldersAI design generationMove items between foldersUpload images as assetsAutofill brand templates

### Realistic Use Cases

1. Asset Pipeline 🖼️

Generate diagram → upload to Canva → organize in project folder

2. Export Automation 📤

Design finished in Canva → export via CLI → use in docs/website

3. Design Organization 📁

Create project folders → move related designs → keep Canva tidy

4. Brand Template Autofill 📋

Set up template in Canva → pass data via API → get personalized output

### Quick Start

# Authenticate (opens browser for OAuth)
{baseDir}/scripts/canva.sh auth

# List your designs
{baseDir}/scripts/canva.sh designs list

# Create a new design
{baseDir}/scripts/canva.sh designs create --type doc --title "My Document"

# Export a design
{baseDir}/scripts/canva.sh export <design_id> --format pdf

### 1. Create Canva Integration

Go to canva.com/developers/integrations
Click Create an integration
Set scopes:

design:content (Read + Write)
design:meta (Read)
asset (Read + Write)
brandtemplate:meta (Read)
brandtemplate:content (Read)
profile (Read)


Set OAuth redirect: http://127.0.0.1:3001/oauth/redirect
Note Client ID and generate Client Secret

### 2. Configure Environment

Add to ~/.clawdbot/clawdbot.json under skills.entries:

{
  "skills": {
    "entries": {
      "canva": {
        "clientId": "YOUR_CLIENT_ID",
        "clientSecret": "YOUR_CLIENT_SECRET"
      }
    }
  }
}

Or set environment variables:

export CANVA_CLIENT_ID="your_client_id"
export CANVA_CLIENT_SECRET="your_client_secret"

### 3. Authenticate

{baseDir}/scripts/canva.sh auth

Opens browser for OAuth consent. Tokens stored in ~/.clawdbot/canva-tokens.json.

### Authentication

CommandDescriptionauthStart OAuth flow (opens browser)auth statusCheck authentication statusauth logoutClear stored tokens

### Designs

CommandDescriptiondesigns list [--limit N]List your designsdesigns get <id>Get design detailsdesigns create --type <type> --title <title>Create new designdesigns delete <id>Move design to trash

Design types: doc, presentation, whiteboard, poster, instagram_post, facebook_post, video, logo, flyer, banner

### Export

CommandDescriptionexport <design_id> --format <fmt>Export designexport status <job_id>Check export job status

Formats: pdf, png, jpg, gif, pptx, mp4

### Assets

CommandDescriptionassets listList uploaded assetsassets upload <file> [--name <name>]Upload assetassets get <id>Get asset detailsassets delete <id>Delete asset

### Brand Templates

CommandDescriptiontemplates listList brand templatestemplates get <id>Get template detailsautofill <template_id> --data <json>Autofill template with data

### Folders

CommandDescriptionfolders listList foldersfolders create <name>Create folderfolders get <id>Get folder contents

### User

CommandDescriptionmeGet current user profile

### Create and Export a Poster

# Create
{baseDir}/scripts/canva.sh designs create --type poster --title "Event Poster"

# Export as PNG
{baseDir}/scripts/canva.sh export DAF... --format png --output ./poster.png

### Upload Brand Assets

# Upload logo
{baseDir}/scripts/canva.sh assets upload ./logo.png --name "Company Logo"

# Upload multiple
for f in ./brand/*.png; do
  {baseDir}/scripts/canva.sh assets upload "$f"
done

### Autofill a Template

# List available templates
{baseDir}/scripts/canva.sh templates list

# Autofill with data
{baseDir}/scripts/canva.sh autofill TEMPLATE_ID --data '{
  "title": "Q1 Report",
  "subtitle": "Financial Summary",
  "date": "January 2026"
}'

### API Reference

Base URL: https://api.canva.com/rest

See references/api.md for detailed endpoint documentation.

### Token Expired

{baseDir}/scripts/canva.sh auth  # Re-authenticate

### Rate Limited

The API has per-endpoint rate limits. The script handles backoff automatically.

### Missing Scopes

If operations fail with 403, ensure your integration has the required scopes enabled.

### Data Files

FilePurpose~/.clawdbot/canva-tokens.jsonOAuth tokens (encrypted)~/.clawdbot/canva-cache.jsonResponse cache
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: coolmanns
- 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-01T07:08:17.975Z
- Expires at: 2026-05-08T07:08:17.975Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/canva-connect)
- [Send to Agent page](https://openagent3.xyz/skills/canva-connect/agent)
- [JSON manifest](https://openagent3.xyz/skills/canva-connect/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/canva-connect/agent.md)
- [Download page](https://openagent3.xyz/downloads/canva-connect)