[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-uniswap-mermaid-diagram":3,"mdc--fs5pdw-key":36,"related-org-uniswap-mermaid-diagram":1148,"related-repo-uniswap-mermaid-diagram":1309},{"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},"mermaid-diagram","generate Mermaid.js diagrams for visualization","Generate syntactically valid Mermaid.js diagrams. Use when user says \"create a mermaid diagram\", \"generate a flowchart\", \"draw a sequence diagram\", \"visualize with mermaid\", \"mermaid architecture diagram\", \"create a class diagram\", \"make a state diagram\", \"ER diagram\", \"Gantt chart\", \"gitGraph\", or when generating any Mermaid code block in markdown. Also use when asked to fix or debug a broken Mermaid diagram.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"uniswap","Uniswap","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Funiswap.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Documentation","documentation","tag",{"name":17,"slug":18,"type":15},"Visualization","visualization",{"name":20,"slug":21,"type":15},"Diagrams","diagrams",{"name":23,"slug":24,"type":15},"Design","design",39,"https:\u002F\u002Fgithub.com\u002FUniswap\u002Fai-toolkit","2026-07-17T06:05:36.621782",null,10,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"🤖 AI Toolkit - Standardized setup for Claude Code AI workflows. Nx monorepo with reusable agents, commands, and generators for enhanced AI-assisted development.","https:\u002F\u002Fgithub.com\u002FUniswap\u002Fai-toolkit\u002Ftree\u002FHEAD\u002Fpackages\u002Fplugins\u002Fdevelopment-codebase-tools\u002Fskills\u002Fmermaid-diagram","---\nname: mermaid-diagram\ndescription: Generate syntactically valid Mermaid.js diagrams. Use when user says \"create a mermaid diagram\", \"generate a flowchart\", \"draw a sequence diagram\", \"visualize with mermaid\", \"mermaid architecture diagram\", \"create a class diagram\", \"make a state diagram\", \"ER diagram\", \"Gantt chart\", \"gitGraph\", or when generating any Mermaid code block in markdown. Also use when asked to fix or debug a broken Mermaid diagram.\nallowed-tools: []\nmodel: sonnet\n---\n\n# Mermaid.js Diagram Generator\n\nGenerate valid Mermaid.js diagrams that render without syntax errors on the first attempt. When outputting a diagram, always wrap it in a fenced code block with the `mermaid` language tag.\n\n## Syntax Rules\n\nFollow every rule below. Violating any one will produce a render failure.\n\n### 1. One Node Per Line\n\n```mermaid\n%% CORRECT\nA[Service A]\nB[Service B]\n\n%% WRONG\nA[Service A] B[Service B]\n```\n\n### 2. Alphanumeric Node IDs Only\n\nNo spaces, hyphens, or special characters in IDs. Display names go in brackets.\n\n```mermaid\n%% CORRECT\nAuthService[Auth Service]\nUserDB[User Database]\n\n%% WRONG\nAuth-Service[Auth Service]\nUser DB[User Database]\n```\n\n### 3. Quote Labels with Special Characters\n\nWrap in double quotes if a label contains parentheses, brackets, colons, math operators, or anything that could be parsed as Mermaid syntax.\n\n```mermaid\n%% CORRECT\nA[\"Process (async)\"]\nB[\"array[0]\"]\nC[\"ratio: 3\u002F4\"]\nD[\"calculate(x, y)\"]\n\n%% WRONG\nA[Process (async)]\nB[array[0]]\n```\n\n### 4. No HTML or Markdown in Labels\n\nUse commas or semicolons instead of `\u003Cbr>` or `\\n`.\n\n```mermaid\n%% CORRECT\nA[\"Input: raw data, Output: processed\"]\n\n%% WRONG\nA[Input: raw data\u003Cbr>Output: processed]\n```\n\n### 5. No Chained Arrows\n\nWrite each connection on its own line.\n\n```mermaid\n%% CORRECT\nA --> B\nB --> C\n\n%% WRONG\nA --> B --> C\n```\n\n### 6. Comments on Their Own Lines\n\n`%%` comments must not appear at the end of code lines.\n\n```mermaid\n%% CORRECT\n%% This is a comment\nA --> B\n\n%% WRONG\nA --> B %% connection\n```\n\n### 7. Style Only Defined Nodes\n\nApply `style` directives only after the node has been defined.\n\n```mermaid\n%% CORRECT\nA[Server]\nstyle A fill:#f9f,stroke:#333\n\n%% WRONG\nstyle A fill:#f9f,stroke:#333\nA[Server]\n```\n\n### 8. Subgraph Names\n\nUse underscores or wrap in quotes — no bare spaces.\n\n```mermaid\n%% CORRECT\nsubgraph Backend_Services\nsubgraph \"Backend Services\"\n\n%% WRONG\nsubgraph Backend Services\n```\n\n### 9. Validate Before Presenting\n\nTrace through the diagram to confirm:\n\n- Every node on its own line with unique alphanumeric ID\n- No chained arrows\n- Special-character labels double-quoted\n- No HTML\u002FMarkdown in labels\n- Comments on own lines\n- Styles reference defined nodes only\n- Subgraph names quoted or underscored\n\n## Diagram Type Quick Reference\n\n| Type      | Directive                       | Use For                            |\n| --------- | ------------------------------- | ---------------------------------- |\n| Flowchart | `flowchart TD` \u002F `flowchart LR` | Architecture, data flow, decisions |\n| Sequence  | `sequenceDiagram`               | API calls, request\u002Fresponse        |\n| Class     | `classDiagram`                  | Type relationships, OOP            |\n| State     | `stateDiagram-v2`               | State machines, lifecycles         |\n| ER        | `erDiagram`                     | Database schemas, entities         |\n| Gantt     | `gantt`                         | Timelines, schedules               |\n| Git       | `gitGraph`                      | Branch strategies, merges          |\n\n## Common Patterns\n\n### Architecture Diagram\n\n```mermaid\nflowchart TD\n    Client[Browser Client]\n    API[API Gateway]\n    Auth[Auth Service]\n    DB[(Database)]\n\n    Client --> API\n    API --> Auth\n    Auth --> DB\n```\n\n### Sequence Flow\n\n```mermaid\nsequenceDiagram\n    participant C as Client\n    participant S as Server\n    participant D as Database\n\n    C->>S: POST \u002Fapi\u002Fdata\n    S->>D: INSERT query\n    D-->>S: Result\n    S-->>C: 201 Created\n```\n\n## Fixing Broken Diagrams\n\nWhen asked to fix a broken Mermaid diagram:\n\n1. **Identify the error type** — parse errors almost always come from one of: chained arrows, unquoted special characters, bare subgraph names, or HTML in labels.\n2. **Apply the relevant rules above** — check each rule against the broken code line by line.\n3. **Rewrite the offending lines** — fix only what is broken; preserve the diagram's intent.\n4. **Re-validate** using the checklist in Rule 9 before presenting the corrected diagram.\n\nIf the diagram is structurally ambiguous (missing nodes, unclear relationships), ask one clarifying question before rewriting.\n",{"data":37,"body":40},{"name":4,"description":6,"allowed-tools":38,"model":39},[],"sonnet",{"type":41,"children":42},"root",[43,52,67,74,79,86,153,159,164,225,231,236,314,320,341,385,391,396,448,454,465,516,522,535,593,599,604,656,662,667,707,713,908,914,920,998,1004,1082,1088,1093,1138,1143],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"mermaidjs-diagram-generator",[49],{"type":50,"value":51},"text","Mermaid.js Diagram Generator",{"type":44,"tag":53,"props":54,"children":55},"p",{},[56,58,65],{"type":50,"value":57},"Generate valid Mermaid.js diagrams that render without syntax errors on the first attempt. When outputting a diagram, always wrap it in a fenced code block with the ",{"type":44,"tag":59,"props":60,"children":62},"code",{"className":61},[],[63],{"type":50,"value":64},"mermaid",{"type":50,"value":66}," language tag.",{"type":44,"tag":68,"props":69,"children":71},"h2",{"id":70},"syntax-rules",[72],{"type":50,"value":73},"Syntax Rules",{"type":44,"tag":53,"props":75,"children":76},{},[77],{"type":50,"value":78},"Follow every rule below. Violating any one will produce a render failure.",{"type":44,"tag":80,"props":81,"children":83},"h3",{"id":82},"_1-one-node-per-line",[84],{"type":50,"value":85},"1. One Node Per Line",{"type":44,"tag":87,"props":88,"children":92},"pre",{"className":89,"code":90,"language":64,"meta":91,"style":91},"language-mermaid shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","%% CORRECT\nA[Service A]\nB[Service B]\n\n%% WRONG\nA[Service A] B[Service B]\n","",[93],{"type":44,"tag":59,"props":94,"children":95},{"__ignoreMap":91},[96,107,116,125,135,144],{"type":44,"tag":97,"props":98,"children":101},"span",{"class":99,"line":100},"line",1,[102],{"type":44,"tag":97,"props":103,"children":104},{},[105],{"type":50,"value":106},"%% CORRECT\n",{"type":44,"tag":97,"props":108,"children":110},{"class":99,"line":109},2,[111],{"type":44,"tag":97,"props":112,"children":113},{},[114],{"type":50,"value":115},"A[Service A]\n",{"type":44,"tag":97,"props":117,"children":119},{"class":99,"line":118},3,[120],{"type":44,"tag":97,"props":121,"children":122},{},[123],{"type":50,"value":124},"B[Service B]\n",{"type":44,"tag":97,"props":126,"children":128},{"class":99,"line":127},4,[129],{"type":44,"tag":97,"props":130,"children":132},{"emptyLinePlaceholder":131},true,[133],{"type":50,"value":134},"\n",{"type":44,"tag":97,"props":136,"children":138},{"class":99,"line":137},5,[139],{"type":44,"tag":97,"props":140,"children":141},{},[142],{"type":50,"value":143},"%% WRONG\n",{"type":44,"tag":97,"props":145,"children":147},{"class":99,"line":146},6,[148],{"type":44,"tag":97,"props":149,"children":150},{},[151],{"type":50,"value":152},"A[Service A] B[Service B]\n",{"type":44,"tag":80,"props":154,"children":156},{"id":155},"_2-alphanumeric-node-ids-only",[157],{"type":50,"value":158},"2. Alphanumeric Node IDs Only",{"type":44,"tag":53,"props":160,"children":161},{},[162],{"type":50,"value":163},"No spaces, hyphens, or special characters in IDs. Display names go in brackets.",{"type":44,"tag":87,"props":165,"children":167},{"className":89,"code":166,"language":64,"meta":91,"style":91},"%% CORRECT\nAuthService[Auth Service]\nUserDB[User Database]\n\n%% WRONG\nAuth-Service[Auth Service]\nUser DB[User Database]\n",[168],{"type":44,"tag":59,"props":169,"children":170},{"__ignoreMap":91},[171,178,186,194,201,208,216],{"type":44,"tag":97,"props":172,"children":173},{"class":99,"line":100},[174],{"type":44,"tag":97,"props":175,"children":176},{},[177],{"type":50,"value":106},{"type":44,"tag":97,"props":179,"children":180},{"class":99,"line":109},[181],{"type":44,"tag":97,"props":182,"children":183},{},[184],{"type":50,"value":185},"AuthService[Auth Service]\n",{"type":44,"tag":97,"props":187,"children":188},{"class":99,"line":118},[189],{"type":44,"tag":97,"props":190,"children":191},{},[192],{"type":50,"value":193},"UserDB[User Database]\n",{"type":44,"tag":97,"props":195,"children":196},{"class":99,"line":127},[197],{"type":44,"tag":97,"props":198,"children":199},{"emptyLinePlaceholder":131},[200],{"type":50,"value":134},{"type":44,"tag":97,"props":202,"children":203},{"class":99,"line":137},[204],{"type":44,"tag":97,"props":205,"children":206},{},[207],{"type":50,"value":143},{"type":44,"tag":97,"props":209,"children":210},{"class":99,"line":146},[211],{"type":44,"tag":97,"props":212,"children":213},{},[214],{"type":50,"value":215},"Auth-Service[Auth Service]\n",{"type":44,"tag":97,"props":217,"children":219},{"class":99,"line":218},7,[220],{"type":44,"tag":97,"props":221,"children":222},{},[223],{"type":50,"value":224},"User DB[User Database]\n",{"type":44,"tag":80,"props":226,"children":228},{"id":227},"_3-quote-labels-with-special-characters",[229],{"type":50,"value":230},"3. Quote Labels with Special Characters",{"type":44,"tag":53,"props":232,"children":233},{},[234],{"type":50,"value":235},"Wrap in double quotes if a label contains parentheses, brackets, colons, math operators, or anything that could be parsed as Mermaid syntax.",{"type":44,"tag":87,"props":237,"children":239},{"className":89,"code":238,"language":64,"meta":91,"style":91},"%% CORRECT\nA[\"Process (async)\"]\nB[\"array[0]\"]\nC[\"ratio: 3\u002F4\"]\nD[\"calculate(x, y)\"]\n\n%% WRONG\nA[Process (async)]\nB[array[0]]\n",[240],{"type":44,"tag":59,"props":241,"children":242},{"__ignoreMap":91},[243,250,258,266,274,282,289,296,305],{"type":44,"tag":97,"props":244,"children":245},{"class":99,"line":100},[246],{"type":44,"tag":97,"props":247,"children":248},{},[249],{"type":50,"value":106},{"type":44,"tag":97,"props":251,"children":252},{"class":99,"line":109},[253],{"type":44,"tag":97,"props":254,"children":255},{},[256],{"type":50,"value":257},"A[\"Process (async)\"]\n",{"type":44,"tag":97,"props":259,"children":260},{"class":99,"line":118},[261],{"type":44,"tag":97,"props":262,"children":263},{},[264],{"type":50,"value":265},"B[\"array[0]\"]\n",{"type":44,"tag":97,"props":267,"children":268},{"class":99,"line":127},[269],{"type":44,"tag":97,"props":270,"children":271},{},[272],{"type":50,"value":273},"C[\"ratio: 3\u002F4\"]\n",{"type":44,"tag":97,"props":275,"children":276},{"class":99,"line":137},[277],{"type":44,"tag":97,"props":278,"children":279},{},[280],{"type":50,"value":281},"D[\"calculate(x, y)\"]\n",{"type":44,"tag":97,"props":283,"children":284},{"class":99,"line":146},[285],{"type":44,"tag":97,"props":286,"children":287},{"emptyLinePlaceholder":131},[288],{"type":50,"value":134},{"type":44,"tag":97,"props":290,"children":291},{"class":99,"line":218},[292],{"type":44,"tag":97,"props":293,"children":294},{},[295],{"type":50,"value":143},{"type":44,"tag":97,"props":297,"children":299},{"class":99,"line":298},8,[300],{"type":44,"tag":97,"props":301,"children":302},{},[303],{"type":50,"value":304},"A[Process (async)]\n",{"type":44,"tag":97,"props":306,"children":308},{"class":99,"line":307},9,[309],{"type":44,"tag":97,"props":310,"children":311},{},[312],{"type":50,"value":313},"B[array[0]]\n",{"type":44,"tag":80,"props":315,"children":317},{"id":316},"_4-no-html-or-markdown-in-labels",[318],{"type":50,"value":319},"4. No HTML or Markdown in Labels",{"type":44,"tag":53,"props":321,"children":322},{},[323,325,331,333,339],{"type":50,"value":324},"Use commas or semicolons instead of ",{"type":44,"tag":59,"props":326,"children":328},{"className":327},[],[329],{"type":50,"value":330},"\u003Cbr>",{"type":50,"value":332}," or ",{"type":44,"tag":59,"props":334,"children":336},{"className":335},[],[337],{"type":50,"value":338},"\\n",{"type":50,"value":340},".",{"type":44,"tag":87,"props":342,"children":344},{"className":89,"code":343,"language":64,"meta":91,"style":91},"%% CORRECT\nA[\"Input: raw data, Output: processed\"]\n\n%% WRONG\nA[Input: raw data\u003Cbr>Output: processed]\n",[345],{"type":44,"tag":59,"props":346,"children":347},{"__ignoreMap":91},[348,355,363,370,377],{"type":44,"tag":97,"props":349,"children":350},{"class":99,"line":100},[351],{"type":44,"tag":97,"props":352,"children":353},{},[354],{"type":50,"value":106},{"type":44,"tag":97,"props":356,"children":357},{"class":99,"line":109},[358],{"type":44,"tag":97,"props":359,"children":360},{},[361],{"type":50,"value":362},"A[\"Input: raw data, Output: processed\"]\n",{"type":44,"tag":97,"props":364,"children":365},{"class":99,"line":118},[366],{"type":44,"tag":97,"props":367,"children":368},{"emptyLinePlaceholder":131},[369],{"type":50,"value":134},{"type":44,"tag":97,"props":371,"children":372},{"class":99,"line":127},[373],{"type":44,"tag":97,"props":374,"children":375},{},[376],{"type":50,"value":143},{"type":44,"tag":97,"props":378,"children":379},{"class":99,"line":137},[380],{"type":44,"tag":97,"props":381,"children":382},{},[383],{"type":50,"value":384},"A[Input: raw data\u003Cbr>Output: processed]\n",{"type":44,"tag":80,"props":386,"children":388},{"id":387},"_5-no-chained-arrows",[389],{"type":50,"value":390},"5. No Chained Arrows",{"type":44,"tag":53,"props":392,"children":393},{},[394],{"type":50,"value":395},"Write each connection on its own line.",{"type":44,"tag":87,"props":397,"children":399},{"className":89,"code":398,"language":64,"meta":91,"style":91},"%% CORRECT\nA --> B\nB --> C\n\n%% WRONG\nA --> B --> C\n",[400],{"type":44,"tag":59,"props":401,"children":402},{"__ignoreMap":91},[403,410,418,426,433,440],{"type":44,"tag":97,"props":404,"children":405},{"class":99,"line":100},[406],{"type":44,"tag":97,"props":407,"children":408},{},[409],{"type":50,"value":106},{"type":44,"tag":97,"props":411,"children":412},{"class":99,"line":109},[413],{"type":44,"tag":97,"props":414,"children":415},{},[416],{"type":50,"value":417},"A --> B\n",{"type":44,"tag":97,"props":419,"children":420},{"class":99,"line":118},[421],{"type":44,"tag":97,"props":422,"children":423},{},[424],{"type":50,"value":425},"B --> C\n",{"type":44,"tag":97,"props":427,"children":428},{"class":99,"line":127},[429],{"type":44,"tag":97,"props":430,"children":431},{"emptyLinePlaceholder":131},[432],{"type":50,"value":134},{"type":44,"tag":97,"props":434,"children":435},{"class":99,"line":137},[436],{"type":44,"tag":97,"props":437,"children":438},{},[439],{"type":50,"value":143},{"type":44,"tag":97,"props":441,"children":442},{"class":99,"line":146},[443],{"type":44,"tag":97,"props":444,"children":445},{},[446],{"type":50,"value":447},"A --> B --> C\n",{"type":44,"tag":80,"props":449,"children":451},{"id":450},"_6-comments-on-their-own-lines",[452],{"type":50,"value":453},"6. Comments on Their Own Lines",{"type":44,"tag":53,"props":455,"children":456},{},[457,463],{"type":44,"tag":59,"props":458,"children":460},{"className":459},[],[461],{"type":50,"value":462},"%%",{"type":50,"value":464}," comments must not appear at the end of code lines.",{"type":44,"tag":87,"props":466,"children":468},{"className":89,"code":467,"language":64,"meta":91,"style":91},"%% CORRECT\n%% This is a comment\nA --> B\n\n%% WRONG\nA --> B %% connection\n",[469],{"type":44,"tag":59,"props":470,"children":471},{"__ignoreMap":91},[472,479,487,494,501,508],{"type":44,"tag":97,"props":473,"children":474},{"class":99,"line":100},[475],{"type":44,"tag":97,"props":476,"children":477},{},[478],{"type":50,"value":106},{"type":44,"tag":97,"props":480,"children":481},{"class":99,"line":109},[482],{"type":44,"tag":97,"props":483,"children":484},{},[485],{"type":50,"value":486},"%% This is a comment\n",{"type":44,"tag":97,"props":488,"children":489},{"class":99,"line":118},[490],{"type":44,"tag":97,"props":491,"children":492},{},[493],{"type":50,"value":417},{"type":44,"tag":97,"props":495,"children":496},{"class":99,"line":127},[497],{"type":44,"tag":97,"props":498,"children":499},{"emptyLinePlaceholder":131},[500],{"type":50,"value":134},{"type":44,"tag":97,"props":502,"children":503},{"class":99,"line":137},[504],{"type":44,"tag":97,"props":505,"children":506},{},[507],{"type":50,"value":143},{"type":44,"tag":97,"props":509,"children":510},{"class":99,"line":146},[511],{"type":44,"tag":97,"props":512,"children":513},{},[514],{"type":50,"value":515},"A --> B %% connection\n",{"type":44,"tag":80,"props":517,"children":519},{"id":518},"_7-style-only-defined-nodes",[520],{"type":50,"value":521},"7. Style Only Defined Nodes",{"type":44,"tag":53,"props":523,"children":524},{},[525,527,533],{"type":50,"value":526},"Apply ",{"type":44,"tag":59,"props":528,"children":530},{"className":529},[],[531],{"type":50,"value":532},"style",{"type":50,"value":534}," directives only after the node has been defined.",{"type":44,"tag":87,"props":536,"children":538},{"className":89,"code":537,"language":64,"meta":91,"style":91},"%% CORRECT\nA[Server]\nstyle A fill:#f9f,stroke:#333\n\n%% WRONG\nstyle A fill:#f9f,stroke:#333\nA[Server]\n",[539],{"type":44,"tag":59,"props":540,"children":541},{"__ignoreMap":91},[542,549,557,565,572,579,586],{"type":44,"tag":97,"props":543,"children":544},{"class":99,"line":100},[545],{"type":44,"tag":97,"props":546,"children":547},{},[548],{"type":50,"value":106},{"type":44,"tag":97,"props":550,"children":551},{"class":99,"line":109},[552],{"type":44,"tag":97,"props":553,"children":554},{},[555],{"type":50,"value":556},"A[Server]\n",{"type":44,"tag":97,"props":558,"children":559},{"class":99,"line":118},[560],{"type":44,"tag":97,"props":561,"children":562},{},[563],{"type":50,"value":564},"style A fill:#f9f,stroke:#333\n",{"type":44,"tag":97,"props":566,"children":567},{"class":99,"line":127},[568],{"type":44,"tag":97,"props":569,"children":570},{"emptyLinePlaceholder":131},[571],{"type":50,"value":134},{"type":44,"tag":97,"props":573,"children":574},{"class":99,"line":137},[575],{"type":44,"tag":97,"props":576,"children":577},{},[578],{"type":50,"value":143},{"type":44,"tag":97,"props":580,"children":581},{"class":99,"line":146},[582],{"type":44,"tag":97,"props":583,"children":584},{},[585],{"type":50,"value":564},{"type":44,"tag":97,"props":587,"children":588},{"class":99,"line":218},[589],{"type":44,"tag":97,"props":590,"children":591},{},[592],{"type":50,"value":556},{"type":44,"tag":80,"props":594,"children":596},{"id":595},"_8-subgraph-names",[597],{"type":50,"value":598},"8. Subgraph Names",{"type":44,"tag":53,"props":600,"children":601},{},[602],{"type":50,"value":603},"Use underscores or wrap in quotes — no bare spaces.",{"type":44,"tag":87,"props":605,"children":607},{"className":89,"code":606,"language":64,"meta":91,"style":91},"%% CORRECT\nsubgraph Backend_Services\nsubgraph \"Backend Services\"\n\n%% WRONG\nsubgraph Backend Services\n",[608],{"type":44,"tag":59,"props":609,"children":610},{"__ignoreMap":91},[611,618,626,634,641,648],{"type":44,"tag":97,"props":612,"children":613},{"class":99,"line":100},[614],{"type":44,"tag":97,"props":615,"children":616},{},[617],{"type":50,"value":106},{"type":44,"tag":97,"props":619,"children":620},{"class":99,"line":109},[621],{"type":44,"tag":97,"props":622,"children":623},{},[624],{"type":50,"value":625},"subgraph Backend_Services\n",{"type":44,"tag":97,"props":627,"children":628},{"class":99,"line":118},[629],{"type":44,"tag":97,"props":630,"children":631},{},[632],{"type":50,"value":633},"subgraph \"Backend Services\"\n",{"type":44,"tag":97,"props":635,"children":636},{"class":99,"line":127},[637],{"type":44,"tag":97,"props":638,"children":639},{"emptyLinePlaceholder":131},[640],{"type":50,"value":134},{"type":44,"tag":97,"props":642,"children":643},{"class":99,"line":137},[644],{"type":44,"tag":97,"props":645,"children":646},{},[647],{"type":50,"value":143},{"type":44,"tag":97,"props":649,"children":650},{"class":99,"line":146},[651],{"type":44,"tag":97,"props":652,"children":653},{},[654],{"type":50,"value":655},"subgraph Backend Services\n",{"type":44,"tag":80,"props":657,"children":659},{"id":658},"_9-validate-before-presenting",[660],{"type":50,"value":661},"9. Validate Before Presenting",{"type":44,"tag":53,"props":663,"children":664},{},[665],{"type":50,"value":666},"Trace through the diagram to confirm:",{"type":44,"tag":668,"props":669,"children":670},"ul",{},[671,677,682,687,692,697,702],{"type":44,"tag":672,"props":673,"children":674},"li",{},[675],{"type":50,"value":676},"Every node on its own line with unique alphanumeric ID",{"type":44,"tag":672,"props":678,"children":679},{},[680],{"type":50,"value":681},"No chained arrows",{"type":44,"tag":672,"props":683,"children":684},{},[685],{"type":50,"value":686},"Special-character labels double-quoted",{"type":44,"tag":672,"props":688,"children":689},{},[690],{"type":50,"value":691},"No HTML\u002FMarkdown in labels",{"type":44,"tag":672,"props":693,"children":694},{},[695],{"type":50,"value":696},"Comments on own lines",{"type":44,"tag":672,"props":698,"children":699},{},[700],{"type":50,"value":701},"Styles reference defined nodes only",{"type":44,"tag":672,"props":703,"children":704},{},[705],{"type":50,"value":706},"Subgraph names quoted or underscored",{"type":44,"tag":68,"props":708,"children":710},{"id":709},"diagram-type-quick-reference",[711],{"type":50,"value":712},"Diagram Type Quick Reference",{"type":44,"tag":714,"props":715,"children":716},"table",{},[717,741],{"type":44,"tag":718,"props":719,"children":720},"thead",{},[721],{"type":44,"tag":722,"props":723,"children":724},"tr",{},[725,731,736],{"type":44,"tag":726,"props":727,"children":728},"th",{},[729],{"type":50,"value":730},"Type",{"type":44,"tag":726,"props":732,"children":733},{},[734],{"type":50,"value":735},"Directive",{"type":44,"tag":726,"props":737,"children":738},{},[739],{"type":50,"value":740},"Use For",{"type":44,"tag":742,"props":743,"children":744},"tbody",{},[745,776,798,820,842,864,886],{"type":44,"tag":722,"props":746,"children":747},{},[748,754,771],{"type":44,"tag":749,"props":750,"children":751},"td",{},[752],{"type":50,"value":753},"Flowchart",{"type":44,"tag":749,"props":755,"children":756},{},[757,763,765],{"type":44,"tag":59,"props":758,"children":760},{"className":759},[],[761],{"type":50,"value":762},"flowchart TD",{"type":50,"value":764}," \u002F ",{"type":44,"tag":59,"props":766,"children":768},{"className":767},[],[769],{"type":50,"value":770},"flowchart LR",{"type":44,"tag":749,"props":772,"children":773},{},[774],{"type":50,"value":775},"Architecture, data flow, decisions",{"type":44,"tag":722,"props":777,"children":778},{},[779,784,793],{"type":44,"tag":749,"props":780,"children":781},{},[782],{"type":50,"value":783},"Sequence",{"type":44,"tag":749,"props":785,"children":786},{},[787],{"type":44,"tag":59,"props":788,"children":790},{"className":789},[],[791],{"type":50,"value":792},"sequenceDiagram",{"type":44,"tag":749,"props":794,"children":795},{},[796],{"type":50,"value":797},"API calls, request\u002Fresponse",{"type":44,"tag":722,"props":799,"children":800},{},[801,806,815],{"type":44,"tag":749,"props":802,"children":803},{},[804],{"type":50,"value":805},"Class",{"type":44,"tag":749,"props":807,"children":808},{},[809],{"type":44,"tag":59,"props":810,"children":812},{"className":811},[],[813],{"type":50,"value":814},"classDiagram",{"type":44,"tag":749,"props":816,"children":817},{},[818],{"type":50,"value":819},"Type relationships, OOP",{"type":44,"tag":722,"props":821,"children":822},{},[823,828,837],{"type":44,"tag":749,"props":824,"children":825},{},[826],{"type":50,"value":827},"State",{"type":44,"tag":749,"props":829,"children":830},{},[831],{"type":44,"tag":59,"props":832,"children":834},{"className":833},[],[835],{"type":50,"value":836},"stateDiagram-v2",{"type":44,"tag":749,"props":838,"children":839},{},[840],{"type":50,"value":841},"State machines, lifecycles",{"type":44,"tag":722,"props":843,"children":844},{},[845,850,859],{"type":44,"tag":749,"props":846,"children":847},{},[848],{"type":50,"value":849},"ER",{"type":44,"tag":749,"props":851,"children":852},{},[853],{"type":44,"tag":59,"props":854,"children":856},{"className":855},[],[857],{"type":50,"value":858},"erDiagram",{"type":44,"tag":749,"props":860,"children":861},{},[862],{"type":50,"value":863},"Database schemas, entities",{"type":44,"tag":722,"props":865,"children":866},{},[867,872,881],{"type":44,"tag":749,"props":868,"children":869},{},[870],{"type":50,"value":871},"Gantt",{"type":44,"tag":749,"props":873,"children":874},{},[875],{"type":44,"tag":59,"props":876,"children":878},{"className":877},[],[879],{"type":50,"value":880},"gantt",{"type":44,"tag":749,"props":882,"children":883},{},[884],{"type":50,"value":885},"Timelines, schedules",{"type":44,"tag":722,"props":887,"children":888},{},[889,894,903],{"type":44,"tag":749,"props":890,"children":891},{},[892],{"type":50,"value":893},"Git",{"type":44,"tag":749,"props":895,"children":896},{},[897],{"type":44,"tag":59,"props":898,"children":900},{"className":899},[],[901],{"type":50,"value":902},"gitGraph",{"type":44,"tag":749,"props":904,"children":905},{},[906],{"type":50,"value":907},"Branch strategies, merges",{"type":44,"tag":68,"props":909,"children":911},{"id":910},"common-patterns",[912],{"type":50,"value":913},"Common Patterns",{"type":44,"tag":80,"props":915,"children":917},{"id":916},"architecture-diagram",[918],{"type":50,"value":919},"Architecture Diagram",{"type":44,"tag":87,"props":921,"children":923},{"className":89,"code":922,"language":64,"meta":91,"style":91},"flowchart TD\n    Client[Browser Client]\n    API[API Gateway]\n    Auth[Auth Service]\n    DB[(Database)]\n\n    Client --> API\n    API --> Auth\n    Auth --> DB\n",[924],{"type":44,"tag":59,"props":925,"children":926},{"__ignoreMap":91},[927,935,943,951,959,967,974,982,990],{"type":44,"tag":97,"props":928,"children":929},{"class":99,"line":100},[930],{"type":44,"tag":97,"props":931,"children":932},{},[933],{"type":50,"value":934},"flowchart TD\n",{"type":44,"tag":97,"props":936,"children":937},{"class":99,"line":109},[938],{"type":44,"tag":97,"props":939,"children":940},{},[941],{"type":50,"value":942},"    Client[Browser Client]\n",{"type":44,"tag":97,"props":944,"children":945},{"class":99,"line":118},[946],{"type":44,"tag":97,"props":947,"children":948},{},[949],{"type":50,"value":950},"    API[API Gateway]\n",{"type":44,"tag":97,"props":952,"children":953},{"class":99,"line":127},[954],{"type":44,"tag":97,"props":955,"children":956},{},[957],{"type":50,"value":958},"    Auth[Auth Service]\n",{"type":44,"tag":97,"props":960,"children":961},{"class":99,"line":137},[962],{"type":44,"tag":97,"props":963,"children":964},{},[965],{"type":50,"value":966},"    DB[(Database)]\n",{"type":44,"tag":97,"props":968,"children":969},{"class":99,"line":146},[970],{"type":44,"tag":97,"props":971,"children":972},{"emptyLinePlaceholder":131},[973],{"type":50,"value":134},{"type":44,"tag":97,"props":975,"children":976},{"class":99,"line":218},[977],{"type":44,"tag":97,"props":978,"children":979},{},[980],{"type":50,"value":981},"    Client --> API\n",{"type":44,"tag":97,"props":983,"children":984},{"class":99,"line":298},[985],{"type":44,"tag":97,"props":986,"children":987},{},[988],{"type":50,"value":989},"    API --> Auth\n",{"type":44,"tag":97,"props":991,"children":992},{"class":99,"line":307},[993],{"type":44,"tag":97,"props":994,"children":995},{},[996],{"type":50,"value":997},"    Auth --> DB\n",{"type":44,"tag":80,"props":999,"children":1001},{"id":1000},"sequence-flow",[1002],{"type":50,"value":1003},"Sequence Flow",{"type":44,"tag":87,"props":1005,"children":1007},{"className":89,"code":1006,"language":64,"meta":91,"style":91},"sequenceDiagram\n    participant C as Client\n    participant S as Server\n    participant D as Database\n\n    C->>S: POST \u002Fapi\u002Fdata\n    S->>D: INSERT query\n    D-->>S: Result\n    S-->>C: 201 Created\n",[1008],{"type":44,"tag":59,"props":1009,"children":1010},{"__ignoreMap":91},[1011,1019,1027,1035,1043,1050,1058,1066,1074],{"type":44,"tag":97,"props":1012,"children":1013},{"class":99,"line":100},[1014],{"type":44,"tag":97,"props":1015,"children":1016},{},[1017],{"type":50,"value":1018},"sequenceDiagram\n",{"type":44,"tag":97,"props":1020,"children":1021},{"class":99,"line":109},[1022],{"type":44,"tag":97,"props":1023,"children":1024},{},[1025],{"type":50,"value":1026},"    participant C as Client\n",{"type":44,"tag":97,"props":1028,"children":1029},{"class":99,"line":118},[1030],{"type":44,"tag":97,"props":1031,"children":1032},{},[1033],{"type":50,"value":1034},"    participant S as Server\n",{"type":44,"tag":97,"props":1036,"children":1037},{"class":99,"line":127},[1038],{"type":44,"tag":97,"props":1039,"children":1040},{},[1041],{"type":50,"value":1042},"    participant D as Database\n",{"type":44,"tag":97,"props":1044,"children":1045},{"class":99,"line":137},[1046],{"type":44,"tag":97,"props":1047,"children":1048},{"emptyLinePlaceholder":131},[1049],{"type":50,"value":134},{"type":44,"tag":97,"props":1051,"children":1052},{"class":99,"line":146},[1053],{"type":44,"tag":97,"props":1054,"children":1055},{},[1056],{"type":50,"value":1057},"    C->>S: POST \u002Fapi\u002Fdata\n",{"type":44,"tag":97,"props":1059,"children":1060},{"class":99,"line":218},[1061],{"type":44,"tag":97,"props":1062,"children":1063},{},[1064],{"type":50,"value":1065},"    S->>D: INSERT query\n",{"type":44,"tag":97,"props":1067,"children":1068},{"class":99,"line":298},[1069],{"type":44,"tag":97,"props":1070,"children":1071},{},[1072],{"type":50,"value":1073},"    D-->>S: Result\n",{"type":44,"tag":97,"props":1075,"children":1076},{"class":99,"line":307},[1077],{"type":44,"tag":97,"props":1078,"children":1079},{},[1080],{"type":50,"value":1081},"    S-->>C: 201 Created\n",{"type":44,"tag":68,"props":1083,"children":1085},{"id":1084},"fixing-broken-diagrams",[1086],{"type":50,"value":1087},"Fixing Broken Diagrams",{"type":44,"tag":53,"props":1089,"children":1090},{},[1091],{"type":50,"value":1092},"When asked to fix a broken Mermaid diagram:",{"type":44,"tag":1094,"props":1095,"children":1096},"ol",{},[1097,1108,1118,1128],{"type":44,"tag":672,"props":1098,"children":1099},{},[1100,1106],{"type":44,"tag":1101,"props":1102,"children":1103},"strong",{},[1104],{"type":50,"value":1105},"Identify the error type",{"type":50,"value":1107}," — parse errors almost always come from one of: chained arrows, unquoted special characters, bare subgraph names, or HTML in labels.",{"type":44,"tag":672,"props":1109,"children":1110},{},[1111,1116],{"type":44,"tag":1101,"props":1112,"children":1113},{},[1114],{"type":50,"value":1115},"Apply the relevant rules above",{"type":50,"value":1117}," — check each rule against the broken code line by line.",{"type":44,"tag":672,"props":1119,"children":1120},{},[1121,1126],{"type":44,"tag":1101,"props":1122,"children":1123},{},[1124],{"type":50,"value":1125},"Rewrite the offending lines",{"type":50,"value":1127}," — fix only what is broken; preserve the diagram's intent.",{"type":44,"tag":672,"props":1129,"children":1130},{},[1131,1136],{"type":44,"tag":1101,"props":1132,"children":1133},{},[1134],{"type":50,"value":1135},"Re-validate",{"type":50,"value":1137}," using the checklist in Rule 9 before presenting the corrected diagram.",{"type":44,"tag":53,"props":1139,"children":1140},{},[1141],{"type":50,"value":1142},"If the diagram is structurally ambiguous (missing nodes, unclear relationships), ask one clarifying question before rewriting.",{"type":44,"tag":532,"props":1144,"children":1145},{},[1146],{"type":50,"value":1147},"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":1149,"total":1308},[1150,1171,1186,1199,1212,1225,1238,1251,1265,1276,1287,1298],{"slug":1151,"name":1151,"fn":1152,"description":1153,"org":1154,"tags":1155,"stars":1168,"repoUrl":1169,"updatedAt":1170},"configurator","configure auction smart contract parameters","Configure CCA (Continuous Clearing Auction) smart contract parameters through an interactive bulk form flow. Use when user says \"configure auction\", \"cca auction\", \"setup token auction\", \"auction configuration\", \"continuous auction\", or mentions CCA contracts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1156,1159,1162,1165],{"name":1157,"slug":1158,"type":15},"Configuration","configuration",{"name":1160,"slug":1161,"type":15},"Ethereum","ethereum",{"name":1163,"slug":1164,"type":15},"Smart Contracts","smart-contracts",{"name":1166,"slug":1167,"type":15},"Web3","web3",215,"https:\u002F\u002Fgithub.com\u002FUniswap\u002Funiswap-ai","2026-07-17T06:08:08.974641",{"slug":1172,"name":1172,"fn":1173,"description":1174,"org":1175,"tags":1176,"stars":1168,"repoUrl":1169,"updatedAt":1185},"copy-trade","copy trades from crypto wallets","This skill should be used when the user asks to \"copy trades from\" a wallet, \"mirror a wallet\", \"follow this address\", set up \"copy trading\", \"track and replicate a trader\", or mirror another account's swaps bounded by guardrails. Watches a target wallet and mirrors its trades, filtered by chain, asset match, position size, and the follower's own portfolio state.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1177,1180,1181,1184],{"name":1178,"slug":1179,"type":15},"Automation","automation",{"name":1160,"slug":1161,"type":15},{"name":1182,"slug":1183,"type":15},"Trading","trading",{"name":1166,"slug":1167,"type":15},"2026-07-17T06:04:21.974052",{"slug":1187,"name":1187,"fn":1188,"description":1189,"org":1190,"tags":1191,"stars":1168,"repoUrl":1169,"updatedAt":1198},"dca-bot","automate dollar cost average token purchases","This skill should be used when the user wants to \"dca into\" a token, \"buy X every day\", set up a \"recurring buy\", \"dollar cost average\" into an asset, \"schedule a buy\", or \"auto-buy on a dip\". Buys a fixed amount into a token on a schedule, optionally only when a condition holds (for example only when ETH is below a price threshold). The host agent's scheduler wakes the skill on a cadence; each wake is one self-contained run.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1192,1193,1196,1197],{"name":1178,"slug":1179,"type":15},{"name":1194,"slug":1195,"type":15},"DeFi","defi",{"name":1182,"slug":1183,"type":15},{"name":1166,"slug":1167,"type":15},"2026-07-17T06:05:37.160647",{"slug":1200,"name":1200,"fn":1201,"description":1202,"org":1203,"tags":1204,"stars":1168,"repoUrl":1169,"updatedAt":1211},"deployer","deploy Uniswap CCA smart contracts","Deploy CCA (Continuous Clearing Auction) smart contracts using the Factory pattern. Use when user says \"deploy auction\", \"deploy cca\", \"factory deployment\", or wants to deploy a configured auction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1205,1208,1209,1210],{"name":1206,"slug":1207,"type":15},"Deployment","deployment",{"name":1160,"slug":1161,"type":15},{"name":1163,"slug":1164,"type":15},{"name":1166,"slug":1167,"type":15},"2026-07-17T06:08:09.661977",{"slug":1213,"name":1213,"fn":1214,"description":1215,"org":1216,"tags":1217,"stars":1168,"repoUrl":1169,"updatedAt":1224},"index-bot","create and rebalance asset portfolios","This skill should be used when the user asks to \"create an index\", \"build a basket of top assets\", \"buy a weighted basket\", \"make a portfolio of assets\", \"equal-weight basket\", \"rebalance my portfolio\", \"track the top N tokens\", or wants an automated, weighted multi-asset basket that buys in one pass and rebalances on a cadence. Builds the basket spec, delegates each buy and rebalance swap to the swap-integration Trading API flow, and records target weights in state.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1218,1219,1222,1223],{"name":1160,"slug":1161,"type":15},{"name":1220,"slug":1221,"type":15},"Portfolio Management","portfolio-management",{"name":1182,"slug":1183,"type":15},{"name":1166,"slug":1167,"type":15},"2026-07-17T06:04:22.328253",{"slug":1226,"name":1226,"fn":1227,"description":1228,"org":1229,"tags":1230,"stars":1168,"repoUrl":1169,"updatedAt":1237},"liquidity-planner","plan and create liquidity positions","This skill should be used when the user asks to \"provide liquidity\", \"create LP position\", \"add liquidity to pool\", \"become a liquidity provider\", \"create v3 position\", \"create v4 position\", \"concentrated liquidity\", \"set price range\", or mentions providing liquidity, LP positions, or liquidity pools on Uniswap. Generates deep links to create positions in the Uniswap interface.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1231,1232,1233,1236],{"name":1194,"slug":1195,"type":15},{"name":1160,"slug":1161,"type":15},{"name":1234,"slug":1235,"type":15},"Liquidity","liquidity",{"name":1166,"slug":1167,"type":15},"2026-07-17T06:08:09.315325",{"slug":1239,"name":1239,"fn":1240,"description":1241,"org":1242,"tags":1243,"stars":1168,"repoUrl":1169,"updatedAt":1250},"lp-integration","integrate Uniswap liquidity provisioning","Integrate Uniswap liquidity provisioning (LP) into applications via the LP REST API. Use when the user says \"LP API\", \"liquidity provisioning API\", \"provide liquidity programmatically\", \"create LP position via API\", \"add liquidity via API\", \"increase liquidity\", \"decrease liquidity\", \"remove liquidity\", \"claim LP fees\", \"collect LP fees\", \"manage LP positions in code\", or mentions building a backend, bot, or frontend that creates or manages Uniswap v2\u002Fv3\u002Fv4 liquidity positions through an API. Also use when debugging LP API calls (e.g. \u002Flp\u002Fcreate, \u002Flp\u002Fcheck_approval, \u002Flp\u002Fincrease, \u002Flp\u002Fdecrease, \u002Flp\u002Fclaim_fees), unexpected response fields, the approval or EIP-712 permit flow, or transaction-building errors for liquidity positions. For generating deep links to the Uniswap web app instead of calling the API, use the liquidity-planner skill; for using the Uniswap v4 SDK directly rather than the REST API, use the v4-sdk-integration skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1244,1247,1248,1249],{"name":1245,"slug":1246,"type":15},"API Development","api-development",{"name":1194,"slug":1195,"type":15},{"name":1234,"slug":1235,"type":15},{"name":1166,"slug":1167,"type":15},"2026-07-17T06:08:13.704465",{"slug":1252,"name":1252,"fn":1253,"description":1254,"org":1255,"tags":1256,"stars":1168,"repoUrl":1169,"updatedAt":1264},"pay-with-any-token","pay HTTP 402 challenges with Uniswap","Pay HTTP 402 payment challenges using tokens via the Tempo CLI and Uniswap Trading API. Use when the user encounters a 402 Payment Required response, needs to fulfill a machine payment, mentions \"MPP\", \"Tempo payment\", \"pay for API access\", \"HTTP 402\", \"x402\", \"machine payment protocol\", \"pay-with-any-token\", \"use tempo\", \"tempo request\", or \"tempo wallet\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1257,1258,1261,1262],{"name":1194,"slug":1195,"type":15},{"name":1259,"slug":1260,"type":15},"Payments","payments",{"name":1182,"slug":1183,"type":15},{"name":1263,"slug":1263,"type":15},"x402","2026-07-17T06:04:29.756086",{"slug":1266,"name":1266,"fn":1267,"description":1268,"org":1269,"tags":1270,"stars":1168,"repoUrl":1169,"updatedAt":1275},"pay-with-app","pay 402 payment challenges","Pay HTTP 402 payment challenges issued by OKX's Agent Payments Protocol (APP) on X Layer using tokens from any chain via the Uniswap Trading API. Use this skill whenever the user encounters a 402 challenge whose network resolves to X Layer (chain 196), mentions \"APP\", \"Agent Payments Protocol\", \"OKX agent payment\", \"OKX Onchain OS\", \"OKX agentic wallet\", \"x402 on X Layer\", \"USDT0\", \"x42\", \"Instant Payment\", \"Batch Payment\", \"pay for X Layer API\", or wants to pay an OKX-backed merchant. Even when the user does not explicitly say APP, prefer this skill for any 402 challenge whose network resolves to X Layer (chain 196). For 402 challenges on other chains (Ethereum, Base, Arbitrum, Tempo) use pay-with-any-token instead.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1271,1272,1273,1274],{"name":1245,"slug":1246,"type":15},{"name":1259,"slug":1260,"type":15},{"name":1166,"slug":1167,"type":15},{"name":1263,"slug":1263,"type":15},"2026-07-17T06:07:38.795043",{"slug":1277,"name":1277,"fn":1278,"description":1279,"org":1280,"tags":1281,"stars":1168,"repoUrl":1169,"updatedAt":1286},"swap-integration","integrate Uniswap swap functionality","Integrate Uniswap swaps into applications. Use when user says \"integrate swaps\", \"uniswap\", \"trading api\", \"add swap functionality\", \"build a swap frontend\", \"create a swap script\", \"smart contract swap integration\", \"use Universal Router\", \"Trading API\", or mentions swapping tokens via Uniswap.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1282,1283,1284,1285],{"name":1245,"slug":1246,"type":15},{"name":1194,"slug":1195,"type":15},{"name":1182,"slug":1183,"type":15},{"name":1166,"slug":1167,"type":15},"2026-07-17T06:08:10.354222",{"slug":1288,"name":1288,"fn":1289,"description":1290,"org":1291,"tags":1292,"stars":1168,"repoUrl":1169,"updatedAt":1297},"swap-planner","plan and execute token swaps","This skill should be used when the user asks to \"swap tokens\", \"trade ETH for USDC\", \"exchange tokens on Uniswap\", \"buy tokens\", \"sell tokens\", \"convert ETH to stablecoins\", \"find memecoins\", \"discover tokens\", \"research tokens\", \"tokens to buy\", \"find tokens to swap\", \"what should I buy\", or mentions swapping, trading, researching, discovering, buying, or exchanging tokens on any Uniswap-supported chain. Supports both known token swaps and token discovery workflows (discovery uses keyword search and web search — there is no live \"trending\" feed). Generates deep links to execute swaps in the Uniswap interface.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1293,1294,1295,1296],{"name":1194,"slug":1195,"type":15},{"name":1234,"slug":1235,"type":15},{"name":1182,"slug":1183,"type":15},{"name":1166,"slug":1167,"type":15},"2026-07-17T06:08:10.008152",{"slug":1299,"name":1299,"fn":1300,"description":1301,"org":1302,"tags":1303,"stars":1168,"repoUrl":1169,"updatedAt":1307},"v4-hook-generator","generate Uniswap v4 hook contracts","Generate Uniswap v4 hook contracts via OpenZeppelin MCP. Use when building custom swap logic, async swaps, hook-owned liquidity, custom curves, dynamic fees, MEV protection, limit orders, or oracle hooks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1304,1305,1306],{"name":1160,"slug":1161,"type":15},{"name":1163,"slug":1164,"type":15},{"name":1166,"slug":1167,"type":15},"2026-07-17T06:04:19.17669",19,{"items":1310,"total":127},[1311,1324,1343,1350],{"slug":1312,"name":1312,"fn":1313,"description":1314,"org":1315,"tags":1316,"stars":25,"repoUrl":26,"updatedAt":1323},"debug-issue","debug code errors and crashes","Systematic debugging workflow for any code error, crash, test failure, or unexpected behavior. Use this skill whenever a user mentions an error, bug, exception, crash, test failure, or says something \"isn't working\", \"is broken\", \"keeps failing\", or \"isn't behaving as expected\" — even if they haven't used the word \"debug\". Also trigger when the user pastes a stack trace, error message, or unexpected output and asks why. Don't wait for the user to say \"debug\"; if they're describing a problem with running code, this skill applies. Trigger phrases include: \"getting an error\", \"this crashes\", \"why is this failing\", \"help me fix this\", \"it broke\", \"not working\", \"exception thrown\", \"stack trace\", \"test is failing\", \"something is wrong with\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1317,1320],{"name":1318,"slug":1319,"type":15},"Code Analysis","code-analysis",{"name":1321,"slug":1322,"type":15},"Debugging","debugging","2026-07-17T06:08:14.044038",{"slug":1325,"name":1325,"fn":1326,"description":1327,"org":1328,"tags":1329,"stars":25,"repoUrl":26,"updatedAt":1342},"generate-document","generate professional documents in multiple formats","Generate professional documents in multiple formats (PDF, DOCX, HTML, ODT, EPUB, RTF). Use when the user says \"make a PDF\", \"generate a report\", \"create a document\", \"export to Word\", \"make a Word doc\", \"convert to PDF\", \"export findings\", \"create documentation\", or wants to save analysis results as a formatted document.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1330,1333,1336,1339],{"name":1331,"slug":1332,"type":15},"Documents","documents",{"name":1334,"slug":1335,"type":15},"DOCX","docx",{"name":1337,"slug":1338,"type":15},"HTML","html",{"name":1340,"slug":1341,"type":15},"PDF","pdf","2026-07-17T06:07:16.218183",{"slug":4,"name":4,"fn":5,"description":6,"org":1344,"tags":1345,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1346,1347,1348,1349],{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":1351,"name":1351,"fn":1352,"description":1353,"org":1354,"tags":1355,"stars":25,"repoUrl":26,"updatedAt":1362},"skill-doctor","audit and optimize agent skills","Audit, map, and improve your Claude Code skills, agents, and slash commands — and mine the current session for new ones worth creating. Use this whenever the user says \"review my skills\", \"optimize my skills\", \"update my skills\", \"update all my skills\", \"maintain my skills\", \"audit my agents\", \"map my skills\", \"what skills do I have\", \"suggest skill improvements\", \"are any of my skills redundant\", \"clean up my skills\", \"turn this into a skill\", \"should this be a skill or an agent\", \"codify this workflow\", or invokes \u002Fskill-map, \u002Fskill-mine, or \u002Fskill-new. Also use PROACTIVELY after finishing a multi-step workflow that the user is likely to repeat (especially right after opening a PR) to ask whether it should become a skill or agent. It inventories every skill\u002Fagent\u002Fcommand across the user's own dirs AND all installed marketplaces, flags overlaps \u002F gaps \u002F weak triggering descriptions, and — when there's real prior work in the session — proposes new or edited skills\u002Fagents grounded in what actually happened.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1356,1359],{"name":1357,"slug":1358,"type":15},"Agents","agents",{"name":1360,"slug":1361,"type":15},"Plugin Development","plugin-development","2026-07-17T06:08:14.373821"]