[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-deepnote-notebook-editing":3,"mdc-ojytjk-key":39,"related-repo-openai-deepnote-notebook-editing":1037,"related-org-openai-deepnote-notebook-editing":1160},{"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},"deepnote-notebook-editing","edit Deepnote notebooks and blocks","Use when creating Deepnote projects or notebooks, adding or updating blocks or cells, moving existing blocks, scaffolding notebook content, inserting SQL\u002Fcode\u002Fmarkdown\u002Finput blocks, or otherwise editing notebook structure through the Deepnote app tools.",{"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},"Data Analysis","data-analysis","tag",{"name":17,"slug":18,"type":15},"Python","python",{"name":20,"slug":21,"type":15},"SQL","sql",{"name":23,"slug":24,"type":15},"Notebooks","notebooks",{"name":26,"slug":27,"type":15},"Jupyter","jupyter",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fdeepnote\u002Fskills\u002Fdeepnote-notebook-editing","---\nname: deepnote-notebook-editing\ndescription: Use when creating Deepnote projects or notebooks, adding or updating blocks or cells, moving existing blocks, scaffolding notebook content, inserting SQL\u002Fcode\u002Fmarkdown\u002Finput blocks, or otherwise editing notebook structure through the Deepnote app tools.\n---\n\n# Deepnote Notebook Editing\n\n## When To Use\n\nUse this skill when the user asks to create a Deepnote project, create a notebook, add a block or cell, update an existing block or cell, move or reorder existing blocks, scaffold starter notebook content, insert code, SQL, markdown, or input blocks, or make a structural notebook edit supported by the current Deepnote app write tools.\n\nThis workflow requires the connected Deepnote app to expose the write tools needed for the requested edit. Use `create_project`, `create_notebook`, and `create_block` for creation workflows; use `update_block` for changing existing block content or SQL integration; use `reorder_notebook_blocks` for moving existing blocks. If the required tool is not visible in the current session, do not claim editing support; explain which app tool is missing.\n\nThe editing surface covered by this skill is:\n\n- `create_project`: create a new project. Requires `name`; accepts optional `folderId`.\n- `create_notebook`: create an empty notebook in a project. Requires `projectId`; accepts optional `name`.\n- `create_block`: create a block in a notebook. Requires `notebookId` and `type`; accepts optional `content`, `metadata`, `position`, `includeNotebookBlockIds`, and SQL-only `integrationId`.\n- `update_block`: update an existing block. Requires `blockId`; accepts `content`, SQL-only `integrationId`, or both. At least one of `content` or `integrationId` is required.\n- `reorder_notebook_blocks`: move one or more existing blocks in a notebook. Requires `notebookId`, non-empty unique `blockIds` in the desired moved-block order, and `placement`.\n\n## Editing Workflow\n\n1. Resolve ambiguous names and IDs before writing. Use `get_me` for workspace identity, `search` or `list_projects` for projects\u002Fnotebooks, `get_notebook` for current block order, and `list_integrations` for SQL connections.\n2. Treat `create_project`, `create_notebook`, and `create_block` as non-idempotent. Repeating the same call creates another resource.\n3. Use `create_project` only when the user wants a new project. A created project includes a default empty notebook; if the workflow later calls `create_notebook`, the new `create_notebook` result becomes the active notebook for blocks, verification, links, and run prompts.\n4. Use `create_notebook` only when adding an empty notebook to a project. It does not accept starter blocks; capture the returned notebook ID and create blocks afterward with `create_block` in that exact notebook.\n5. Use `create_block` for each new block. Omit `position` to append, or pass a zero-based `position` when placement matters.\n6. Use `update_block` when changing an existing block. It updates content and\u002For SQL integration in place; it does not create a new block.\n7. Pass `includeNotebookBlockIds: true` when the final block order matters, especially for ordered inserts or multi-block scaffolds.\n8. Use `reorder_notebook_blocks` when moving existing blocks. It preserves the relative order of blocks omitted from `blockIds` and returns the final active block order.\n9. Verify meaningful edits with `get_notebook` after block creation, block update, or block reordering when order, integration attachment, or multi-block content matters.\n10. Do not run the notebook after editing unless the user explicitly asks for execution or confirms a final run prompt. After creating or scaffolding a notebook, ask whether to run that exact notebook in Deepnote.\n\n## Creation Target Tracking\n\nFor creation workflows, keep one active target notebook:\n\n- If only `create_project` is called, use the default notebook created with the project as the active notebook when blocks or a notebook link are needed.\n- If `create_notebook` is called, use the notebook ID returned by `create_notebook` as the active notebook, even when the same project also has an initial default notebook.\n- Create blocks, verify with `get_notebook`, build notebook links, and ask about running against the active notebook ID. Do not link to or run the project's default notebook unless it is the active notebook.\n- When both a project link and notebook link are useful, label them separately so the notebook link points to the newly created or edited notebook.\n\n## Block Creation Guidance\n\nChoose the block `type` that matches Deepnote's block vocabulary. Common types include `code`, `sql`, `markdown`, input blocks such as `input-text`, `input-select`, `input-checkbox`, and text-cell variants such as `text-cell-h1`, `text-cell-p`, and `text-cell-callout`.\n\nFor SQL blocks:\n\n- Resolve the integration first with `list_integrations` when the user gives a connection name.\n- Pass the connection as top-level `integrationId`.\n- Do not put `sql_integration_id` inside `metadata`.\n- Do not pass `integrationId` for non-SQL blocks.\n\nFor input blocks, put block-type configuration in `metadata` and keep `content` for the visible\u002Fdefault textual content when applicable. Preserve existing notebook naming and variable conventions when adding inputs near related blocks.\n\n## Block Update Guidance\n\nBefore updating a block, call `get_notebook` and identify the target block ID, current type, current content, and visible SQL integration when relevant. Ask a clarifying question only when the target block or requested replacement is ambiguous.\n\nUse `update_block` when the user wants to revise an existing cell or block. Send the full replacement `content` for the block content you want saved; do not assume partial snippets will be merged unless the user explicitly asks for exactly that replacement. Use `create_block` only when the user wants an additional new block.\n\nFor SQL blocks, `update_block` can update `content`, `integrationId`, or both in a single call. Resolve the integration with `list_integrations` when the user gives a connection name, then pass the connection as top-level `integrationId`. Do not put `sql_integration_id` in metadata.\n\nDo not pass `integrationId` for non-SQL blocks. The app tools do not expose block type changes, arbitrary metadata updates, deletion, or saved input-default edits through `update_block`; say so instead of claiming those changes were applied.\n\n## Block Reordering Guidance\n\nBefore moving blocks, call `get_notebook` and identify the current ordered block IDs. Ask a clarifying question only when the target block or destination is ambiguous.\n\nCall `reorder_notebook_blocks` with:\n\n- `notebookId`: the target notebook ID.\n- `blockIds`: a non-empty list of unique block IDs to move, ordered exactly as they should appear as the moved group.\n- `placement`: `{ \"type\": \"start\" }`, `{ \"type\": \"end\" }`, or `{ \"type\": \"after\", \"blockId\": \"anchor-block-id\" }`.\n\nFor `placement.type: \"after\"`, the anchor `blockId` must be an active block in the same notebook and must not be included in `blockIds`. Use `start` or `end` instead of manufacturing an anchor when the user asks for the beginning or end of the notebook.\n\nAfter reordering, report the moved block IDs and final order when useful. If the tool returns the same final order, treat it as a no-op rather than an error.\n\n## Response Style\n\nAfter a successful edit, report the created project, active notebook, and block names\u002FIDs when relevant, plus placement or final block order when useful. Include Deepnote links when they can be safely constructed with `deepnote-links`; for newly created notebooks, the notebook link must use the active notebook ID from `create_notebook` or the default notebook created by `create_project` when no separate notebook was created.\n\nIf a notebook was created or scaffolded and not already run, end with a short question asking whether to run the active notebook in Deepnote now. Do not call `create_run` until the user confirms; after confirmation, use `deepnote-data-execution` and pass the active notebook ID.\n\nIf a write tool returns an error, surface the user-facing message concisely and name the likely fix: missing permission, missing target resource, invalid block type, invalid position or placement, duplicate notebook name, suspended project, or incompatible SQL integration.\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,52,59,65,111,116,309,315,515,521,526,577,583,658,663,720,739,745,757,782,828,846,852,864,876,931,973,978,984,1011,1032],{"type":45,"tag":46,"props":47,"children":48},"element","h1",{"id":4},[49],{"type":50,"value":51},"text","Deepnote Notebook Editing",{"type":45,"tag":53,"props":54,"children":56},"h2",{"id":55},"when-to-use",[57],{"type":50,"value":58},"When To Use",{"type":45,"tag":60,"props":61,"children":62},"p",{},[63],{"type":50,"value":64},"Use this skill when the user asks to create a Deepnote project, create a notebook, add a block or cell, update an existing block or cell, move or reorder existing blocks, scaffold starter notebook content, insert code, SQL, markdown, or input blocks, or make a structural notebook edit supported by the current Deepnote app write tools.",{"type":45,"tag":60,"props":66,"children":67},{},[68,70,77,79,85,87,93,95,101,103,109],{"type":50,"value":69},"This workflow requires the connected Deepnote app to expose the write tools needed for the requested edit. Use ",{"type":45,"tag":71,"props":72,"children":74},"code",{"className":73},[],[75],{"type":50,"value":76},"create_project",{"type":50,"value":78},", ",{"type":45,"tag":71,"props":80,"children":82},{"className":81},[],[83],{"type":50,"value":84},"create_notebook",{"type":50,"value":86},", and ",{"type":45,"tag":71,"props":88,"children":90},{"className":89},[],[91],{"type":50,"value":92},"create_block",{"type":50,"value":94}," for creation workflows; use ",{"type":45,"tag":71,"props":96,"children":98},{"className":97},[],[99],{"type":50,"value":100},"update_block",{"type":50,"value":102}," for changing existing block content or SQL integration; use ",{"type":45,"tag":71,"props":104,"children":106},{"className":105},[],[107],{"type":50,"value":108},"reorder_notebook_blocks",{"type":50,"value":110}," for moving existing blocks. If the required tool is not visible in the current session, do not claim editing support; explain which app tool is missing.",{"type":45,"tag":60,"props":112,"children":113},{},[114],{"type":50,"value":115},"The editing surface covered by this skill is:",{"type":45,"tag":117,"props":118,"children":119},"ul",{},[120,147,170,231,277],{"type":45,"tag":121,"props":122,"children":123},"li",{},[124,129,131,137,139,145],{"type":45,"tag":71,"props":125,"children":127},{"className":126},[],[128],{"type":50,"value":76},{"type":50,"value":130},": create a new project. Requires ",{"type":45,"tag":71,"props":132,"children":134},{"className":133},[],[135],{"type":50,"value":136},"name",{"type":50,"value":138},"; accepts optional ",{"type":45,"tag":71,"props":140,"children":142},{"className":141},[],[143],{"type":50,"value":144},"folderId",{"type":50,"value":146},".",{"type":45,"tag":121,"props":148,"children":149},{},[150,155,157,163,164,169],{"type":45,"tag":71,"props":151,"children":153},{"className":152},[],[154],{"type":50,"value":84},{"type":50,"value":156},": create an empty notebook in a project. Requires ",{"type":45,"tag":71,"props":158,"children":160},{"className":159},[],[161],{"type":50,"value":162},"projectId",{"type":50,"value":138},{"type":45,"tag":71,"props":165,"children":167},{"className":166},[],[168],{"type":50,"value":136},{"type":50,"value":146},{"type":45,"tag":121,"props":171,"children":172},{},[173,178,180,186,188,194,195,201,202,208,209,215,216,222,224,230],{"type":45,"tag":71,"props":174,"children":176},{"className":175},[],[177],{"type":50,"value":92},{"type":50,"value":179},": create a block in a notebook. Requires ",{"type":45,"tag":71,"props":181,"children":183},{"className":182},[],[184],{"type":50,"value":185},"notebookId",{"type":50,"value":187}," and ",{"type":45,"tag":71,"props":189,"children":191},{"className":190},[],[192],{"type":50,"value":193},"type",{"type":50,"value":138},{"type":45,"tag":71,"props":196,"children":198},{"className":197},[],[199],{"type":50,"value":200},"content",{"type":50,"value":78},{"type":45,"tag":71,"props":203,"children":205},{"className":204},[],[206],{"type":50,"value":207},"metadata",{"type":50,"value":78},{"type":45,"tag":71,"props":210,"children":212},{"className":211},[],[213],{"type":50,"value":214},"position",{"type":50,"value":78},{"type":45,"tag":71,"props":217,"children":219},{"className":218},[],[220],{"type":50,"value":221},"includeNotebookBlockIds",{"type":50,"value":223},", and SQL-only ",{"type":45,"tag":71,"props":225,"children":227},{"className":226},[],[228],{"type":50,"value":229},"integrationId",{"type":50,"value":146},{"type":45,"tag":121,"props":232,"children":233},{},[234,239,241,247,249,254,256,261,263,268,270,275],{"type":45,"tag":71,"props":235,"children":237},{"className":236},[],[238],{"type":50,"value":100},{"type":50,"value":240},": update an existing block. Requires ",{"type":45,"tag":71,"props":242,"children":244},{"className":243},[],[245],{"type":50,"value":246},"blockId",{"type":50,"value":248},"; accepts ",{"type":45,"tag":71,"props":250,"children":252},{"className":251},[],[253],{"type":50,"value":200},{"type":50,"value":255},", SQL-only ",{"type":45,"tag":71,"props":257,"children":259},{"className":258},[],[260],{"type":50,"value":229},{"type":50,"value":262},", or both. At least one of ",{"type":45,"tag":71,"props":264,"children":266},{"className":265},[],[267],{"type":50,"value":200},{"type":50,"value":269}," or ",{"type":45,"tag":71,"props":271,"children":273},{"className":272},[],[274],{"type":50,"value":229},{"type":50,"value":276}," is required.",{"type":45,"tag":121,"props":278,"children":279},{},[280,285,287,292,294,300,302,308],{"type":45,"tag":71,"props":281,"children":283},{"className":282},[],[284],{"type":50,"value":108},{"type":50,"value":286},": move one or more existing blocks in a notebook. Requires ",{"type":45,"tag":71,"props":288,"children":290},{"className":289},[],[291],{"type":50,"value":185},{"type":50,"value":293},", non-empty unique ",{"type":45,"tag":71,"props":295,"children":297},{"className":296},[],[298],{"type":50,"value":299},"blockIds",{"type":50,"value":301}," in the desired moved-block order, and ",{"type":45,"tag":71,"props":303,"children":305},{"className":304},[],[306],{"type":50,"value":307},"placement",{"type":50,"value":146},{"type":45,"tag":53,"props":310,"children":312},{"id":311},"editing-workflow",[313],{"type":50,"value":314},"Editing Workflow",{"type":45,"tag":316,"props":317,"children":318},"ol",{},[319,363,387,413,431,456,467,480,498,510],{"type":45,"tag":121,"props":320,"children":321},{},[322,324,330,332,338,339,345,347,353,355,361],{"type":50,"value":323},"Resolve ambiguous names and IDs before writing. Use ",{"type":45,"tag":71,"props":325,"children":327},{"className":326},[],[328],{"type":50,"value":329},"get_me",{"type":50,"value":331}," for workspace identity, ",{"type":45,"tag":71,"props":333,"children":335},{"className":334},[],[336],{"type":50,"value":337},"search",{"type":50,"value":269},{"type":45,"tag":71,"props":340,"children":342},{"className":341},[],[343],{"type":50,"value":344},"list_projects",{"type":50,"value":346}," for projects\u002Fnotebooks, ",{"type":45,"tag":71,"props":348,"children":350},{"className":349},[],[351],{"type":50,"value":352},"get_notebook",{"type":50,"value":354}," for current block order, and ",{"type":45,"tag":71,"props":356,"children":358},{"className":357},[],[359],{"type":50,"value":360},"list_integrations",{"type":50,"value":362}," for SQL connections.",{"type":45,"tag":121,"props":364,"children":365},{},[366,368,373,374,379,380,385],{"type":50,"value":367},"Treat ",{"type":45,"tag":71,"props":369,"children":371},{"className":370},[],[372],{"type":50,"value":76},{"type":50,"value":78},{"type":45,"tag":71,"props":375,"children":377},{"className":376},[],[378],{"type":50,"value":84},{"type":50,"value":86},{"type":45,"tag":71,"props":381,"children":383},{"className":382},[],[384],{"type":50,"value":92},{"type":50,"value":386}," as non-idempotent. Repeating the same call creates another resource.",{"type":45,"tag":121,"props":388,"children":389},{},[390,392,397,399,404,406,411],{"type":50,"value":391},"Use ",{"type":45,"tag":71,"props":393,"children":395},{"className":394},[],[396],{"type":50,"value":76},{"type":50,"value":398}," only when the user wants a new project. A created project includes a default empty notebook; if the workflow later calls ",{"type":45,"tag":71,"props":400,"children":402},{"className":401},[],[403],{"type":50,"value":84},{"type":50,"value":405},", the new ",{"type":45,"tag":71,"props":407,"children":409},{"className":408},[],[410],{"type":50,"value":84},{"type":50,"value":412}," result becomes the active notebook for blocks, verification, links, and run prompts.",{"type":45,"tag":121,"props":414,"children":415},{},[416,417,422,424,429],{"type":50,"value":391},{"type":45,"tag":71,"props":418,"children":420},{"className":419},[],[421],{"type":50,"value":84},{"type":50,"value":423}," only when adding an empty notebook to a project. It does not accept starter blocks; capture the returned notebook ID and create blocks afterward with ",{"type":45,"tag":71,"props":425,"children":427},{"className":426},[],[428],{"type":50,"value":92},{"type":50,"value":430}," in that exact notebook.",{"type":45,"tag":121,"props":432,"children":433},{},[434,435,440,442,447,449,454],{"type":50,"value":391},{"type":45,"tag":71,"props":436,"children":438},{"className":437},[],[439],{"type":50,"value":92},{"type":50,"value":441}," for each new block. Omit ",{"type":45,"tag":71,"props":443,"children":445},{"className":444},[],[446],{"type":50,"value":214},{"type":50,"value":448}," to append, or pass a zero-based ",{"type":45,"tag":71,"props":450,"children":452},{"className":451},[],[453],{"type":50,"value":214},{"type":50,"value":455}," when placement matters.",{"type":45,"tag":121,"props":457,"children":458},{},[459,460,465],{"type":50,"value":391},{"type":45,"tag":71,"props":461,"children":463},{"className":462},[],[464],{"type":50,"value":100},{"type":50,"value":466}," when changing an existing block. It updates content and\u002For SQL integration in place; it does not create a new block.",{"type":45,"tag":121,"props":468,"children":469},{},[470,472,478],{"type":50,"value":471},"Pass ",{"type":45,"tag":71,"props":473,"children":475},{"className":474},[],[476],{"type":50,"value":477},"includeNotebookBlockIds: true",{"type":50,"value":479}," when the final block order matters, especially for ordered inserts or multi-block scaffolds.",{"type":45,"tag":121,"props":481,"children":482},{},[483,484,489,491,496],{"type":50,"value":391},{"type":45,"tag":71,"props":485,"children":487},{"className":486},[],[488],{"type":50,"value":108},{"type":50,"value":490}," when moving existing blocks. It preserves the relative order of blocks omitted from ",{"type":45,"tag":71,"props":492,"children":494},{"className":493},[],[495],{"type":50,"value":299},{"type":50,"value":497}," and returns the final active block order.",{"type":45,"tag":121,"props":499,"children":500},{},[501,503,508],{"type":50,"value":502},"Verify meaningful edits with ",{"type":45,"tag":71,"props":504,"children":506},{"className":505},[],[507],{"type":50,"value":352},{"type":50,"value":509}," after block creation, block update, or block reordering when order, integration attachment, or multi-block content matters.",{"type":45,"tag":121,"props":511,"children":512},{},[513],{"type":50,"value":514},"Do not run the notebook after editing unless the user explicitly asks for execution or confirms a final run prompt. After creating or scaffolding a notebook, ask whether to run that exact notebook in Deepnote.",{"type":45,"tag":53,"props":516,"children":518},{"id":517},"creation-target-tracking",[519],{"type":50,"value":520},"Creation Target Tracking",{"type":45,"tag":60,"props":522,"children":523},{},[524],{"type":50,"value":525},"For creation workflows, keep one active target notebook:",{"type":45,"tag":117,"props":527,"children":528},{},[529,541,560,572],{"type":45,"tag":121,"props":530,"children":531},{},[532,534,539],{"type":50,"value":533},"If only ",{"type":45,"tag":71,"props":535,"children":537},{"className":536},[],[538],{"type":50,"value":76},{"type":50,"value":540}," is called, use the default notebook created with the project as the active notebook when blocks or a notebook link are needed.",{"type":45,"tag":121,"props":542,"children":543},{},[544,546,551,553,558],{"type":50,"value":545},"If ",{"type":45,"tag":71,"props":547,"children":549},{"className":548},[],[550],{"type":50,"value":84},{"type":50,"value":552}," is called, use the notebook ID returned by ",{"type":45,"tag":71,"props":554,"children":556},{"className":555},[],[557],{"type":50,"value":84},{"type":50,"value":559}," as the active notebook, even when the same project also has an initial default notebook.",{"type":45,"tag":121,"props":561,"children":562},{},[563,565,570],{"type":50,"value":564},"Create blocks, verify with ",{"type":45,"tag":71,"props":566,"children":568},{"className":567},[],[569],{"type":50,"value":352},{"type":50,"value":571},", build notebook links, and ask about running against the active notebook ID. Do not link to or run the project's default notebook unless it is the active notebook.",{"type":45,"tag":121,"props":573,"children":574},{},[575],{"type":50,"value":576},"When both a project link and notebook link are useful, label them separately so the notebook link points to the newly created or edited notebook.",{"type":45,"tag":53,"props":578,"children":580},{"id":579},"block-creation-guidance",[581],{"type":50,"value":582},"Block Creation Guidance",{"type":45,"tag":60,"props":584,"children":585},{},[586,588,593,595,600,601,606,607,613,615,621,622,628,629,635,637,643,644,650,651,657],{"type":50,"value":587},"Choose the block ",{"type":45,"tag":71,"props":589,"children":591},{"className":590},[],[592],{"type":50,"value":193},{"type":50,"value":594}," that matches Deepnote's block vocabulary. Common types include ",{"type":45,"tag":71,"props":596,"children":598},{"className":597},[],[599],{"type":50,"value":71},{"type":50,"value":78},{"type":45,"tag":71,"props":602,"children":604},{"className":603},[],[605],{"type":50,"value":21},{"type":50,"value":78},{"type":45,"tag":71,"props":608,"children":610},{"className":609},[],[611],{"type":50,"value":612},"markdown",{"type":50,"value":614},", input blocks such as ",{"type":45,"tag":71,"props":616,"children":618},{"className":617},[],[619],{"type":50,"value":620},"input-text",{"type":50,"value":78},{"type":45,"tag":71,"props":623,"children":625},{"className":624},[],[626],{"type":50,"value":627},"input-select",{"type":50,"value":78},{"type":45,"tag":71,"props":630,"children":632},{"className":631},[],[633],{"type":50,"value":634},"input-checkbox",{"type":50,"value":636},", and text-cell variants such as ",{"type":45,"tag":71,"props":638,"children":640},{"className":639},[],[641],{"type":50,"value":642},"text-cell-h1",{"type":50,"value":78},{"type":45,"tag":71,"props":645,"children":647},{"className":646},[],[648],{"type":50,"value":649},"text-cell-p",{"type":50,"value":86},{"type":45,"tag":71,"props":652,"children":654},{"className":653},[],[655],{"type":50,"value":656},"text-cell-callout",{"type":50,"value":146},{"type":45,"tag":60,"props":659,"children":660},{},[661],{"type":50,"value":662},"For SQL blocks:",{"type":45,"tag":117,"props":664,"children":665},{},[666,678,689,708],{"type":45,"tag":121,"props":667,"children":668},{},[669,671,676],{"type":50,"value":670},"Resolve the integration first with ",{"type":45,"tag":71,"props":672,"children":674},{"className":673},[],[675],{"type":50,"value":360},{"type":50,"value":677}," when the user gives a connection name.",{"type":45,"tag":121,"props":679,"children":680},{},[681,683,688],{"type":50,"value":682},"Pass the connection as top-level ",{"type":45,"tag":71,"props":684,"children":686},{"className":685},[],[687],{"type":50,"value":229},{"type":50,"value":146},{"type":45,"tag":121,"props":690,"children":691},{},[692,694,700,702,707],{"type":50,"value":693},"Do not put ",{"type":45,"tag":71,"props":695,"children":697},{"className":696},[],[698],{"type":50,"value":699},"sql_integration_id",{"type":50,"value":701}," inside ",{"type":45,"tag":71,"props":703,"children":705},{"className":704},[],[706],{"type":50,"value":207},{"type":50,"value":146},{"type":45,"tag":121,"props":709,"children":710},{},[711,713,718],{"type":50,"value":712},"Do not pass ",{"type":45,"tag":71,"props":714,"children":716},{"className":715},[],[717],{"type":50,"value":229},{"type":50,"value":719}," for non-SQL blocks.",{"type":45,"tag":60,"props":721,"children":722},{},[723,725,730,732,737],{"type":50,"value":724},"For input blocks, put block-type configuration in ",{"type":45,"tag":71,"props":726,"children":728},{"className":727},[],[729],{"type":50,"value":207},{"type":50,"value":731}," and keep ",{"type":45,"tag":71,"props":733,"children":735},{"className":734},[],[736],{"type":50,"value":200},{"type":50,"value":738}," for the visible\u002Fdefault textual content when applicable. Preserve existing notebook naming and variable conventions when adding inputs near related blocks.",{"type":45,"tag":53,"props":740,"children":742},{"id":741},"block-update-guidance",[743],{"type":50,"value":744},"Block Update Guidance",{"type":45,"tag":60,"props":746,"children":747},{},[748,750,755],{"type":50,"value":749},"Before updating a block, call ",{"type":45,"tag":71,"props":751,"children":753},{"className":752},[],[754],{"type":50,"value":352},{"type":50,"value":756}," and identify the target block ID, current type, current content, and visible SQL integration when relevant. Ask a clarifying question only when the target block or requested replacement is ambiguous.",{"type":45,"tag":60,"props":758,"children":759},{},[760,761,766,768,773,775,780],{"type":50,"value":391},{"type":45,"tag":71,"props":762,"children":764},{"className":763},[],[765],{"type":50,"value":100},{"type":50,"value":767}," when the user wants to revise an existing cell or block. Send the full replacement ",{"type":45,"tag":71,"props":769,"children":771},{"className":770},[],[772],{"type":50,"value":200},{"type":50,"value":774}," for the block content you want saved; do not assume partial snippets will be merged unless the user explicitly asks for exactly that replacement. Use ",{"type":45,"tag":71,"props":776,"children":778},{"className":777},[],[779],{"type":50,"value":92},{"type":50,"value":781}," only when the user wants an additional new block.",{"type":45,"tag":60,"props":783,"children":784},{},[785,787,792,794,799,800,805,807,812,814,819,821,826],{"type":50,"value":786},"For SQL blocks, ",{"type":45,"tag":71,"props":788,"children":790},{"className":789},[],[791],{"type":50,"value":100},{"type":50,"value":793}," can update ",{"type":45,"tag":71,"props":795,"children":797},{"className":796},[],[798],{"type":50,"value":200},{"type":50,"value":78},{"type":45,"tag":71,"props":801,"children":803},{"className":802},[],[804],{"type":50,"value":229},{"type":50,"value":806},", or both in a single call. Resolve the integration with ",{"type":45,"tag":71,"props":808,"children":810},{"className":809},[],[811],{"type":50,"value":360},{"type":50,"value":813}," when the user gives a connection name, then pass the connection as top-level ",{"type":45,"tag":71,"props":815,"children":817},{"className":816},[],[818],{"type":50,"value":229},{"type":50,"value":820},". Do not put ",{"type":45,"tag":71,"props":822,"children":824},{"className":823},[],[825],{"type":50,"value":699},{"type":50,"value":827}," in metadata.",{"type":45,"tag":60,"props":829,"children":830},{},[831,832,837,839,844],{"type":50,"value":712},{"type":45,"tag":71,"props":833,"children":835},{"className":834},[],[836],{"type":50,"value":229},{"type":50,"value":838}," for non-SQL blocks. The app tools do not expose block type changes, arbitrary metadata updates, deletion, or saved input-default edits through ",{"type":45,"tag":71,"props":840,"children":842},{"className":841},[],[843],{"type":50,"value":100},{"type":50,"value":845},"; say so instead of claiming those changes were applied.",{"type":45,"tag":53,"props":847,"children":849},{"id":848},"block-reordering-guidance",[850],{"type":50,"value":851},"Block Reordering Guidance",{"type":45,"tag":60,"props":853,"children":854},{},[855,857,862],{"type":50,"value":856},"Before moving blocks, call ",{"type":45,"tag":71,"props":858,"children":860},{"className":859},[],[861],{"type":50,"value":352},{"type":50,"value":863}," and identify the current ordered block IDs. Ask a clarifying question only when the target block or destination is ambiguous.",{"type":45,"tag":60,"props":865,"children":866},{},[867,869,874],{"type":50,"value":868},"Call ",{"type":45,"tag":71,"props":870,"children":872},{"className":871},[],[873],{"type":50,"value":108},{"type":50,"value":875}," with:",{"type":45,"tag":117,"props":877,"children":878},{},[879,889,899],{"type":45,"tag":121,"props":880,"children":881},{},[882,887],{"type":45,"tag":71,"props":883,"children":885},{"className":884},[],[886],{"type":50,"value":185},{"type":50,"value":888},": the target notebook ID.",{"type":45,"tag":121,"props":890,"children":891},{},[892,897],{"type":45,"tag":71,"props":893,"children":895},{"className":894},[],[896],{"type":50,"value":299},{"type":50,"value":898},": a non-empty list of unique block IDs to move, ordered exactly as they should appear as the moved group.",{"type":45,"tag":121,"props":900,"children":901},{},[902,907,909,915,916,922,924,930],{"type":45,"tag":71,"props":903,"children":905},{"className":904},[],[906],{"type":50,"value":307},{"type":50,"value":908},": ",{"type":45,"tag":71,"props":910,"children":912},{"className":911},[],[913],{"type":50,"value":914},"{ \"type\": \"start\" }",{"type":50,"value":78},{"type":45,"tag":71,"props":917,"children":919},{"className":918},[],[920],{"type":50,"value":921},"{ \"type\": \"end\" }",{"type":50,"value":923},", or ",{"type":45,"tag":71,"props":925,"children":927},{"className":926},[],[928],{"type":50,"value":929},"{ \"type\": \"after\", \"blockId\": \"anchor-block-id\" }",{"type":50,"value":146},{"type":45,"tag":60,"props":932,"children":933},{},[934,936,942,944,949,951,956,958,964,965,971],{"type":50,"value":935},"For ",{"type":45,"tag":71,"props":937,"children":939},{"className":938},[],[940],{"type":50,"value":941},"placement.type: \"after\"",{"type":50,"value":943},", the anchor ",{"type":45,"tag":71,"props":945,"children":947},{"className":946},[],[948],{"type":50,"value":246},{"type":50,"value":950}," must be an active block in the same notebook and must not be included in ",{"type":45,"tag":71,"props":952,"children":954},{"className":953},[],[955],{"type":50,"value":299},{"type":50,"value":957},". Use ",{"type":45,"tag":71,"props":959,"children":961},{"className":960},[],[962],{"type":50,"value":963},"start",{"type":50,"value":269},{"type":45,"tag":71,"props":966,"children":968},{"className":967},[],[969],{"type":50,"value":970},"end",{"type":50,"value":972}," instead of manufacturing an anchor when the user asks for the beginning or end of the notebook.",{"type":45,"tag":60,"props":974,"children":975},{},[976],{"type":50,"value":977},"After reordering, report the moved block IDs and final order when useful. If the tool returns the same final order, treat it as a no-op rather than an error.",{"type":45,"tag":53,"props":979,"children":981},{"id":980},"response-style",[982],{"type":50,"value":983},"Response Style",{"type":45,"tag":60,"props":985,"children":986},{},[987,989,995,997,1002,1004,1009],{"type":50,"value":988},"After a successful edit, report the created project, active notebook, and block names\u002FIDs when relevant, plus placement or final block order when useful. Include Deepnote links when they can be safely constructed with ",{"type":45,"tag":71,"props":990,"children":992},{"className":991},[],[993],{"type":50,"value":994},"deepnote-links",{"type":50,"value":996},"; for newly created notebooks, the notebook link must use the active notebook ID from ",{"type":45,"tag":71,"props":998,"children":1000},{"className":999},[],[1001],{"type":50,"value":84},{"type":50,"value":1003}," or the default notebook created by ",{"type":45,"tag":71,"props":1005,"children":1007},{"className":1006},[],[1008],{"type":50,"value":76},{"type":50,"value":1010}," when no separate notebook was created.",{"type":45,"tag":60,"props":1012,"children":1013},{},[1014,1016,1022,1024,1030],{"type":50,"value":1015},"If a notebook was created or scaffolded and not already run, end with a short question asking whether to run the active notebook in Deepnote now. Do not call ",{"type":45,"tag":71,"props":1017,"children":1019},{"className":1018},[],[1020],{"type":50,"value":1021},"create_run",{"type":50,"value":1023}," until the user confirms; after confirmation, use ",{"type":45,"tag":71,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":50,"value":1029},"deepnote-data-execution",{"type":50,"value":1031}," and pass the active notebook ID.",{"type":45,"tag":60,"props":1033,"children":1034},{},[1035],{"type":50,"value":1036},"If a write tool returns an error, surface the user-facing message concisely and name the likely fix: missing permission, missing target resource, invalid block type, invalid position or placement, duplicate notebook name, suspended project, or incompatible SQL integration.",{"items":1038,"total":1159},[1039,1057,1073,1085,1105,1127,1147],{"slug":1040,"name":1040,"fn":1041,"description":1042,"org":1043,"tags":1044,"stars":28,"repoUrl":29,"updatedAt":30},"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},[1045,1048,1051,1054],{"name":1046,"slug":1047,"type":15},"Accessibility","accessibility",{"name":1049,"slug":1050,"type":15},"Charts","charts",{"name":1052,"slug":1053,"type":15},"Data Visualization","data-visualization",{"name":1055,"slug":1056,"type":15},"Design","design",{"slug":1058,"name":1058,"fn":1059,"description":1060,"org":1061,"tags":1062,"stars":28,"repoUrl":29,"updatedAt":1072},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1063,1066,1069],{"name":1064,"slug":1065,"type":15},"Agents","agents",{"name":1067,"slug":1068,"type":15},"Browser Automation","browser-automation",{"name":1070,"slug":1071,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1074,"name":1074,"fn":1075,"description":1076,"org":1077,"tags":1078,"stars":28,"repoUrl":29,"updatedAt":1084},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1079,1080,1083],{"name":1067,"slug":1068,"type":15},{"name":1081,"slug":1082,"type":15},"Local Development","local-development",{"name":1070,"slug":1071,"type":15},"2026-04-06T18:41:17.526867",{"slug":1086,"name":1086,"fn":1087,"description":1088,"org":1089,"tags":1090,"stars":28,"repoUrl":29,"updatedAt":1104},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1091,1092,1095,1098,1101],{"name":1064,"slug":1065,"type":15},{"name":1093,"slug":1094,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1096,"slug":1097,"type":15},"SDK","sdk",{"name":1099,"slug":1100,"type":15},"Serverless","serverless",{"name":1102,"slug":1103,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":28,"repoUrl":29,"updatedAt":1126},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1111,1114,1117,1120,1123],{"name":1112,"slug":1113,"type":15},"Frontend","frontend",{"name":1115,"slug":1116,"type":15},"React","react",{"name":1118,"slug":1119,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1121,"slug":1122,"type":15},"UI Components","ui-components",{"name":1124,"slug":1125,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1128,"name":1128,"fn":1129,"description":1130,"org":1131,"tags":1132,"stars":28,"repoUrl":29,"updatedAt":1146},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1133,1136,1139,1142,1145],{"name":1134,"slug":1135,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1137,"slug":1138,"type":15},"Cost Optimization","cost-optimization",{"name":1140,"slug":1141,"type":15},"LLM","llm",{"name":1143,"slug":1144,"type":15},"Performance","performance",{"name":1124,"slug":1125,"type":15},"2026-04-06T18:40:44.377464",{"slug":1148,"name":1148,"fn":1149,"description":1150,"org":1151,"tags":1152,"stars":28,"repoUrl":29,"updatedAt":1158},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1153,1154,1157],{"name":1137,"slug":1138,"type":15},{"name":1155,"slug":1156,"type":15},"Database","database",{"name":1140,"slug":1141,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1161,"total":1358},[1162,1183,1206,1223,1239,1256,1275,1287,1301,1315,1327,1342],{"slug":1163,"name":1163,"fn":1164,"description":1165,"org":1166,"tags":1167,"stars":1180,"repoUrl":1181,"updatedAt":1182},"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},[1168,1171,1174,1177],{"name":1169,"slug":1170,"type":15},"Documents","documents",{"name":1172,"slug":1173,"type":15},"Healthcare","healthcare",{"name":1175,"slug":1176,"type":15},"Insurance","insurance",{"name":1178,"slug":1179,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1184,"name":1184,"fn":1185,"description":1186,"org":1187,"tags":1188,"stars":1203,"repoUrl":1204,"updatedAt":1205},"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},[1189,1192,1194,1197,1200],{"name":1190,"slug":1191,"type":15},".NET","dotnet",{"name":1193,"slug":1184,"type":15},"ASP.NET Core",{"name":1195,"slug":1196,"type":15},"Blazor","blazor",{"name":1198,"slug":1199,"type":15},"C#","csharp",{"name":1201,"slug":1202,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1207,"name":1207,"fn":1208,"description":1209,"org":1210,"tags":1211,"stars":1203,"repoUrl":1204,"updatedAt":1222},"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},[1212,1215,1218,1221],{"name":1213,"slug":1214,"type":15},"Apps SDK","apps-sdk",{"name":1216,"slug":1217,"type":15},"ChatGPT","chatgpt",{"name":1219,"slug":1220,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1224,"name":1224,"fn":1225,"description":1226,"org":1227,"tags":1228,"stars":1203,"repoUrl":1204,"updatedAt":1238},"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},[1229,1232,1235],{"name":1230,"slug":1231,"type":15},"API Development","api-development",{"name":1233,"slug":1234,"type":15},"CLI","cli",{"name":1236,"slug":1237,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1240,"name":1240,"fn":1241,"description":1242,"org":1243,"tags":1244,"stars":1203,"repoUrl":1204,"updatedAt":1255},"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},[1245,1248,1251,1252],{"name":1246,"slug":1247,"type":15},"Cloudflare","cloudflare",{"name":1249,"slug":1250,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1093,"slug":1094,"type":15},{"name":1253,"slug":1254,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1257,"name":1257,"fn":1258,"description":1259,"org":1260,"tags":1261,"stars":1203,"repoUrl":1204,"updatedAt":1274},"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},[1262,1265,1268,1271],{"name":1263,"slug":1264,"type":15},"Productivity","productivity",{"name":1266,"slug":1267,"type":15},"Project Management","project-management",{"name":1269,"slug":1270,"type":15},"Strategy","strategy",{"name":1272,"slug":1273,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1279,"tags":1280,"stars":1203,"repoUrl":1204,"updatedAt":1286},"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},[1281,1282,1284,1285],{"name":1055,"slug":1056,"type":15},{"name":1283,"slug":1276,"type":15},"Figma",{"name":1112,"slug":1113,"type":15},{"name":1219,"slug":1220,"type":15},"2026-04-12T05:06:47.939943",{"slug":1288,"name":1288,"fn":1289,"description":1290,"org":1291,"tags":1292,"stars":1203,"repoUrl":1204,"updatedAt":1300},"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},[1293,1294,1297,1298,1299],{"name":1055,"slug":1056,"type":15},{"name":1295,"slug":1296,"type":15},"Design System","design-system",{"name":1283,"slug":1276,"type":15},{"name":1112,"slug":1113,"type":15},{"name":1121,"slug":1122,"type":15},"2026-05-10T05:59:52.971881",{"slug":1302,"name":1302,"fn":1303,"description":1304,"org":1305,"tags":1306,"stars":1203,"repoUrl":1204,"updatedAt":1314},"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},[1307,1308,1309,1312,1313],{"name":1055,"slug":1056,"type":15},{"name":1295,"slug":1296,"type":15},{"name":1310,"slug":1311,"type":15},"Documentation","documentation",{"name":1283,"slug":1276,"type":15},{"name":1112,"slug":1113,"type":15},"2026-05-16T06:07:47.821474",{"slug":1316,"name":1316,"fn":1317,"description":1318,"org":1319,"tags":1320,"stars":1203,"repoUrl":1204,"updatedAt":1326},"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},[1321,1322,1323,1324,1325],{"name":1055,"slug":1056,"type":15},{"name":1283,"slug":1276,"type":15},{"name":1112,"slug":1113,"type":15},{"name":1121,"slug":1122,"type":15},{"name":1201,"slug":1202,"type":15},"2026-05-16T06:07:40.583615",{"slug":1328,"name":1328,"fn":1329,"description":1330,"org":1331,"tags":1332,"stars":1203,"repoUrl":1204,"updatedAt":1341},"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},[1333,1336,1337,1340],{"name":1334,"slug":1335,"type":15},"Animation","animation",{"name":1236,"slug":1237,"type":15},{"name":1338,"slug":1339,"type":15},"Creative","creative",{"name":1055,"slug":1056,"type":15},"2026-05-02T05:31:48.48485",{"slug":1343,"name":1343,"fn":1344,"description":1345,"org":1346,"tags":1347,"stars":1203,"repoUrl":1204,"updatedAt":1357},"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},[1348,1349,1350,1353,1356],{"name":1338,"slug":1339,"type":15},{"name":1055,"slug":1056,"type":15},{"name":1351,"slug":1352,"type":15},"Image Generation","image-generation",{"name":1354,"slug":1355,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]