{"skill":{"slug":"canva-designs","displayName":"Canva","summary":"Create and manage Canva designs, upload assets, export content, and manage brand templates via the Canva Connect API. Use this skill when users want to autom...","description":"---\nname: canva-designs\ndescription: Create and manage Canva designs, upload assets, export content, and manage brand templates via the Canva Connect API. Use this skill when users want to automate design workflows, manage brand assets, or coordinate Canva content creation from chat.\n---\n\n# Canva\n\n![Canva](https://raw.githubusercontent.com/ClawLink-HQ/clawlink/main/public/images/brand-logos/canva.svg?v=2)\n\nAccess Canva via the Canva Connect API with managed OAuth authentication. Create designs, upload assets, export content, and manage brand templates from chat.\n\nThis skill uses [ClawLink](https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=canva-designs) for hosted connection flows and credentials so you do not need to configure Canva API access yourself.\n\n### Setup in 3 Steps\n\n| Step 1: Install | Step 2: Pair Account | Step 3: Connect Canva |\n|:---:|:---:|:---:|\n| ![Install](https://raw.githubusercontent.com/ClawLink-HQ/clawlink/main/public/images/pairing/initialstep_1.gif) | ![Pair](https://raw.githubusercontent.com/ClawLink-HQ/clawlink/main/public/images/approve_process.gif) | *App-specific connection GIF coming soon* |\n| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Canva |\n\n## How It Works\n\n```\n┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐\n│   OpenClaw      │────▶│   ClawLink   │────▶│   Canva Connect │\n│   (User Chat)   │     │   (OAuth)    │     │      API          │\n└─────────────────┘     └──────────────┘     └──────────────────┘\n          │                       │                       │\n          │  1. Install Plugin    │                       │\n          │  2. Pair Device       │                       │\n          │  3. Connect Canva     │                       │\n          │                       │  4. Secure Token      │\n          │                       │  5. Proxy Requests    │\n          │                       │                       │\n          ▼                       ▼                       ▼\n    ┌──────────┐           ┌──────────┐           ┌──────────┐\n    │  SKILL   │           │ Dashboard│           │   Canva   │\n    │  File    │           │ Auth     │           │   Hub │\n    └──────────┘           └──────────┘           └──────────┘\n```\n\n## Install\n\nInstall the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.\n\n```bash\nopenclaw plugins install clawhub:clawlink-plugin\nopenclaw config set tools.alsoAllow '[\"clawlink-plugin\"]' --strict-json\nopenclaw gateway restart\n```\n\nThen tell the user: \"OpenClaw has been restarted. Send `/new` as a standalone message to start a fresh chat, then ask for Canva again.\"\n\n## Quick Start\n\n```bash\n# List integrations\nclawlink_list_integrations\n\n# List Canva tools\nclawlink_list_tools --integration canva\n\n# Search for a specific tool\nclawlink_search_tools --query \"design\" --integration canva\n```\n\n## Authentication\n\nAll Canva tool calls are authenticated automatically by ClawLink using the user's connected Canva account.\n\n**No API key is required in chat.** ClawLink stores the OAuth token securely and injects it into every Canva API request on the user's behalf.\n\n### Getting Connected\n\n1. Install the ClawLink plugin (see Install above).\n2. Pair the plugin with `clawlink_begin_pairing` if it is not configured yet.\n3. Open https://claw-link.dev/dashboard?add=canva and connect Canva.\n4. Call `clawlink_list_integrations` to verify the connection is active.\n\n## Connection Management\n\n### List Connections\n\n```bash\nclawlink_list_integrations\n```\n\n**Response:** Returns all connected integrations. Look for `canva` in the list.\n\n### Verify Connection\n\n```bash\nclawlink_list_tools --integration canva\n```\n\n**Response:** Returns the live tool catalog for Canva.\n\n### Reconnect\n\nIf Canva tools are missing or the connection shows an error:\n\n1. Direct the user to https://claw-link.dev/dashboard?add=canva\n2. After they confirm, call `clawlink_list_integrations` to verify\n3. Then call `clawlink_list_tools --integration canva`\n\n## Discovery Workflow\n\n1. Call `clawlink_list_integrations` to confirm Canva is connected.\n2. Call `clawlink_list_tools --integration canva` to see the live catalog.\n3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.\n4. If the user describes a capability but the exact tool is unclear, call `clawlink_search_tools` with a short query and integration `canva`.\n5. If no Canva tools appear, direct the user to https://claw-link.dev/dashboard?add=canva.\n\n## Execution Workflow\n\n```\n┌─────────────────────────────────────────────────────────────┐\n│  READ OPERATIONS (Safe)                                     │\n│  list → get → search → describe → call                      │\n│                                                             │\n│  Example: List designs → Get metadata → Show results       │\n└─────────────────────────────────────────────────────────────┘\n                               │\n                               ▼\n┌─────────────────────────────────────────────────────────────┐\n│  WRITE OPERATIONS (Require Confirmation)                    │\n│  list → get → describe → preview → confirm → call           │\n│                                                             │\n│  Example: Describe tool → Preview changes → User approves   │\n│           → Execute update                                  │\n└─────────────────────────────────────────────────────────────┘\n```\n\n1. For unfamiliar tools, ambiguous requests, or any write action, call `clawlink_describe_tool` first.\n2. Use the returned guidance, schema, `whenToUse`, `askBefore`, `safeDefaults`, `examples`, and `followups` to shape the call.\n3. Prefer read, list, search, and get operations before writes when that reduces ambiguity.\n4. For writes or anything marked as requiring confirmation, call `clawlink_preview_tool` first.\n5. Execute with `clawlink_call_tool`. Pass confirmation only after the preview matches the user's intent.\n6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.\n\n## Tool Reference\n\nTools are available dynamically from the live ClawLink catalog. Call `clawlink_list_tools --integration canva` to see the full list.\n\n### Typical Tool Categories\n\n| Category | Description | Mode |\n|----------|-------------|------|\n| Designs | Create, list, get, and manage designs | Read/Write |\n| Assets | Upload and manage brand assets | Read/Write |\n| Exports | Export designs in various formats | Write |\n| Brand Templates | Manage brand templates | Read/Write |\n| User Profile | Get current user details | Read |\n\n## Code Examples\n\n### List designs\n\n```bash\nclawlink_call_tool --tool \"canva_list_designs\" \\\n  --params '{\n    \"limit\": 20\n  }'\n```\n\n### Get design metadata\n\n```bash\nclawlink_call_tool --tool \"canva_get_design\" \\\n  --params '{\n    \"design_id\": \"YOUR_DESIGN_ID\"\n  }'\n```\n\n### Upload an asset\n\n```bash\nclawlink_call_tool --tool \"canva_upload_asset\" \\\n  --params '{\n    \"name\": \"brand-logo.png\",\n    \"asset_type\": \"image\"\n  }'\n```\n\n### Export a design\n\n```bash\nclawlink_call_tool --tool \"canva_create_export\" \\\n  --params '{\n    \"design_id\": \"YOUR_DESIGN_ID\",\n    \"format\": \"PNG\"\n  }'\n```\n\n## Security& Permissions\n\n- Access is scoped to the connected Canva account's designs and assets.\n- **All write operations require explicit user confirmation.** Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.\n- Destructive actions (deleting designs, assets) are marked as high-impact and must be confirmed.\n- Brand template management affects team-wide design standards; confirm before changes.\n\n## Notes\n\n- Canva API has rate limits; avoid excessive API calls in short succession.\n- Export operations may be asynchronous; poll for completion if needed.\n- Some Canva features require specific subscription plans (Canva Pro, Teams).\n- Asset uploads are subject to file size and format restrictions.\n\n## Error Handling\n\n| Status / Error | Meaning |\n|----------------|---------|\n| Tool not found | The tool name does not exist in the current catalog. Verify with `clawlink_list_tools --integration canva`. |\n| Missing connection | Canva is not connected. Direct the user to https://claw-link.dev/dashboard?add=canva. |\n| `Design not found` | The design ID does not exist or is not accessible. |\n| `Export pending` | Export is still processing. Poll for completion. |\n| `Upload failed` | The file could not be uploaded. Check file format and size. |\n| Write rejected | User did not confirm a write action. Always confirm before executing writes. |\n\n### Troubleshooting: Tools Not Visible\n\n1. Check that the ClawLink plugin is installed:\n   ```bash\n   openclaw plugins list\n   ```\n2. If the plugin is installed but tools are missing, tell the user to send `/new` as a standalone message to reload the catalog.\n3. If a fresh chat does not help, run:\n   ```bash\n   openclaw config set tools.alsoAllow '[\"clawlink-plugin\"]' --strict-json\n   openclaw gateway restart\n   ```\n4. After restart, tell the user to send `/new` again and retry.\n\n### Troubleshooting: Invalid Tool Call\n\n1. Ensure the integration slug is exactly `canva`.\n2. Use `clawlink_describe_tool` to verify parameter names and types before calling.\n3. For write operations, always call `clawlink_preview_tool` first.\n\n## Resources\n\n- [Canva Developer Documentation](https://www.canva.com/developers/)\n- [Canva Connect API](https://www.canva.com/developers/docs/connect/)\n- ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=canva-designs\n- ClawLink Docs: https://docs.claw-link.dev/openclaw\n- ClawLink Verification: https://claw-link.dev/verify\n\n---\n\n**Powered by [ClawLink](https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=canva-designs)** — an integration hub for OpenClaw\n\n![ClawLink Logo](https://raw.githubusercontent.com/ClawLink-HQ/clawlink/main/public/images/logo/link_logo_black_small.png)\n","topics":["Content Creation"],"tags":{"latest":"1.0.6"},"stats":{"comments":0,"downloads":1838,"installsAllTime":81,"installsCurrent":23,"stars":6,"versions":8},"createdAt":1778002202186,"updatedAt":1780988699481},"latestVersion":{"version":"1.0.6","createdAt":1780988699481,"changelog":"Add UTM attribution tags (utm_source=clawhub) to ClawLink branding links so visits from this skill page are tracked as a distinct traffic source.","license":"MIT-0"},"metadata":null,"owner":{"handle":"hith3sh","userId":"s173vws87a7ss71xf9rq53k5gd8568kv","displayName":"Jay","image":"https://avatars.githubusercontent.com/u/83839061?v=4"},"moderation":null}