canva-core-workflow-a
Automates Canva design creation and export processes, enabling seamless integration of design workflows into applications.
Install this skill
Security score
The canva-core-workflow-a skill was audited on May 19, 2026 and we found 15 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 85 | const { design: meta } = await canvaAPI(`/designs/${designId}`, token); |
Template literal with variable interpolation in command context
| 87 | console.log(`Title: ${meta.title}`); |
Template literal with variable interpolation in command context
| 88 | console.log(`Pages: ${meta.page_count}`); |
Template literal with variable interpolation in command context
| 89 | console.log(`Created: ${new Date(meta.created_at * 1000).toISOString()}`); |
Template literal with variable interpolation in command context
| 90 | console.log(`Updated: ${new Date(meta.updated_at * 1000).toISOString()}`); |
Template literal with variable interpolation in command context
| 91 | console.log(`Owner: user=${meta.owner.user_id}, team=${meta.owner.team_id}`); |
Template literal with variable interpolation in command context
| 158 | const { job } = await canvaAPI(`/exports/${exportId}`, token); |
Template literal with variable interpolation in command context
| 166 | throw new Error(`Export failed: ${job.error.code} — ${job.error.message}`); |
External URL reference
| 41 | // POST https://api.canva.com/rest/v1/designs |
External URL reference
| 81 | // GET https://api.canva.com/rest/v1/designs/{designId} |
External URL reference
| 97 | // POST https://api.canva.com/rest/v1/exports |
External URL reference
| 149 | // GET https://api.canva.com/rest/v1/exports/{exportId} |
External URL reference
| 202 | - [Create Design API](https://www.canva.dev/docs/connect/api-reference/designs/create-design/) |
External URL reference
| 203 | - [Export API](https://www.canva.dev/docs/connect/api-reference/exports/create-design-export-job/) |
External URL reference
| 204 | - [Design Types](https://www.canva.dev/docs/connect/api-reference/designs/) |