[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-canva-bulk-create":3,"mdc--ew3807-key":39,"related-org-openai-canva-bulk-create":1009,"related-repo-openai-canva-bulk-create":1214},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"canva-bulk-create","bulk create Canva designs from tabular data","Bulk-create Canva designs from tabular data using a brand template with autofill fields, producing one design per row. Use when users say \"bulk create designs from this CSV\", \"generate one design per row\", \"create a design for each product\", \"batch generate from a template\", or \"autofill a template from a spreadsheet\". Accepts any tabular data source — uploaded files, pasted tables, JSON, or URLs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"CSV","csv","tag",{"name":17,"slug":18,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},"Canva","canva",{"name":23,"slug":24,"type":15},"Templates","templates",{"name":26,"slug":27,"type":15},"Design","design",4888,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-08-28T15:09:03.187522",null,661,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fcanva\u002Fskills\u002Fcanva-bulk-create","---\nname: canva-bulk-create\ndescription: Bulk-create Canva designs from tabular data using a brand template with autofill fields, producing one design per row. Use when users say \"bulk create designs from this CSV\", \"generate one design per row\", \"create a design for each product\", \"batch generate from a template\", or \"autofill a template from a spreadsheet\". Accepts any tabular data source — uploaded files, pasted tables, JSON, or URLs.\n---\n\n# Canva Bulk Design Creation\n\nCreate one Canva design per row of data by autofilling a brand template with data tags.\n\n## Workflow\n\n### Step 1: Get the Data\n\nAccept data in any form the user provides and extract a list of rows with named columns:\n\n- **Uploaded file**: read the file and extract headers and rows\n- **Pasted data**: parse markdown tables, tab-separated values, or JSON arrays directly from the chat\n- **URL**: fetch the resource and parse the response as tabular data\n\nIf no data has been provided, ask the user to share it in whatever format is convenient for them.\n\nOnce parsed, show the user:\n- Column headers found\n- Number of rows (= number of designs that will be created)\n- A preview of the first few rows\n\n### Step 2: Select the Brand Template\n\nIf the user hasn't specified a template, search for autofill-capable ones:\n\n```\nCanva:search-brand-templates  dataset=non_empty\n```\n\nShow the results and ask the user to pick one. If they already named or described a template, search with that query.\n\n### Step 3: Inspect the Template Schema\n\n```\nCanva:get-brand-template-dataset  template_id=\u003Cselected_id>\n```\n\nThis returns the field names and types (text, image, chart) that the template expects.\n\n### Step 4: Map CSV Columns to Template Fields\n\nPresent a mapping table to the user:\n\n| Template Field | Type | Matched CSV Column | Notes |\n|---|---|---|---|\n| `product_name` | text | `Product Name` | auto-matched |\n| `price` | text | `Price` | auto-matched |\n| `hero_image` | image | *(none)* | no match — image fields need asset IDs |\n\n**Matching rules:**\n- Do case-insensitive, fuzzy matching between CSV headers and template field names\n- Text fields can be filled directly from CSV string values\n- Image fields require a Canva asset ID — see **Image Field Handling** below\n- Chart fields require structured data — treat as advanced and ask the user for clarification\n\nConfirm the mapping with the user before proceeding, especially if there are unmapped fields or ambiguous matches.\n\n#### Image Field Handling\n\nThere are two ways a CSV can supply images for image-type template fields:\n\n**Pattern A — CSV has a Canva asset ID column** (e.g. `image_asset_id`):\nUse the asset ID value directly in the `autofill-design` call:\n```json\n{ \"image\": { \"type\": \"image\", \"asset_id\": \"\u003Cvalue from CSV column>\" } }\n```\n\n**Pattern B — CSV has an image URL column** (e.g. `image_url`):\nURLs cannot be passed directly to `autofill-design`. Upload each URL to Canva first using `Canva:upload-asset-from-url`, capture the returned asset ID, then use it in the autofill call. Do the upload immediately before creating that row's design so failures stay localised.\n\n**Pattern C — No image column in CSV:**\nAsk the user whether to skip the image field (template default image stays) or abort. Skipping is safe — just omit the image key from the `data` payload entirely.\n\n### Step 5: Bulk Create — One Design per Row\n\nLoop through every CSV row and call `Canva:autofill-design` for each one. Call them **sequentially**, not all at once — the API may have rate limits and sequential calls are easier to debug.\n\nFor each row:\n\n1. If the row has an image URL column (Pattern B), first call `Canva:upload-asset-from-url` to get a Canva asset ID.\n2. Build the `data` payload from the confirmed field mapping:\n\n```json\n{\n  \"text_field_name\": { \"type\": \"text\", \"text\": \"\u003Cvalue from CSV>\" },\n  \"image_field_name\": { \"type\": \"image\", \"asset_id\": \"\u003Casset ID>\" }\n}\n```\n\n3. Call `Canva:autofill-design` with the template ID, data payload, and a descriptive title using the row number or a meaningful column value (e.g. `\"Bulk Design - Row 3 - \u003Cidentifier>\"`).\n\nTrack results as you go:\n\n```\nRow 1 \u002F 50: Created — \u003Cdesign_url>\nRow 2 \u002F 50: Created — \u003Cdesign_url>\nRow 3 \u002F 50: Failed — \u003Cerror>\n```\n\n### Step 6: Report Results\n\nAfter all rows are processed, summarise:\n\n- Total rows attempted\n- Successes (with links)\n- Failures (with row number and reason)\n\nOffer to save a summary CSV with columns: `row`, `status`, `design_url`, `error`.\n\n## Notes\n\n- Autofill requires a Canva Enterprise plan.\n- For large CSVs (50+ rows), warn the user upfront that this will make N API calls and may take a while. Offer to do a test run on the first 3 rows before proceeding with the full batch.\n- If some rows fail, continue with the rest — don't abort the whole batch.\n- Skip rows where all mapped fields are empty and warn the user about them.\n- If no CSV column matches a required template field, ask the user to confirm which column to use or whether to skip that field.\n- Template field names are case-sensitive in the API — use the exact keys from `get-brand-template-dataset`.\n- There is no \"undo bulk create\" — warn the user before starting large runs.\n- Designs created this way are full Canva designs the user can further edit in their account.\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,53,59,66,73,78,114,119,124,142,148,153,166,171,177,186,191,197,202,330,338,368,373,379,384,410,532,564,582,588,608,613,641,847,870,875,884,890,895,913,948,953,1003],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"canva-bulk-design-creation",[50],{"type":51,"value":52},"text","Canva Bulk Design Creation",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Create one Canva design per row of data by autofilling a brand template with data tags.",{"type":45,"tag":60,"props":61,"children":63},"h2",{"id":62},"workflow",[64],{"type":51,"value":65},"Workflow",{"type":45,"tag":67,"props":68,"children":70},"h3",{"id":69},"step-1-get-the-data",[71],{"type":51,"value":72},"Step 1: Get the Data",{"type":45,"tag":54,"props":74,"children":75},{},[76],{"type":51,"value":77},"Accept data in any form the user provides and extract a list of rows with named columns:",{"type":45,"tag":79,"props":80,"children":81},"ul",{},[82,94,104],{"type":45,"tag":83,"props":84,"children":85},"li",{},[86,92],{"type":45,"tag":87,"props":88,"children":89},"strong",{},[90],{"type":51,"value":91},"Uploaded file",{"type":51,"value":93},": read the file and extract headers and rows",{"type":45,"tag":83,"props":95,"children":96},{},[97,102],{"type":45,"tag":87,"props":98,"children":99},{},[100],{"type":51,"value":101},"Pasted data",{"type":51,"value":103},": parse markdown tables, tab-separated values, or JSON arrays directly from the chat",{"type":45,"tag":83,"props":105,"children":106},{},[107,112],{"type":45,"tag":87,"props":108,"children":109},{},[110],{"type":51,"value":111},"URL",{"type":51,"value":113},": fetch the resource and parse the response as tabular data",{"type":45,"tag":54,"props":115,"children":116},{},[117],{"type":51,"value":118},"If no data has been provided, ask the user to share it in whatever format is convenient for them.",{"type":45,"tag":54,"props":120,"children":121},{},[122],{"type":51,"value":123},"Once parsed, show the user:",{"type":45,"tag":79,"props":125,"children":126},{},[127,132,137],{"type":45,"tag":83,"props":128,"children":129},{},[130],{"type":51,"value":131},"Column headers found",{"type":45,"tag":83,"props":133,"children":134},{},[135],{"type":51,"value":136},"Number of rows (= number of designs that will be created)",{"type":45,"tag":83,"props":138,"children":139},{},[140],{"type":51,"value":141},"A preview of the first few rows",{"type":45,"tag":67,"props":143,"children":145},{"id":144},"step-2-select-the-brand-template",[146],{"type":51,"value":147},"Step 2: Select the Brand Template",{"type":45,"tag":54,"props":149,"children":150},{},[151],{"type":51,"value":152},"If the user hasn't specified a template, search for autofill-capable ones:",{"type":45,"tag":154,"props":155,"children":159},"pre",{"className":156,"code":158,"language":51},[157],"language-text","Canva:search-brand-templates  dataset=non_empty\n",[160],{"type":45,"tag":161,"props":162,"children":164},"code",{"__ignoreMap":163},"",[165],{"type":51,"value":158},{"type":45,"tag":54,"props":167,"children":168},{},[169],{"type":51,"value":170},"Show the results and ask the user to pick one. If they already named or described a template, search with that query.",{"type":45,"tag":67,"props":172,"children":174},{"id":173},"step-3-inspect-the-template-schema",[175],{"type":51,"value":176},"Step 3: Inspect the Template Schema",{"type":45,"tag":154,"props":178,"children":181},{"className":179,"code":180,"language":51},[157],"Canva:get-brand-template-dataset  template_id=\u003Cselected_id>\n",[182],{"type":45,"tag":161,"props":183,"children":184},{"__ignoreMap":163},[185],{"type":51,"value":180},{"type":45,"tag":54,"props":187,"children":188},{},[189],{"type":51,"value":190},"This returns the field names and types (text, image, chart) that the template expects.",{"type":45,"tag":67,"props":192,"children":194},{"id":193},"step-4-map-csv-columns-to-template-fields",[195],{"type":51,"value":196},"Step 4: Map CSV Columns to Template Fields",{"type":45,"tag":54,"props":198,"children":199},{},[200],{"type":51,"value":201},"Present a mapping table to the user:",{"type":45,"tag":203,"props":204,"children":205},"table",{},[206,235],{"type":45,"tag":207,"props":208,"children":209},"thead",{},[210],{"type":45,"tag":211,"props":212,"children":213},"tr",{},[214,220,225,230],{"type":45,"tag":215,"props":216,"children":217},"th",{},[218],{"type":51,"value":219},"Template Field",{"type":45,"tag":215,"props":221,"children":222},{},[223],{"type":51,"value":224},"Type",{"type":45,"tag":215,"props":226,"children":227},{},[228],{"type":51,"value":229},"Matched CSV Column",{"type":45,"tag":215,"props":231,"children":232},{},[233],{"type":51,"value":234},"Notes",{"type":45,"tag":236,"props":237,"children":238},"tbody",{},[239,270,299],{"type":45,"tag":211,"props":240,"children":241},{},[242,252,256,265],{"type":45,"tag":243,"props":244,"children":245},"td",{},[246],{"type":45,"tag":161,"props":247,"children":249},{"className":248},[],[250],{"type":51,"value":251},"product_name",{"type":45,"tag":243,"props":253,"children":254},{},[255],{"type":51,"value":51},{"type":45,"tag":243,"props":257,"children":258},{},[259],{"type":45,"tag":161,"props":260,"children":262},{"className":261},[],[263],{"type":51,"value":264},"Product Name",{"type":45,"tag":243,"props":266,"children":267},{},[268],{"type":51,"value":269},"auto-matched",{"type":45,"tag":211,"props":271,"children":272},{},[273,282,286,295],{"type":45,"tag":243,"props":274,"children":275},{},[276],{"type":45,"tag":161,"props":277,"children":279},{"className":278},[],[280],{"type":51,"value":281},"price",{"type":45,"tag":243,"props":283,"children":284},{},[285],{"type":51,"value":51},{"type":45,"tag":243,"props":287,"children":288},{},[289],{"type":45,"tag":161,"props":290,"children":292},{"className":291},[],[293],{"type":51,"value":294},"Price",{"type":45,"tag":243,"props":296,"children":297},{},[298],{"type":51,"value":269},{"type":45,"tag":211,"props":300,"children":301},{},[302,311,316,325],{"type":45,"tag":243,"props":303,"children":304},{},[305],{"type":45,"tag":161,"props":306,"children":308},{"className":307},[],[309],{"type":51,"value":310},"hero_image",{"type":45,"tag":243,"props":312,"children":313},{},[314],{"type":51,"value":315},"image",{"type":45,"tag":243,"props":317,"children":318},{},[319],{"type":45,"tag":320,"props":321,"children":322},"em",{},[323],{"type":51,"value":324},"(none)",{"type":45,"tag":243,"props":326,"children":327},{},[328],{"type":51,"value":329},"no match — image fields need asset IDs",{"type":45,"tag":54,"props":331,"children":332},{},[333],{"type":45,"tag":87,"props":334,"children":335},{},[336],{"type":51,"value":337},"Matching rules:",{"type":45,"tag":79,"props":339,"children":340},{},[341,346,351,363],{"type":45,"tag":83,"props":342,"children":343},{},[344],{"type":51,"value":345},"Do case-insensitive, fuzzy matching between CSV headers and template field names",{"type":45,"tag":83,"props":347,"children":348},{},[349],{"type":51,"value":350},"Text fields can be filled directly from CSV string values",{"type":45,"tag":83,"props":352,"children":353},{},[354,356,361],{"type":51,"value":355},"Image fields require a Canva asset ID — see ",{"type":45,"tag":87,"props":357,"children":358},{},[359],{"type":51,"value":360},"Image Field Handling",{"type":51,"value":362}," below",{"type":45,"tag":83,"props":364,"children":365},{},[366],{"type":51,"value":367},"Chart fields require structured data — treat as advanced and ask the user for clarification",{"type":45,"tag":54,"props":369,"children":370},{},[371],{"type":51,"value":372},"Confirm the mapping with the user before proceeding, especially if there are unmapped fields or ambiguous matches.",{"type":45,"tag":374,"props":375,"children":377},"h4",{"id":376},"image-field-handling",[378],{"type":51,"value":360},{"type":45,"tag":54,"props":380,"children":381},{},[382],{"type":51,"value":383},"There are two ways a CSV can supply images for image-type template fields:",{"type":45,"tag":54,"props":385,"children":386},{},[387,392,394,400,402,408],{"type":45,"tag":87,"props":388,"children":389},{},[390],{"type":51,"value":391},"Pattern A — CSV has a Canva asset ID column",{"type":51,"value":393}," (e.g. ",{"type":45,"tag":161,"props":395,"children":397},{"className":396},[],[398],{"type":51,"value":399},"image_asset_id",{"type":51,"value":401},"):\nUse the asset ID value directly in the ",{"type":45,"tag":161,"props":403,"children":405},{"className":404},[],[406],{"type":51,"value":407},"autofill-design",{"type":51,"value":409}," call:",{"type":45,"tag":154,"props":411,"children":415},{"className":412,"code":413,"language":414,"meta":163,"style":163},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{ \"image\": { \"type\": \"image\", \"asset_id\": \"\u003Cvalue from CSV column>\" } }\n","json",[416],{"type":45,"tag":161,"props":417,"children":418},{"__ignoreMap":163},[419],{"type":45,"tag":420,"props":421,"children":424},"span",{"class":422,"line":423},"line",1,[425,431,436,441,446,451,456,460,466,470,474,478,483,487,492,496,501,505,509,513,518,522,527],{"type":45,"tag":420,"props":426,"children":428},{"style":427},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[429],{"type":51,"value":430},"{",{"type":45,"tag":420,"props":432,"children":433},{"style":427},[434],{"type":51,"value":435}," \"",{"type":45,"tag":420,"props":437,"children":439},{"style":438},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[440],{"type":51,"value":315},{"type":45,"tag":420,"props":442,"children":443},{"style":427},[444],{"type":51,"value":445},"\"",{"type":45,"tag":420,"props":447,"children":448},{"style":427},[449],{"type":51,"value":450},":",{"type":45,"tag":420,"props":452,"children":453},{"style":427},[454],{"type":51,"value":455}," {",{"type":45,"tag":420,"props":457,"children":458},{"style":427},[459],{"type":51,"value":435},{"type":45,"tag":420,"props":461,"children":463},{"style":462},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[464],{"type":51,"value":465},"type",{"type":45,"tag":420,"props":467,"children":468},{"style":427},[469],{"type":51,"value":445},{"type":45,"tag":420,"props":471,"children":472},{"style":427},[473],{"type":51,"value":450},{"type":45,"tag":420,"props":475,"children":476},{"style":427},[477],{"type":51,"value":435},{"type":45,"tag":420,"props":479,"children":481},{"style":480},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[482],{"type":51,"value":315},{"type":45,"tag":420,"props":484,"children":485},{"style":427},[486],{"type":51,"value":445},{"type":45,"tag":420,"props":488,"children":489},{"style":427},[490],{"type":51,"value":491},",",{"type":45,"tag":420,"props":493,"children":494},{"style":427},[495],{"type":51,"value":435},{"type":45,"tag":420,"props":497,"children":498},{"style":462},[499],{"type":51,"value":500},"asset_id",{"type":45,"tag":420,"props":502,"children":503},{"style":427},[504],{"type":51,"value":445},{"type":45,"tag":420,"props":506,"children":507},{"style":427},[508],{"type":51,"value":450},{"type":45,"tag":420,"props":510,"children":511},{"style":427},[512],{"type":51,"value":435},{"type":45,"tag":420,"props":514,"children":515},{"style":480},[516],{"type":51,"value":517},"\u003Cvalue from CSV column>",{"type":45,"tag":420,"props":519,"children":520},{"style":427},[521],{"type":51,"value":445},{"type":45,"tag":420,"props":523,"children":524},{"style":427},[525],{"type":51,"value":526}," }",{"type":45,"tag":420,"props":528,"children":529},{"style":427},[530],{"type":51,"value":531}," }\n",{"type":45,"tag":54,"props":533,"children":534},{},[535,540,541,547,549,554,556,562],{"type":45,"tag":87,"props":536,"children":537},{},[538],{"type":51,"value":539},"Pattern B — CSV has an image URL column",{"type":51,"value":393},{"type":45,"tag":161,"props":542,"children":544},{"className":543},[],[545],{"type":51,"value":546},"image_url",{"type":51,"value":548},"):\nURLs cannot be passed directly to ",{"type":45,"tag":161,"props":550,"children":552},{"className":551},[],[553],{"type":51,"value":407},{"type":51,"value":555},". Upload each URL to Canva first using ",{"type":45,"tag":161,"props":557,"children":559},{"className":558},[],[560],{"type":51,"value":561},"Canva:upload-asset-from-url",{"type":51,"value":563},", capture the returned asset ID, then use it in the autofill call. Do the upload immediately before creating that row's design so failures stay localised.",{"type":45,"tag":54,"props":565,"children":566},{},[567,572,574,580],{"type":45,"tag":87,"props":568,"children":569},{},[570],{"type":51,"value":571},"Pattern C — No image column in CSV:",{"type":51,"value":573},"\nAsk the user whether to skip the image field (template default image stays) or abort. Skipping is safe — just omit the image key from the ",{"type":45,"tag":161,"props":575,"children":577},{"className":576},[],[578],{"type":51,"value":579},"data",{"type":51,"value":581}," payload entirely.",{"type":45,"tag":67,"props":583,"children":585},{"id":584},"step-5-bulk-create-one-design-per-row",[586],{"type":51,"value":587},"Step 5: Bulk Create — One Design per Row",{"type":45,"tag":54,"props":589,"children":590},{},[591,593,599,601,606],{"type":51,"value":592},"Loop through every CSV row and call ",{"type":45,"tag":161,"props":594,"children":596},{"className":595},[],[597],{"type":51,"value":598},"Canva:autofill-design",{"type":51,"value":600}," for each one. Call them ",{"type":45,"tag":87,"props":602,"children":603},{},[604],{"type":51,"value":605},"sequentially",{"type":51,"value":607},", not all at once — the API may have rate limits and sequential calls are easier to debug.",{"type":45,"tag":54,"props":609,"children":610},{},[611],{"type":51,"value":612},"For each row:",{"type":45,"tag":614,"props":615,"children":616},"ol",{},[617,629],{"type":45,"tag":83,"props":618,"children":619},{},[620,622,627],{"type":51,"value":621},"If the row has an image URL column (Pattern B), first call ",{"type":45,"tag":161,"props":623,"children":625},{"className":624},[],[626],{"type":51,"value":561},{"type":51,"value":628}," to get a Canva asset ID.",{"type":45,"tag":83,"props":630,"children":631},{},[632,634,639],{"type":51,"value":633},"Build the ",{"type":45,"tag":161,"props":635,"children":637},{"className":636},[],[638],{"type":51,"value":579},{"type":51,"value":640}," payload from the confirmed field mapping:",{"type":45,"tag":154,"props":642,"children":644},{"className":412,"code":643,"language":414,"meta":163,"style":163},"{\n  \"text_field_name\": { \"type\": \"text\", \"text\": \"\u003Cvalue from CSV>\" },\n  \"image_field_name\": { \"type\": \"image\", \"asset_id\": \"\u003Casset ID>\" }\n}\n",[645],{"type":45,"tag":161,"props":646,"children":647},{"__ignoreMap":163},[648,656,748,838],{"type":45,"tag":420,"props":649,"children":650},{"class":422,"line":423},[651],{"type":45,"tag":420,"props":652,"children":653},{"style":427},[654],{"type":51,"value":655},"{\n",{"type":45,"tag":420,"props":657,"children":659},{"class":422,"line":658},2,[660,665,670,674,678,682,686,690,694,698,702,706,710,714,718,722,726,730,734,739,743],{"type":45,"tag":420,"props":661,"children":662},{"style":427},[663],{"type":51,"value":664},"  \"",{"type":45,"tag":420,"props":666,"children":667},{"style":438},[668],{"type":51,"value":669},"text_field_name",{"type":45,"tag":420,"props":671,"children":672},{"style":427},[673],{"type":51,"value":445},{"type":45,"tag":420,"props":675,"children":676},{"style":427},[677],{"type":51,"value":450},{"type":45,"tag":420,"props":679,"children":680},{"style":427},[681],{"type":51,"value":455},{"type":45,"tag":420,"props":683,"children":684},{"style":427},[685],{"type":51,"value":435},{"type":45,"tag":420,"props":687,"children":688},{"style":462},[689],{"type":51,"value":465},{"type":45,"tag":420,"props":691,"children":692},{"style":427},[693],{"type":51,"value":445},{"type":45,"tag":420,"props":695,"children":696},{"style":427},[697],{"type":51,"value":450},{"type":45,"tag":420,"props":699,"children":700},{"style":427},[701],{"type":51,"value":435},{"type":45,"tag":420,"props":703,"children":704},{"style":480},[705],{"type":51,"value":51},{"type":45,"tag":420,"props":707,"children":708},{"style":427},[709],{"type":51,"value":445},{"type":45,"tag":420,"props":711,"children":712},{"style":427},[713],{"type":51,"value":491},{"type":45,"tag":420,"props":715,"children":716},{"style":427},[717],{"type":51,"value":435},{"type":45,"tag":420,"props":719,"children":720},{"style":462},[721],{"type":51,"value":51},{"type":45,"tag":420,"props":723,"children":724},{"style":427},[725],{"type":51,"value":445},{"type":45,"tag":420,"props":727,"children":728},{"style":427},[729],{"type":51,"value":450},{"type":45,"tag":420,"props":731,"children":732},{"style":427},[733],{"type":51,"value":435},{"type":45,"tag":420,"props":735,"children":736},{"style":480},[737],{"type":51,"value":738},"\u003Cvalue from CSV>",{"type":45,"tag":420,"props":740,"children":741},{"style":427},[742],{"type":51,"value":445},{"type":45,"tag":420,"props":744,"children":745},{"style":427},[746],{"type":51,"value":747}," },\n",{"type":45,"tag":420,"props":749,"children":751},{"class":422,"line":750},3,[752,756,761,765,769,773,777,781,785,789,793,797,801,805,809,813,817,821,825,830,834],{"type":45,"tag":420,"props":753,"children":754},{"style":427},[755],{"type":51,"value":664},{"type":45,"tag":420,"props":757,"children":758},{"style":438},[759],{"type":51,"value":760},"image_field_name",{"type":45,"tag":420,"props":762,"children":763},{"style":427},[764],{"type":51,"value":445},{"type":45,"tag":420,"props":766,"children":767},{"style":427},[768],{"type":51,"value":450},{"type":45,"tag":420,"props":770,"children":771},{"style":427},[772],{"type":51,"value":455},{"type":45,"tag":420,"props":774,"children":775},{"style":427},[776],{"type":51,"value":435},{"type":45,"tag":420,"props":778,"children":779},{"style":462},[780],{"type":51,"value":465},{"type":45,"tag":420,"props":782,"children":783},{"style":427},[784],{"type":51,"value":445},{"type":45,"tag":420,"props":786,"children":787},{"style":427},[788],{"type":51,"value":450},{"type":45,"tag":420,"props":790,"children":791},{"style":427},[792],{"type":51,"value":435},{"type":45,"tag":420,"props":794,"children":795},{"style":480},[796],{"type":51,"value":315},{"type":45,"tag":420,"props":798,"children":799},{"style":427},[800],{"type":51,"value":445},{"type":45,"tag":420,"props":802,"children":803},{"style":427},[804],{"type":51,"value":491},{"type":45,"tag":420,"props":806,"children":807},{"style":427},[808],{"type":51,"value":435},{"type":45,"tag":420,"props":810,"children":811},{"style":462},[812],{"type":51,"value":500},{"type":45,"tag":420,"props":814,"children":815},{"style":427},[816],{"type":51,"value":445},{"type":45,"tag":420,"props":818,"children":819},{"style":427},[820],{"type":51,"value":450},{"type":45,"tag":420,"props":822,"children":823},{"style":427},[824],{"type":51,"value":435},{"type":45,"tag":420,"props":826,"children":827},{"style":480},[828],{"type":51,"value":829},"\u003Casset ID>",{"type":45,"tag":420,"props":831,"children":832},{"style":427},[833],{"type":51,"value":445},{"type":45,"tag":420,"props":835,"children":836},{"style":427},[837],{"type":51,"value":531},{"type":45,"tag":420,"props":839,"children":841},{"class":422,"line":840},4,[842],{"type":45,"tag":420,"props":843,"children":844},{"style":427},[845],{"type":51,"value":846},"}\n",{"type":45,"tag":614,"props":848,"children":849},{"start":750},[850],{"type":45,"tag":83,"props":851,"children":852},{},[853,855,860,862,868],{"type":51,"value":854},"Call ",{"type":45,"tag":161,"props":856,"children":858},{"className":857},[],[859],{"type":51,"value":598},{"type":51,"value":861}," with the template ID, data payload, and a descriptive title using the row number or a meaningful column value (e.g. ",{"type":45,"tag":161,"props":863,"children":865},{"className":864},[],[866],{"type":51,"value":867},"\"Bulk Design - Row 3 - \u003Cidentifier>\"",{"type":51,"value":869},").",{"type":45,"tag":54,"props":871,"children":872},{},[873],{"type":51,"value":874},"Track results as you go:",{"type":45,"tag":154,"props":876,"children":879},{"className":877,"code":878,"language":51},[157],"Row 1 \u002F 50: Created — \u003Cdesign_url>\nRow 2 \u002F 50: Created — \u003Cdesign_url>\nRow 3 \u002F 50: Failed — \u003Cerror>\n",[880],{"type":45,"tag":161,"props":881,"children":882},{"__ignoreMap":163},[883],{"type":51,"value":878},{"type":45,"tag":67,"props":885,"children":887},{"id":886},"step-6-report-results",[888],{"type":51,"value":889},"Step 6: Report Results",{"type":45,"tag":54,"props":891,"children":892},{},[893],{"type":51,"value":894},"After all rows are processed, summarise:",{"type":45,"tag":79,"props":896,"children":897},{},[898,903,908],{"type":45,"tag":83,"props":899,"children":900},{},[901],{"type":51,"value":902},"Total rows attempted",{"type":45,"tag":83,"props":904,"children":905},{},[906],{"type":51,"value":907},"Successes (with links)",{"type":45,"tag":83,"props":909,"children":910},{},[911],{"type":51,"value":912},"Failures (with row number and reason)",{"type":45,"tag":54,"props":914,"children":915},{},[916,918,924,926,932,933,939,940,946],{"type":51,"value":917},"Offer to save a summary CSV with columns: ",{"type":45,"tag":161,"props":919,"children":921},{"className":920},[],[922],{"type":51,"value":923},"row",{"type":51,"value":925},", ",{"type":45,"tag":161,"props":927,"children":929},{"className":928},[],[930],{"type":51,"value":931},"status",{"type":51,"value":925},{"type":45,"tag":161,"props":934,"children":936},{"className":935},[],[937],{"type":51,"value":938},"design_url",{"type":51,"value":925},{"type":45,"tag":161,"props":941,"children":943},{"className":942},[],[944],{"type":51,"value":945},"error",{"type":51,"value":947},".",{"type":45,"tag":60,"props":949,"children":951},{"id":950},"notes",[952],{"type":51,"value":234},{"type":45,"tag":79,"props":954,"children":955},{},[956,961,966,971,976,981,993,998],{"type":45,"tag":83,"props":957,"children":958},{},[959],{"type":51,"value":960},"Autofill requires a Canva Enterprise plan.",{"type":45,"tag":83,"props":962,"children":963},{},[964],{"type":51,"value":965},"For large CSVs (50+ rows), warn the user upfront that this will make N API calls and may take a while. Offer to do a test run on the first 3 rows before proceeding with the full batch.",{"type":45,"tag":83,"props":967,"children":968},{},[969],{"type":51,"value":970},"If some rows fail, continue with the rest — don't abort the whole batch.",{"type":45,"tag":83,"props":972,"children":973},{},[974],{"type":51,"value":975},"Skip rows where all mapped fields are empty and warn the user about them.",{"type":45,"tag":83,"props":977,"children":978},{},[979],{"type":51,"value":980},"If no CSV column matches a required template field, ask the user to confirm which column to use or whether to skip that field.",{"type":45,"tag":83,"props":982,"children":983},{},[984,986,992],{"type":51,"value":985},"Template field names are case-sensitive in the API — use the exact keys from ",{"type":45,"tag":161,"props":987,"children":989},{"className":988},[],[990],{"type":51,"value":991},"get-brand-template-dataset",{"type":51,"value":947},{"type":45,"tag":83,"props":994,"children":995},{},[996],{"type":51,"value":997},"There is no \"undo bulk create\" — warn the user before starting large runs.",{"type":45,"tag":83,"props":999,"children":1000},{},[1001],{"type":51,"value":1002},"Designs created this way are full Canva designs the user can further edit in their account.",{"type":45,"tag":1004,"props":1005,"children":1006},"style",{},[1007],{"type":51,"value":1008},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1010,"total":1213},[1011,1032,1055,1072,1088,1107,1126,1140,1156,1170,1182,1197],{"slug":1012,"name":1012,"fn":1013,"description":1014,"org":1015,"tags":1016,"stars":1029,"repoUrl":1030,"updatedAt":1031},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1017,1020,1023,1026],{"name":1018,"slug":1019,"type":15},"Documents","documents",{"name":1021,"slug":1022,"type":15},"Healthcare","healthcare",{"name":1024,"slug":1025,"type":15},"Insurance","insurance",{"name":1027,"slug":1028,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-08-02T05:48:07.395855",{"slug":1033,"name":1033,"fn":1034,"description":1035,"org":1036,"tags":1037,"stars":1052,"repoUrl":1053,"updatedAt":1054},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1038,1041,1043,1046,1049],{"name":1039,"slug":1040,"type":15},".NET","dotnet",{"name":1042,"slug":1033,"type":15},"ASP.NET Core",{"name":1044,"slug":1045,"type":15},"Blazor","blazor",{"name":1047,"slug":1048,"type":15},"C#","csharp",{"name":1050,"slug":1051,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1056,"name":1056,"fn":1057,"description":1058,"org":1059,"tags":1060,"stars":1052,"repoUrl":1053,"updatedAt":1071},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1061,1064,1067,1070],{"name":1062,"slug":1063,"type":15},"Apps SDK","apps-sdk",{"name":1065,"slug":1066,"type":15},"ChatGPT","chatgpt",{"name":1068,"slug":1069,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1073,"name":1073,"fn":1074,"description":1075,"org":1076,"tags":1077,"stars":1052,"repoUrl":1053,"updatedAt":1087},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1078,1081,1084],{"name":1079,"slug":1080,"type":15},"API Development","api-development",{"name":1082,"slug":1083,"type":15},"CLI","cli",{"name":1085,"slug":1086,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1089,"name":1089,"fn":1090,"description":1091,"org":1092,"tags":1093,"stars":1052,"repoUrl":1053,"updatedAt":1106},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1094,1097,1100,1103],{"name":1095,"slug":1096,"type":15},"Cloudflare","cloudflare",{"name":1098,"slug":1099,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1101,"slug":1102,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1104,"slug":1105,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1108,"name":1108,"fn":1109,"description":1110,"org":1111,"tags":1112,"stars":1052,"repoUrl":1053,"updatedAt":1125},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1113,1116,1119,1122],{"name":1114,"slug":1115,"type":15},"Productivity","productivity",{"name":1117,"slug":1118,"type":15},"Project Management","project-management",{"name":1120,"slug":1121,"type":15},"Strategy","strategy",{"name":1123,"slug":1124,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1127,"name":1127,"fn":1128,"description":1129,"org":1130,"tags":1131,"stars":1052,"repoUrl":1053,"updatedAt":1139},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1132,1133,1135,1138],{"name":26,"slug":27,"type":15},{"name":1134,"slug":1127,"type":15},"Figma",{"name":1136,"slug":1137,"type":15},"Frontend","frontend",{"name":1068,"slug":1069,"type":15},"2026-04-12T05:06:47.939943",{"slug":1141,"name":1141,"fn":1142,"description":1143,"org":1144,"tags":1145,"stars":1052,"repoUrl":1053,"updatedAt":1155},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1146,1147,1150,1151,1152],{"name":26,"slug":27,"type":15},{"name":1148,"slug":1149,"type":15},"Design System","design-system",{"name":1134,"slug":1127,"type":15},{"name":1136,"slug":1137,"type":15},{"name":1153,"slug":1154,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1157,"name":1157,"fn":1158,"description":1159,"org":1160,"tags":1161,"stars":1052,"repoUrl":1053,"updatedAt":1169},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1162,1163,1164,1167,1168],{"name":26,"slug":27,"type":15},{"name":1148,"slug":1149,"type":15},{"name":1165,"slug":1166,"type":15},"Documentation","documentation",{"name":1134,"slug":1127,"type":15},{"name":1136,"slug":1137,"type":15},"2026-05-16T06:07:47.821474",{"slug":1171,"name":1171,"fn":1172,"description":1173,"org":1174,"tags":1175,"stars":1052,"repoUrl":1053,"updatedAt":1181},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1176,1177,1178,1179,1180],{"name":26,"slug":27,"type":15},{"name":1134,"slug":1127,"type":15},{"name":1136,"slug":1137,"type":15},{"name":1153,"slug":1154,"type":15},{"name":1050,"slug":1051,"type":15},"2026-05-16T06:07:40.583615",{"slug":1183,"name":1183,"fn":1184,"description":1185,"org":1186,"tags":1187,"stars":1052,"repoUrl":1053,"updatedAt":1196},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1188,1191,1192,1195],{"name":1189,"slug":1190,"type":15},"Animation","animation",{"name":1085,"slug":1086,"type":15},{"name":1193,"slug":1194,"type":15},"Creative","creative",{"name":26,"slug":27,"type":15},"2026-05-02T05:31:48.48485",{"slug":1198,"name":1198,"fn":1199,"description":1200,"org":1201,"tags":1202,"stars":1052,"repoUrl":1053,"updatedAt":1212},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1203,1204,1205,1208,1211],{"name":1193,"slug":1194,"type":15},{"name":26,"slug":27,"type":15},{"name":1206,"slug":1207,"type":15},"Image Generation","image-generation",{"name":1209,"slug":1210,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",578,{"items":1215,"total":1309},[1216,1233,1247,1259,1274,1285,1297],{"slug":1217,"name":1217,"fn":1218,"description":1219,"org":1220,"tags":1221,"stars":28,"repoUrl":29,"updatedAt":1232},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1222,1225,1228,1231],{"name":1223,"slug":1224,"type":15},"Accessibility","accessibility",{"name":1226,"slug":1227,"type":15},"Charts","charts",{"name":1229,"slug":1230,"type":15},"Data Visualization","data-visualization",{"name":26,"slug":27,"type":15},"2026-06-30T19:00:57.102",{"slug":1234,"name":1234,"fn":1235,"description":1236,"org":1237,"tags":1238,"stars":28,"repoUrl":29,"updatedAt":1246},"adobe-batch-edit-photos","apply consistent photo adjustments","Apply consistent photo adjustments across a set of images so they look like they were edited together. Use this skill whenever the user says \"make my photos look cohesive\", \"give all these the same style\", \"apply a warm and golden feel to all of these\", \"make this cinematic\", \"match the look across my photos\", \"edit all my travel photos the same way\", \"batch edit these\", \"make these consistent\", \"fix my phone photos\", or uploads a folder of photos and wants a unified, polished result. Also triggers for requests like \"apply a preset to all of these\", \"make these look professional\", or \"they were shot in mixed lighting — can you fix them all\". Outputs direct final image URLs plus an in-chat preview grid and optional Firefly Board link. Access: 🔐 Signed-In required | Gen AI: ❌\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1239,1240,1243],{"name":1193,"slug":1194,"type":15},{"name":1241,"slug":1242,"type":15},"Editing","editing",{"name":1244,"slug":1245,"type":15},"Imaging","imaging","2026-08-28T15:09:11.185865",{"slug":1248,"name":1248,"fn":1249,"description":1250,"org":1251,"tags":1252,"stars":28,"repoUrl":29,"updatedAt":1258},"adobe-create-mockups","create product and scene mockups","Use when a user wants to see their logo, design, or sketch on a product or scene mockup — mugs, t-shirts, business cards, hats, phone screens, posters, billboards, or similar. Triggers on \"create mockups\", \"show my logo on products\", or any logo upload with a request to visualize it on items. Access: 🔐 Signed-In required | Gen AI: ✅ Adobe Firefly via `image_generate` used for design creation, sketch polishing, and mockup scene generation\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1253,1254,1255],{"name":1193,"slug":1194,"type":15},{"name":26,"slug":27,"type":15},{"name":1256,"slug":1257,"type":15},"Graphics","graphics","2026-08-28T15:09:07.42507",{"slug":1260,"name":1260,"fn":1261,"description":1262,"org":1263,"tags":1264,"stars":28,"repoUrl":29,"updatedAt":1273},"adobe-create-social-variations","export platform-ready social media assets","Resize, crop, or export any image or video into platform-ready social media assets using Adobe Creative Cloud tools. Use this skill when a user wants to prepare a photo, image, or video for one or more social platforms — Instagram, TikTok, LinkedIn, Facebook, YouTube, Snapchat, Pinterest, Threads, or X\u002FTwitter. Triggers on: \"prepare my image for Instagram\", \"resize for TikTok\", \"get this ready to post\", \"make versions for all platforms\", \"social media sizes\", \"crop for stories\", \"export for LinkedIn\", \"resize my video for social\", \"make social media assets\", or any request to adapt a photo or video for specific platforms. Handles subject-aware cropping, AI canvas expansion, test previews before full runs, and same-ratio video resizing.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1265,1266,1267,1270],{"name":1193,"slug":1194,"type":15},{"name":1256,"slug":1257,"type":15},{"name":1268,"slug":1269,"type":15},"Marketing","marketing",{"name":1271,"slug":1272,"type":15},"Social Media","social-media","2026-08-28T15:10:07.282096",{"slug":1275,"name":1275,"fn":1276,"description":1277,"org":1278,"tags":1279,"stars":28,"repoUrl":29,"updatedAt":1284},"adobe-design-from-template","create visual designs from templates","Create any visual design using Adobe Express templates — flyers, posters, social media posts (Instagram, Facebook, LinkedIn), business cards, invitations, greeting cards, resumes, cover letters, brochures, newsletters, certificates, presentations, YouTube thumbnails, email headers, logos, menus, and labels. Use this skill whenever the user wants to make, design, or build any visual — even if they just say \"make me a flyer\", \"design a poster\", \"I need something for Instagram\", \"create an event invite\", or \"make a business card\". Also handles browsing templates, editing text, replacing images, changing backgrounds, animating, and exporting designs. Access: 🔐 Signed-In required | Gen AI: ❌ by default — image replacement only where the surface permits generative AI (e.g. Codex); none on Claude\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1280,1281,1282,1283],{"name":1193,"slug":1194,"type":15},{"name":26,"slug":27,"type":15},{"name":1256,"slug":1257,"type":15},{"name":23,"slug":24,"type":15},"2026-08-28T15:10:03.050113",{"slug":1286,"name":1286,"fn":1287,"description":1288,"org":1289,"tags":1290,"stars":28,"repoUrl":29,"updatedAt":1296},"adobe-edit-quick-cut","create video sizzle reels","Create a punchy sizzle reel from a video using Adobe Quick Cut. Use this skill whenever a user wants to cut, trim, or shorten a video into highlights — including phrases like \"make a sizzle reel\", \"make a highlight reel\", \"quick cut this\", \"cut the best parts\", \"shorten this video\", \"make a highlight clip\", \"summarize this video visually\", or any request to produce a shorter edited version of a video. Use this skill for Quick Cut requests before suggesting manual editing in Premiere. Requires the user to upload a video file.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1291,1292,1293],{"name":1193,"slug":1194,"type":15},{"name":1241,"slug":1242,"type":15},{"name":1294,"slug":1295,"type":15},"Video","video","2026-08-28T15:09:07.765245",{"slug":1298,"name":1298,"fn":1299,"description":1300,"org":1301,"tags":1302,"stars":28,"repoUrl":29,"updatedAt":1308},"adobe-retouch-portraits","batch retouch portrait photos","Bulk-retouch a folder of portrait photos using Adobe tools — designed for wedding photographers and event photographers who need fast, walk-away batch processing. Use this skill when the user says \"retouch my photos\", \"batch process these portraits\", \"process my wedding photos\", \"clean up this folder of images\", \"run my headshots through Adobe\", or uploads\u002Fselects a folder of photos and wants them polished and ready to review. Automatically applies auto-straighten, auto-tone, and auto-light to every image. Outputs a preview grid and download folder. Access: 🔐 Signed-In required | Gen AI: ❌ by default — optional background-only cleanup only where the surface permits generative AI (e.g. Codex); none on Claude\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1303,1304,1305],{"name":1193,"slug":1194,"type":15},{"name":1244,"slug":1245,"type":15},{"name":1306,"slug":1307,"type":15},"Photography","photography","2026-08-28T15:09:10.386974",499]