[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-canva-brand-check":3,"mdc--m3im3x-key":36,"related-org-openai-canva-brand-check":514,"related-repo-openai-canva-brand-check":719},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"canva-brand-check","check Canva designs against brand guidelines","Check a Canva design against a brand kit and report where it diverges — off-palette colors, non-brand fonts, logo misuse, and off-tone copy. Read-only; makes no changes. Use when the user asks \"is this on brand\", \"check this against our brand kit\", \"do a brand review\", \"does this match our brand guidelines\", or \"brand-check my design\".",{"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],{"name":13,"slug":14,"type":15},"Audit","audit","tag",{"name":17,"slug":18,"type":15},"Canva","canva",{"name":20,"slug":21,"type":15},"Branding","branding",{"name":23,"slug":24,"type":15},"Design","design",4888,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-08-28T15:09:59.255828",null,661,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fcanva\u002Fskills\u002Fcanva-brand-check","---\nname: canva-brand-check\ndescription: Check a Canva design against a brand kit and report where it diverges — off-palette colors, non-brand fonts, logo misuse, and off-tone copy. Read-only; makes no changes. Use when the user asks \"is this on brand\", \"check this against our brand kit\", \"do a brand review\", \"does this match our brand guidelines\", or \"brand-check my design\".\n---\n\n# Brand Checker\n\nCompare a design against the user's brand kit and report, point by point, where it follows the brand and where it drifts. This is a specialised, brand-aware version of `canva-design-feedback`: same read-only \"read the design, then critique\" core, but the rubric is the brand kit. It **never edits** the design.\n\n## The brand-kit data gap — read this first\n\n`Canva:list-brand-kits` is documented to return brand kit **IDs, names, and thumbnails**. It may NOT return the machine-readable palette (hex values) and font families. Your approach depends on what you actually get back:\n\n- **If the kit exposes colors\u002Ffonts** → use those exact hex codes and font names as the rubric (precise check).\n- **If it only exposes a thumbnail\u002Fname** → you cannot do an exact hex\u002Ffont match. Fall back to a **visual** comparison against the kit thumbnail, and ASK the user to paste their brand colors (hex) and fonts so you can check precisely. Be explicit that, without those, the color\u002Ffont findings are approximate.\n\nNever invent brand colors or fonts. If you don't have the real values, say so.\n\n## Reading the design's actual colors and fonts\n\n`Canva:get-design-content` returns text only — not colors or fonts.\n\n- A **read-only** editing transaction (`Canva:start-editing-transaction` → inspect → `Canva:cancel-editing-transaction`, always cancel) reliably gives element **text, positions, and sizes**.\n- **Colors and fonts are NOT reliably exposed** by the transaction — tested: it often returns only text + position + dimension, with no color\u002Ffont attributes. So the **thumbnail is your primary evidence** for color and typography. Use any style data the payload happens to include, but never assert a design's hex or font as fact unless it was actually in the payload.\n\nBecause both the brand kit (see the gap above) AND the design itself frequently lack machine-readable colors\u002Ffonts, brand-check is often a **visual** comparison (design thumbnail vs. brand-kit thumbnail) plus the user-supplied palette\u002Ffonts. Use `Canva:get-design-thumbnail` for logo placement and overall visual tone.\n\n## Workflow\n\n### Step 1: Resolve the design\nShort link → `Canva:resolve-shortlink`; full URL → extract ID; raw `D...` ID → use directly; otherwise ask.\n\n### Step 2: Get the brand kit\n- `Canva:list-brand-kits`. If several, ask which one (or infer from team\u002Fcontext).\n- Capture whatever the kit exposes (name, thumbnail, and colors\u002Ffonts if present).\n- Apply the data-gap handling above. If scopes are missing (e.g. \"Missing scopes: [brandkit:read]\"), tell the user to disconnect and reconnect the Canva connector to refresh the token.\n\n### Step 3: Read the design\n- `Canva:get-design-thumbnail` for visual\u002Flogo\u002Ftone.\n- Read-only transaction (start → inspect → cancel) for the actual colors and fonts in use.\n\n### Step 4: Compare against the brand\nCheck each dimension and mark **On brand \u002F Off brand \u002F Can't verify**:\n\n- **Color** — are fills\u002Ftext\u002Faccents within the brand palette? Flag off-palette hexes (and the nearest brand color).\n- **Typography** — do fonts match brand fonts? Flag non-brand families and inconsistent sizing\u002Fweight usage.\n- **Logo** — present where expected, correct version, not stretched\u002Frecolored\u002Fcrowded (visual check from thumbnail).\n- **Tone & copy** — does the wording match the brand voice the user describes?\n- **Consistency** — is brand application consistent across all pages?\n\nUse **Can't verify** honestly whenever the kit didn't expose the data and the user hasn't supplied it.\n\n### Step 5: Report\n```\n## Brand check — \"\u003Cdesign title>\" vs \"\u003Cbrand kit name>\"\n\nOverall: ⚠️ Mostly on brand, 3 issues\n\n### Off brand\n- [Color] Page 2 heading is #1A73E8 — not in palette. Nearest brand color: #0B5CD7.\n- [Font] Page 4 body uses Arial; brand body font is Inter.\n\n### Can't verify (need input)\n- Brand kit didn't expose hex values. Paste your palette + fonts for an exact check,\n  or confirm the colors above against your guidelines.\n\n### On brand\n- Logo placement and cover treatment match the kit.\n```\n\n### Step 6: Offer to fix\nOffer to correct the API-fixable issues via **`canva-edit-design`** — note that the API can change **text color** and font **size\u002Fweight\u002Fstyle**, but CANNOT change font **family** or background colors (those are manual in Canva; see `canva-edit-design`).\n\n## Rules\n- Read-only: always `cancel-editing-transaction` after inspecting. Never commit.\n- Never fabricate brand values — use the kit's real data or what the user provides, otherwise mark **Can't verify**.\n- Always name the specific page\u002Felement and the offending value vs. the brand value.\n- Distinguish hard violations (wrong logo, off-palette color) from soft ones (slightly inconsistent spacing).\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,73,80,98,130,135,141,152,207,226,232,239,260,266,297,303,321,327,339,392,404,410,422,428,472,478],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"brand-checker",[47],{"type":48,"value":49},"text","Brand Checker",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54,56,63,65,71],{"type":48,"value":55},"Compare a design against the user's brand kit and report, point by point, where it follows the brand and where it drifts. This is a specialised, brand-aware version of ",{"type":42,"tag":57,"props":58,"children":60},"code",{"className":59},[],[61],{"type":48,"value":62},"canva-design-feedback",{"type":48,"value":64},": same read-only \"read the design, then critique\" core, but the rubric is the brand kit. It ",{"type":42,"tag":66,"props":67,"children":68},"strong",{},[69],{"type":48,"value":70},"never edits",{"type":48,"value":72}," the design.",{"type":42,"tag":74,"props":75,"children":77},"h2",{"id":76},"the-brand-kit-data-gap-read-this-first",[78],{"type":48,"value":79},"The brand-kit data gap — read this first",{"type":42,"tag":51,"props":81,"children":82},{},[83,89,91,96],{"type":42,"tag":57,"props":84,"children":86},{"className":85},[],[87],{"type":48,"value":88},"Canva:list-brand-kits",{"type":48,"value":90}," is documented to return brand kit ",{"type":42,"tag":66,"props":92,"children":93},{},[94],{"type":48,"value":95},"IDs, names, and thumbnails",{"type":48,"value":97},". It may NOT return the machine-readable palette (hex values) and font families. Your approach depends on what you actually get back:",{"type":42,"tag":99,"props":100,"children":101},"ul",{},[102,113],{"type":42,"tag":103,"props":104,"children":105},"li",{},[106,111],{"type":42,"tag":66,"props":107,"children":108},{},[109],{"type":48,"value":110},"If the kit exposes colors\u002Ffonts",{"type":48,"value":112}," → use those exact hex codes and font names as the rubric (precise check).",{"type":42,"tag":103,"props":114,"children":115},{},[116,121,123,128],{"type":42,"tag":66,"props":117,"children":118},{},[119],{"type":48,"value":120},"If it only exposes a thumbnail\u002Fname",{"type":48,"value":122}," → you cannot do an exact hex\u002Ffont match. Fall back to a ",{"type":42,"tag":66,"props":124,"children":125},{},[126],{"type":48,"value":127},"visual",{"type":48,"value":129}," comparison against the kit thumbnail, and ASK the user to paste their brand colors (hex) and fonts so you can check precisely. Be explicit that, without those, the color\u002Ffont findings are approximate.",{"type":42,"tag":51,"props":131,"children":132},{},[133],{"type":48,"value":134},"Never invent brand colors or fonts. If you don't have the real values, say so.",{"type":42,"tag":74,"props":136,"children":138},{"id":137},"reading-the-designs-actual-colors-and-fonts",[139],{"type":48,"value":140},"Reading the design's actual colors and fonts",{"type":42,"tag":51,"props":142,"children":143},{},[144,150],{"type":42,"tag":57,"props":145,"children":147},{"className":146},[],[148],{"type":48,"value":149},"Canva:get-design-content",{"type":48,"value":151}," returns text only — not colors or fonts.",{"type":42,"tag":99,"props":153,"children":154},{},[155,190],{"type":42,"tag":103,"props":156,"children":157},{},[158,160,165,167,173,175,181,183,188],{"type":48,"value":159},"A ",{"type":42,"tag":66,"props":161,"children":162},{},[163],{"type":48,"value":164},"read-only",{"type":48,"value":166}," editing transaction (",{"type":42,"tag":57,"props":168,"children":170},{"className":169},[],[171],{"type":48,"value":172},"Canva:start-editing-transaction",{"type":48,"value":174}," → inspect → ",{"type":42,"tag":57,"props":176,"children":178},{"className":177},[],[179],{"type":48,"value":180},"Canva:cancel-editing-transaction",{"type":48,"value":182},", always cancel) reliably gives element ",{"type":42,"tag":66,"props":184,"children":185},{},[186],{"type":48,"value":187},"text, positions, and sizes",{"type":48,"value":189},".",{"type":42,"tag":103,"props":191,"children":192},{},[193,198,200,205],{"type":42,"tag":66,"props":194,"children":195},{},[196],{"type":48,"value":197},"Colors and fonts are NOT reliably exposed",{"type":48,"value":199}," by the transaction — tested: it often returns only text + position + dimension, with no color\u002Ffont attributes. So the ",{"type":42,"tag":66,"props":201,"children":202},{},[203],{"type":48,"value":204},"thumbnail is your primary evidence",{"type":48,"value":206}," for color and typography. Use any style data the payload happens to include, but never assert a design's hex or font as fact unless it was actually in the payload.",{"type":42,"tag":51,"props":208,"children":209},{},[210,212,216,218,224],{"type":48,"value":211},"Because both the brand kit (see the gap above) AND the design itself frequently lack machine-readable colors\u002Ffonts, brand-check is often a ",{"type":42,"tag":66,"props":213,"children":214},{},[215],{"type":48,"value":127},{"type":48,"value":217}," comparison (design thumbnail vs. brand-kit thumbnail) plus the user-supplied palette\u002Ffonts. Use ",{"type":42,"tag":57,"props":219,"children":221},{"className":220},[],[222],{"type":48,"value":223},"Canva:get-design-thumbnail",{"type":48,"value":225}," for logo placement and overall visual tone.",{"type":42,"tag":74,"props":227,"children":229},{"id":228},"workflow",[230],{"type":48,"value":231},"Workflow",{"type":42,"tag":233,"props":234,"children":236},"h3",{"id":235},"step-1-resolve-the-design",[237],{"type":48,"value":238},"Step 1: Resolve the design",{"type":42,"tag":51,"props":240,"children":241},{},[242,244,250,252,258],{"type":48,"value":243},"Short link → ",{"type":42,"tag":57,"props":245,"children":247},{"className":246},[],[248],{"type":48,"value":249},"Canva:resolve-shortlink",{"type":48,"value":251},"; full URL → extract ID; raw ",{"type":42,"tag":57,"props":253,"children":255},{"className":254},[],[256],{"type":48,"value":257},"D...",{"type":48,"value":259}," ID → use directly; otherwise ask.",{"type":42,"tag":233,"props":261,"children":263},{"id":262},"step-2-get-the-brand-kit",[264],{"type":48,"value":265},"Step 2: Get the brand kit",{"type":42,"tag":99,"props":267,"children":268},{},[269,279,284],{"type":42,"tag":103,"props":270,"children":271},{},[272,277],{"type":42,"tag":57,"props":273,"children":275},{"className":274},[],[276],{"type":48,"value":88},{"type":48,"value":278},". If several, ask which one (or infer from team\u002Fcontext).",{"type":42,"tag":103,"props":280,"children":281},{},[282],{"type":48,"value":283},"Capture whatever the kit exposes (name, thumbnail, and colors\u002Ffonts if present).",{"type":42,"tag":103,"props":285,"children":286},{},[287,289,295],{"type":48,"value":288},"Apply the data-gap handling above. If scopes are missing (e.g. \"Missing scopes: ",{"type":42,"tag":290,"props":291,"children":292},"span",{},[293],{"type":48,"value":294},"brandkit:read",{"type":48,"value":296},"\"), tell the user to disconnect and reconnect the Canva connector to refresh the token.",{"type":42,"tag":233,"props":298,"children":300},{"id":299},"step-3-read-the-design",[301],{"type":48,"value":302},"Step 3: Read the design",{"type":42,"tag":99,"props":304,"children":305},{},[306,316],{"type":42,"tag":103,"props":307,"children":308},{},[309,314],{"type":42,"tag":57,"props":310,"children":312},{"className":311},[],[313],{"type":48,"value":223},{"type":48,"value":315}," for visual\u002Flogo\u002Ftone.",{"type":42,"tag":103,"props":317,"children":318},{},[319],{"type":48,"value":320},"Read-only transaction (start → inspect → cancel) for the actual colors and fonts in use.",{"type":42,"tag":233,"props":322,"children":324},{"id":323},"step-4-compare-against-the-brand",[325],{"type":48,"value":326},"Step 4: Compare against the brand",{"type":42,"tag":51,"props":328,"children":329},{},[330,332,337],{"type":48,"value":331},"Check each dimension and mark ",{"type":42,"tag":66,"props":333,"children":334},{},[335],{"type":48,"value":336},"On brand \u002F Off brand \u002F Can't verify",{"type":48,"value":338},":",{"type":42,"tag":99,"props":340,"children":341},{},[342,352,362,372,382],{"type":42,"tag":103,"props":343,"children":344},{},[345,350],{"type":42,"tag":66,"props":346,"children":347},{},[348],{"type":48,"value":349},"Color",{"type":48,"value":351}," — are fills\u002Ftext\u002Faccents within the brand palette? Flag off-palette hexes (and the nearest brand color).",{"type":42,"tag":103,"props":353,"children":354},{},[355,360],{"type":42,"tag":66,"props":356,"children":357},{},[358],{"type":48,"value":359},"Typography",{"type":48,"value":361}," — do fonts match brand fonts? Flag non-brand families and inconsistent sizing\u002Fweight usage.",{"type":42,"tag":103,"props":363,"children":364},{},[365,370],{"type":42,"tag":66,"props":366,"children":367},{},[368],{"type":48,"value":369},"Logo",{"type":48,"value":371}," — present where expected, correct version, not stretched\u002Frecolored\u002Fcrowded (visual check from thumbnail).",{"type":42,"tag":103,"props":373,"children":374},{},[375,380],{"type":42,"tag":66,"props":376,"children":377},{},[378],{"type":48,"value":379},"Tone & copy",{"type":48,"value":381}," — does the wording match the brand voice the user describes?",{"type":42,"tag":103,"props":383,"children":384},{},[385,390],{"type":42,"tag":66,"props":386,"children":387},{},[388],{"type":48,"value":389},"Consistency",{"type":48,"value":391}," — is brand application consistent across all pages?",{"type":42,"tag":51,"props":393,"children":394},{},[395,397,402],{"type":48,"value":396},"Use ",{"type":42,"tag":66,"props":398,"children":399},{},[400],{"type":48,"value":401},"Can't verify",{"type":48,"value":403}," honestly whenever the kit didn't expose the data and the user hasn't supplied it.",{"type":42,"tag":233,"props":405,"children":407},{"id":406},"step-5-report",[408],{"type":48,"value":409},"Step 5: Report",{"type":42,"tag":411,"props":412,"children":416},"pre",{"className":413,"code":415,"language":48},[414],"language-text","## Brand check — \"\u003Cdesign title>\" vs \"\u003Cbrand kit name>\"\n\nOverall: ⚠️ Mostly on brand, 3 issues\n\n### Off brand\n- [Color] Page 2 heading is #1A73E8 — not in palette. Nearest brand color: #0B5CD7.\n- [Font] Page 4 body uses Arial; brand body font is Inter.\n\n### Can't verify (need input)\n- Brand kit didn't expose hex values. Paste your palette + fonts for an exact check,\n  or confirm the colors above against your guidelines.\n\n### On brand\n- Logo placement and cover treatment match the kit.\n",[417],{"type":42,"tag":57,"props":418,"children":420},{"__ignoreMap":419},"",[421],{"type":48,"value":415},{"type":42,"tag":233,"props":423,"children":425},{"id":424},"step-6-offer-to-fix",[426],{"type":48,"value":427},"Step 6: Offer to fix",{"type":42,"tag":51,"props":429,"children":430},{},[431,433,442,444,449,451,456,458,463,465,470],{"type":48,"value":432},"Offer to correct the API-fixable issues via ",{"type":42,"tag":66,"props":434,"children":435},{},[436],{"type":42,"tag":57,"props":437,"children":439},{"className":438},[],[440],{"type":48,"value":441},"canva-edit-design",{"type":48,"value":443}," — note that the API can change ",{"type":42,"tag":66,"props":445,"children":446},{},[447],{"type":48,"value":448},"text color",{"type":48,"value":450}," and font ",{"type":42,"tag":66,"props":452,"children":453},{},[454],{"type":48,"value":455},"size\u002Fweight\u002Fstyle",{"type":48,"value":457},", but CANNOT change font ",{"type":42,"tag":66,"props":459,"children":460},{},[461],{"type":48,"value":462},"family",{"type":48,"value":464}," or background colors (those are manual in Canva; see ",{"type":42,"tag":57,"props":466,"children":468},{"className":467},[],[469],{"type":48,"value":441},{"type":48,"value":471},").",{"type":42,"tag":74,"props":473,"children":475},{"id":474},"rules",[476],{"type":48,"value":477},"Rules",{"type":42,"tag":99,"props":479,"children":480},{},[481,494,504,509],{"type":42,"tag":103,"props":482,"children":483},{},[484,486,492],{"type":48,"value":485},"Read-only: always ",{"type":42,"tag":57,"props":487,"children":489},{"className":488},[],[490],{"type":48,"value":491},"cancel-editing-transaction",{"type":48,"value":493}," after inspecting. Never commit.",{"type":42,"tag":103,"props":495,"children":496},{},[497,499,503],{"type":48,"value":498},"Never fabricate brand values — use the kit's real data or what the user provides, otherwise mark ",{"type":42,"tag":66,"props":500,"children":501},{},[502],{"type":48,"value":401},{"type":48,"value":189},{"type":42,"tag":103,"props":505,"children":506},{},[507],{"type":48,"value":508},"Always name the specific page\u002Felement and the offending value vs. the brand value.",{"type":42,"tag":103,"props":510,"children":511},{},[512],{"type":48,"value":513},"Distinguish hard violations (wrong logo, off-palette color) from soft ones (slightly inconsistent spacing).",{"items":515,"total":718},[516,537,560,577,593,612,631,645,661,675,687,702],{"slug":517,"name":517,"fn":518,"description":519,"org":520,"tags":521,"stars":534,"repoUrl":535,"updatedAt":536},"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},[522,525,528,531],{"name":523,"slug":524,"type":15},"Documents","documents",{"name":526,"slug":527,"type":15},"Healthcare","healthcare",{"name":529,"slug":530,"type":15},"Insurance","insurance",{"name":532,"slug":533,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-08-02T05:48:07.395855",{"slug":538,"name":538,"fn":539,"description":540,"org":541,"tags":542,"stars":557,"repoUrl":558,"updatedAt":559},"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},[543,546,548,551,554],{"name":544,"slug":545,"type":15},".NET","dotnet",{"name":547,"slug":538,"type":15},"ASP.NET Core",{"name":549,"slug":550,"type":15},"Blazor","blazor",{"name":552,"slug":553,"type":15},"C#","csharp",{"name":555,"slug":556,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":561,"name":561,"fn":562,"description":563,"org":564,"tags":565,"stars":557,"repoUrl":558,"updatedAt":576},"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},[566,569,572,575],{"name":567,"slug":568,"type":15},"Apps SDK","apps-sdk",{"name":570,"slug":571,"type":15},"ChatGPT","chatgpt",{"name":573,"slug":574,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":578,"name":578,"fn":579,"description":580,"org":581,"tags":582,"stars":557,"repoUrl":558,"updatedAt":592},"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},[583,586,589],{"name":584,"slug":585,"type":15},"API Development","api-development",{"name":587,"slug":588,"type":15},"CLI","cli",{"name":590,"slug":591,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":594,"name":594,"fn":595,"description":596,"org":597,"tags":598,"stars":557,"repoUrl":558,"updatedAt":611},"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},[599,602,605,608],{"name":600,"slug":601,"type":15},"Cloudflare","cloudflare",{"name":603,"slug":604,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":606,"slug":607,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":609,"slug":610,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":613,"name":613,"fn":614,"description":615,"org":616,"tags":617,"stars":557,"repoUrl":558,"updatedAt":630},"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},[618,621,624,627],{"name":619,"slug":620,"type":15},"Productivity","productivity",{"name":622,"slug":623,"type":15},"Project Management","project-management",{"name":625,"slug":626,"type":15},"Strategy","strategy",{"name":628,"slug":629,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":632,"name":632,"fn":633,"description":634,"org":635,"tags":636,"stars":557,"repoUrl":558,"updatedAt":644},"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},[637,638,640,643],{"name":23,"slug":24,"type":15},{"name":639,"slug":632,"type":15},"Figma",{"name":641,"slug":642,"type":15},"Frontend","frontend",{"name":573,"slug":574,"type":15},"2026-04-12T05:06:47.939943",{"slug":646,"name":646,"fn":647,"description":648,"org":649,"tags":650,"stars":557,"repoUrl":558,"updatedAt":660},"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},[651,652,655,656,657],{"name":23,"slug":24,"type":15},{"name":653,"slug":654,"type":15},"Design System","design-system",{"name":639,"slug":632,"type":15},{"name":641,"slug":642,"type":15},{"name":658,"slug":659,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":662,"name":662,"fn":663,"description":664,"org":665,"tags":666,"stars":557,"repoUrl":558,"updatedAt":674},"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},[667,668,669,672,673],{"name":23,"slug":24,"type":15},{"name":653,"slug":654,"type":15},{"name":670,"slug":671,"type":15},"Documentation","documentation",{"name":639,"slug":632,"type":15},{"name":641,"slug":642,"type":15},"2026-05-16T06:07:47.821474",{"slug":676,"name":676,"fn":677,"description":678,"org":679,"tags":680,"stars":557,"repoUrl":558,"updatedAt":686},"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},[681,682,683,684,685],{"name":23,"slug":24,"type":15},{"name":639,"slug":632,"type":15},{"name":641,"slug":642,"type":15},{"name":658,"slug":659,"type":15},{"name":555,"slug":556,"type":15},"2026-05-16T06:07:40.583615",{"slug":688,"name":688,"fn":689,"description":690,"org":691,"tags":692,"stars":557,"repoUrl":558,"updatedAt":701},"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},[693,696,697,700],{"name":694,"slug":695,"type":15},"Animation","animation",{"name":590,"slug":591,"type":15},{"name":698,"slug":699,"type":15},"Creative","creative",{"name":23,"slug":24,"type":15},"2026-05-02T05:31:48.48485",{"slug":703,"name":703,"fn":704,"description":705,"org":706,"tags":707,"stars":557,"repoUrl":558,"updatedAt":717},"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},[708,709,710,713,716],{"name":698,"slug":699,"type":15},{"name":23,"slug":24,"type":15},{"name":711,"slug":712,"type":15},"Image Generation","image-generation",{"name":714,"slug":715,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",578,{"items":720,"total":816},[721,738,752,764,779,792,804],{"slug":722,"name":722,"fn":723,"description":724,"org":725,"tags":726,"stars":25,"repoUrl":26,"updatedAt":737},"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},[727,730,733,736],{"name":728,"slug":729,"type":15},"Accessibility","accessibility",{"name":731,"slug":732,"type":15},"Charts","charts",{"name":734,"slug":735,"type":15},"Data Visualization","data-visualization",{"name":23,"slug":24,"type":15},"2026-06-30T19:00:57.102",{"slug":739,"name":739,"fn":740,"description":741,"org":742,"tags":743,"stars":25,"repoUrl":26,"updatedAt":751},"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},[744,745,748],{"name":698,"slug":699,"type":15},{"name":746,"slug":747,"type":15},"Editing","editing",{"name":749,"slug":750,"type":15},"Imaging","imaging","2026-08-28T15:09:11.185865",{"slug":753,"name":753,"fn":754,"description":755,"org":756,"tags":757,"stars":25,"repoUrl":26,"updatedAt":763},"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},[758,759,760],{"name":698,"slug":699,"type":15},{"name":23,"slug":24,"type":15},{"name":761,"slug":762,"type":15},"Graphics","graphics","2026-08-28T15:09:07.42507",{"slug":765,"name":765,"fn":766,"description":767,"org":768,"tags":769,"stars":25,"repoUrl":26,"updatedAt":778},"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},[770,771,772,775],{"name":698,"slug":699,"type":15},{"name":761,"slug":762,"type":15},{"name":773,"slug":774,"type":15},"Marketing","marketing",{"name":776,"slug":777,"type":15},"Social Media","social-media","2026-08-28T15:10:07.282096",{"slug":780,"name":780,"fn":781,"description":782,"org":783,"tags":784,"stars":25,"repoUrl":26,"updatedAt":791},"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},[785,786,787,788],{"name":698,"slug":699,"type":15},{"name":23,"slug":24,"type":15},{"name":761,"slug":762,"type":15},{"name":789,"slug":790,"type":15},"Templates","templates","2026-08-28T15:10:03.050113",{"slug":793,"name":793,"fn":794,"description":795,"org":796,"tags":797,"stars":25,"repoUrl":26,"updatedAt":803},"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},[798,799,800],{"name":698,"slug":699,"type":15},{"name":746,"slug":747,"type":15},{"name":801,"slug":802,"type":15},"Video","video","2026-08-28T15:09:07.765245",{"slug":805,"name":805,"fn":806,"description":807,"org":808,"tags":809,"stars":25,"repoUrl":26,"updatedAt":815},"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},[810,811,812],{"name":698,"slug":699,"type":15},{"name":749,"slug":750,"type":15},{"name":813,"slug":814,"type":15},"Photography","photography","2026-08-28T15:09:10.386974",499]