[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-webapp-testing":3,"mdc--43589v-key":42,"related-repo-minimax-webapp-testing":699,"related-org-minimax-webapp-testing":820},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":29,"repoUrl":30,"updatedAt":31,"license":32,"forks":33,"topics":34,"repo":37,"sourceUrl":40,"mdContent":41},"webapp-testing","test and debug web application frontends","Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"minimax","MiniMax","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fminimax.jpg","MiniMax-AI",[13,17,20,23,26],{"name":14,"slug":15,"type":16},"Playwright","playwright","tag",{"name":18,"slug":19,"type":16},"Testing","testing",{"name":21,"slug":22,"type":16},"Frontend","frontend",{"name":24,"slug":25,"type":16},"Debugging","debugging",{"name":27,"slug":28,"type":16},"Browser Automation","browser-automation",2872,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMini-Agent","2026-07-13T06:17:27.534903","Complete terms in LICENSE.txt",421,[35,36,8],"agent","llm",{"repoUrl":30,"stars":29,"forks":33,"topics":38,"description":39},[35,36,8],"A minimal yet professional single agent demo project that showcases the core execution pipeline and production-grade features of agents.","https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMini-Agent\u002Ftree\u002FHEAD\u002Fmini_agent\u002Fskills\u002Fwebapp-testing","---\nname: webapp-testing\ndescription: Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.\nlicense: Complete terms in LICENSE.txt\n---\n\n# Web Application Testing\n\nTo test local web applications, write native Python Playwright scripts.\n\n**Helper Scripts Available**:\n- `scripts\u002Fwith_server.py` - Manages server lifecycle (supports multiple servers)\n\n**Always run scripts with `--help` first** to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts rather than ingested into your context window.\n\n## Decision Tree: Choosing Your Approach\n\n```\nUser task → Is it static HTML?\n    ├─ Yes → Read HTML file directly to identify selectors\n    │         ├─ Success → Write Playwright script using selectors\n    │         └─ Fails\u002FIncomplete → Treat as dynamic (below)\n    │\n    └─ No (dynamic webapp) → Is the server already running?\n        ├─ No → Run: python scripts\u002Fwith_server.py --help\n        │        Then use the helper + write simplified Playwright script\n        │\n        └─ Yes → Reconnaissance-then-action:\n            1. Navigate and wait for networkidle\n            2. Take screenshot or inspect DOM\n            3. Identify selectors from rendered state\n            4. Execute actions with discovered selectors\n```\n\n## Example: Using with_server.py\n\nTo start a server, run `--help` first, then use the helper:\n\n**Single server:**\n```bash\npython scripts\u002Fwith_server.py --server \"npm run dev\" --port 5173 -- python your_automation.py\n```\n\n**Multiple servers (e.g., backend + frontend):**\n```bash\npython scripts\u002Fwith_server.py \\\n  --server \"cd backend && python server.py\" --port 3000 \\\n  --server \"cd frontend && npm run dev\" --port 5173 \\\n  -- python your_automation.py\n```\n\nTo create an automation script, include only Playwright logic (servers are managed automatically):\n```python\nfrom playwright.sync_api import sync_playwright\n\nwith sync_playwright() as p:\n    browser = p.chromium.launch(headless=True) # Always launch chromium in headless mode\n    page = browser.new_page()\n    page.goto('http:\u002F\u002Flocalhost:5173') # Server already running and ready\n    page.wait_for_load_state('networkidle') # CRITICAL: Wait for JS to execute\n    # ... your automation logic\n    browser.close()\n```\n\n## Reconnaissance-Then-Action Pattern\n\n1. **Inspect rendered DOM**:\n   ```python\n   page.screenshot(path='\u002Ftmp\u002Finspect.png', full_page=True)\n   content = page.content()\n   page.locator('button').all()\n   ```\n\n2. **Identify selectors** from inspection results\n\n3. **Execute actions** using discovered selectors\n\n## Common Pitfall\n\n❌ **Don't** inspect the DOM before waiting for `networkidle` on dynamic apps\n✅ **Do** wait for `page.wait_for_load_state('networkidle')` before inspection\n\n## Best Practices\n\n- **Use bundled scripts as black boxes** - To accomplish a task, consider whether one of the scripts available in `scripts\u002F` can help. These scripts handle common, complex workflows reliably without cluttering the context window. Use `--help` to see usage, then invoke directly. \n- Use `sync_playwright()` for synchronous scripts\n- Always close the browser when done\n- Use descriptive selectors: `text=`, `role=`, CSS selectors, or IDs\n- Add appropriate waits: `page.wait_for_selector()` or `page.wait_for_timeout()`\n\n## Reference Files\n\n- **examples\u002F** - Examples showing common patterns:\n  - `element_discovery.py` - Discovering buttons, links, and inputs on a page\n  - `static_html_automation.py` - Using file:\u002F\u002F URLs for local HTML\n  - `console_logging.py` - Capturing console logs during automation",{"data":43,"body":44},{"name":4,"description":6,"license":32},{"type":45,"children":46},"root",[47,56,62,73,90,108,115,127,133,145,153,227,235,344,349,435,441,505,511,546,552,638,644,693],{"type":48,"tag":49,"props":50,"children":52},"element","h1",{"id":51},"web-application-testing",[53],{"type":54,"value":55},"text","Web Application Testing",{"type":48,"tag":57,"props":58,"children":59},"p",{},[60],{"type":54,"value":61},"To test local web applications, write native Python Playwright scripts.",{"type":48,"tag":57,"props":63,"children":64},{},[65,71],{"type":48,"tag":66,"props":67,"children":68},"strong",{},[69],{"type":54,"value":70},"Helper Scripts Available",{"type":54,"value":72},":",{"type":48,"tag":74,"props":75,"children":76},"ul",{},[77],{"type":48,"tag":78,"props":79,"children":80},"li",{},[81,88],{"type":48,"tag":82,"props":83,"children":85},"code",{"className":84},[],[86],{"type":54,"value":87},"scripts\u002Fwith_server.py",{"type":54,"value":89}," - Manages server lifecycle (supports multiple servers)",{"type":48,"tag":57,"props":91,"children":92},{},[93,106],{"type":48,"tag":66,"props":94,"children":95},{},[96,98,104],{"type":54,"value":97},"Always run scripts with ",{"type":48,"tag":82,"props":99,"children":101},{"className":100},[],[102],{"type":54,"value":103},"--help",{"type":54,"value":105}," first",{"type":54,"value":107}," to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts rather than ingested into your context window.",{"type":48,"tag":109,"props":110,"children":112},"h2",{"id":111},"decision-tree-choosing-your-approach",[113],{"type":54,"value":114},"Decision Tree: Choosing Your Approach",{"type":48,"tag":116,"props":117,"children":121},"pre",{"className":118,"code":120,"language":54},[119],"language-text","User task → Is it static HTML?\n    ├─ Yes → Read HTML file directly to identify selectors\n    │         ├─ Success → Write Playwright script using selectors\n    │         └─ Fails\u002FIncomplete → Treat as dynamic (below)\n    │\n    └─ No (dynamic webapp) → Is the server already running?\n        ├─ No → Run: python scripts\u002Fwith_server.py --help\n        │        Then use the helper + write simplified Playwright script\n        │\n        └─ Yes → Reconnaissance-then-action:\n            1. Navigate and wait for networkidle\n            2. Take screenshot or inspect DOM\n            3. Identify selectors from rendered state\n            4. Execute actions with discovered selectors\n",[122],{"type":48,"tag":82,"props":123,"children":125},{"__ignoreMap":124},"",[126],{"type":54,"value":120},{"type":48,"tag":109,"props":128,"children":130},{"id":129},"example-using-with_serverpy",[131],{"type":54,"value":132},"Example: Using with_server.py",{"type":48,"tag":57,"props":134,"children":135},{},[136,138,143],{"type":54,"value":137},"To start a server, run ",{"type":48,"tag":82,"props":139,"children":141},{"className":140},[],[142],{"type":54,"value":103},{"type":54,"value":144}," first, then use the helper:",{"type":48,"tag":57,"props":146,"children":147},{},[148],{"type":48,"tag":66,"props":149,"children":150},{},[151],{"type":54,"value":152},"Single server:",{"type":48,"tag":116,"props":154,"children":158},{"className":155,"code":156,"language":157,"meta":124,"style":124},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","python scripts\u002Fwith_server.py --server \"npm run dev\" --port 5173 -- python your_automation.py\n","bash",[159],{"type":48,"tag":82,"props":160,"children":161},{"__ignoreMap":124},[162],{"type":48,"tag":163,"props":164,"children":167},"span",{"class":165,"line":166},"line",1,[168,174,180,185,191,196,201,206,212,217,222],{"type":48,"tag":163,"props":169,"children":171},{"style":170},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[172],{"type":54,"value":173},"python",{"type":48,"tag":163,"props":175,"children":177},{"style":176},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[178],{"type":54,"value":179}," scripts\u002Fwith_server.py",{"type":48,"tag":163,"props":181,"children":182},{"style":176},[183],{"type":54,"value":184}," --server",{"type":48,"tag":163,"props":186,"children":188},{"style":187},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[189],{"type":54,"value":190}," \"",{"type":48,"tag":163,"props":192,"children":193},{"style":176},[194],{"type":54,"value":195},"npm run dev",{"type":48,"tag":163,"props":197,"children":198},{"style":187},[199],{"type":54,"value":200},"\"",{"type":48,"tag":163,"props":202,"children":203},{"style":176},[204],{"type":54,"value":205}," --port",{"type":48,"tag":163,"props":207,"children":209},{"style":208},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[210],{"type":54,"value":211}," 5173",{"type":48,"tag":163,"props":213,"children":214},{"style":176},[215],{"type":54,"value":216}," --",{"type":48,"tag":163,"props":218,"children":219},{"style":176},[220],{"type":54,"value":221}," python",{"type":48,"tag":163,"props":223,"children":224},{"style":176},[225],{"type":54,"value":226}," your_automation.py\n",{"type":48,"tag":57,"props":228,"children":229},{},[230],{"type":48,"tag":66,"props":231,"children":232},{},[233],{"type":54,"value":234},"Multiple servers (e.g., backend + frontend):",{"type":48,"tag":116,"props":236,"children":238},{"className":155,"code":237,"language":157,"meta":124,"style":124},"python scripts\u002Fwith_server.py \\\n  --server \"cd backend && python server.py\" --port 3000 \\\n  --server \"cd frontend && npm run dev\" --port 5173 \\\n  -- python your_automation.py\n",[239],{"type":48,"tag":82,"props":240,"children":241},{"__ignoreMap":124},[242,259,294,327],{"type":48,"tag":163,"props":243,"children":244},{"class":165,"line":166},[245,249,253],{"type":48,"tag":163,"props":246,"children":247},{"style":170},[248],{"type":54,"value":173},{"type":48,"tag":163,"props":250,"children":251},{"style":176},[252],{"type":54,"value":179},{"type":48,"tag":163,"props":254,"children":256},{"style":255},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[257],{"type":54,"value":258}," \\\n",{"type":48,"tag":163,"props":260,"children":262},{"class":165,"line":261},2,[263,268,272,277,281,285,290],{"type":48,"tag":163,"props":264,"children":265},{"style":176},[266],{"type":54,"value":267},"  --server",{"type":48,"tag":163,"props":269,"children":270},{"style":187},[271],{"type":54,"value":190},{"type":48,"tag":163,"props":273,"children":274},{"style":176},[275],{"type":54,"value":276},"cd backend && python server.py",{"type":48,"tag":163,"props":278,"children":279},{"style":187},[280],{"type":54,"value":200},{"type":48,"tag":163,"props":282,"children":283},{"style":176},[284],{"type":54,"value":205},{"type":48,"tag":163,"props":286,"children":287},{"style":208},[288],{"type":54,"value":289}," 3000",{"type":48,"tag":163,"props":291,"children":292},{"style":255},[293],{"type":54,"value":258},{"type":48,"tag":163,"props":295,"children":297},{"class":165,"line":296},3,[298,302,306,311,315,319,323],{"type":48,"tag":163,"props":299,"children":300},{"style":176},[301],{"type":54,"value":267},{"type":48,"tag":163,"props":303,"children":304},{"style":187},[305],{"type":54,"value":190},{"type":48,"tag":163,"props":307,"children":308},{"style":176},[309],{"type":54,"value":310},"cd frontend && npm run dev",{"type":48,"tag":163,"props":312,"children":313},{"style":187},[314],{"type":54,"value":200},{"type":48,"tag":163,"props":316,"children":317},{"style":176},[318],{"type":54,"value":205},{"type":48,"tag":163,"props":320,"children":321},{"style":208},[322],{"type":54,"value":211},{"type":48,"tag":163,"props":324,"children":325},{"style":255},[326],{"type":54,"value":258},{"type":48,"tag":163,"props":328,"children":330},{"class":165,"line":329},4,[331,336,340],{"type":48,"tag":163,"props":332,"children":333},{"style":176},[334],{"type":54,"value":335},"  --",{"type":48,"tag":163,"props":337,"children":338},{"style":176},[339],{"type":54,"value":221},{"type":48,"tag":163,"props":341,"children":342},{"style":176},[343],{"type":54,"value":226},{"type":48,"tag":57,"props":345,"children":346},{},[347],{"type":54,"value":348},"To create an automation script, include only Playwright logic (servers are managed automatically):",{"type":48,"tag":116,"props":350,"children":353},{"className":351,"code":352,"language":173,"meta":124,"style":124},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","from playwright.sync_api import sync_playwright\n\nwith sync_playwright() as p:\n    browser = p.chromium.launch(headless=True) # Always launch chromium in headless mode\n    page = browser.new_page()\n    page.goto('http:\u002F\u002Flocalhost:5173') # Server already running and ready\n    page.wait_for_load_state('networkidle') # CRITICAL: Wait for JS to execute\n    # ... your automation logic\n    browser.close()\n",[354],{"type":48,"tag":82,"props":355,"children":356},{"__ignoreMap":124},[357,365,374,382,390,399,408,417,426],{"type":48,"tag":163,"props":358,"children":359},{"class":165,"line":166},[360],{"type":48,"tag":163,"props":361,"children":362},{},[363],{"type":54,"value":364},"from playwright.sync_api import sync_playwright\n",{"type":48,"tag":163,"props":366,"children":367},{"class":165,"line":261},[368],{"type":48,"tag":163,"props":369,"children":371},{"emptyLinePlaceholder":370},true,[372],{"type":54,"value":373},"\n",{"type":48,"tag":163,"props":375,"children":376},{"class":165,"line":296},[377],{"type":48,"tag":163,"props":378,"children":379},{},[380],{"type":54,"value":381},"with sync_playwright() as p:\n",{"type":48,"tag":163,"props":383,"children":384},{"class":165,"line":329},[385],{"type":48,"tag":163,"props":386,"children":387},{},[388],{"type":54,"value":389},"    browser = p.chromium.launch(headless=True) # Always launch chromium in headless mode\n",{"type":48,"tag":163,"props":391,"children":393},{"class":165,"line":392},5,[394],{"type":48,"tag":163,"props":395,"children":396},{},[397],{"type":54,"value":398},"    page = browser.new_page()\n",{"type":48,"tag":163,"props":400,"children":402},{"class":165,"line":401},6,[403],{"type":48,"tag":163,"props":404,"children":405},{},[406],{"type":54,"value":407},"    page.goto('http:\u002F\u002Flocalhost:5173') # Server already running and ready\n",{"type":48,"tag":163,"props":409,"children":411},{"class":165,"line":410},7,[412],{"type":48,"tag":163,"props":413,"children":414},{},[415],{"type":54,"value":416},"    page.wait_for_load_state('networkidle') # CRITICAL: Wait for JS to execute\n",{"type":48,"tag":163,"props":418,"children":420},{"class":165,"line":419},8,[421],{"type":48,"tag":163,"props":422,"children":423},{},[424],{"type":54,"value":425},"    # ... your automation logic\n",{"type":48,"tag":163,"props":427,"children":429},{"class":165,"line":428},9,[430],{"type":48,"tag":163,"props":431,"children":432},{},[433],{"type":54,"value":434},"    browser.close()\n",{"type":48,"tag":109,"props":436,"children":438},{"id":437},"reconnaissance-then-action-pattern",[439],{"type":54,"value":440},"Reconnaissance-Then-Action Pattern",{"type":48,"tag":442,"props":443,"children":444},"ol",{},[445,485,495],{"type":48,"tag":78,"props":446,"children":447},{},[448,453,454],{"type":48,"tag":66,"props":449,"children":450},{},[451],{"type":54,"value":452},"Inspect rendered DOM",{"type":54,"value":72},{"type":48,"tag":116,"props":455,"children":457},{"className":351,"code":456,"language":173,"meta":124,"style":124},"page.screenshot(path='\u002Ftmp\u002Finspect.png', full_page=True)\ncontent = page.content()\npage.locator('button').all()\n",[458],{"type":48,"tag":82,"props":459,"children":460},{"__ignoreMap":124},[461,469,477],{"type":48,"tag":163,"props":462,"children":463},{"class":165,"line":166},[464],{"type":48,"tag":163,"props":465,"children":466},{},[467],{"type":54,"value":468},"page.screenshot(path='\u002Ftmp\u002Finspect.png', full_page=True)\n",{"type":48,"tag":163,"props":470,"children":471},{"class":165,"line":261},[472],{"type":48,"tag":163,"props":473,"children":474},{},[475],{"type":54,"value":476},"content = page.content()\n",{"type":48,"tag":163,"props":478,"children":479},{"class":165,"line":296},[480],{"type":48,"tag":163,"props":481,"children":482},{},[483],{"type":54,"value":484},"page.locator('button').all()\n",{"type":48,"tag":78,"props":486,"children":487},{},[488,493],{"type":48,"tag":66,"props":489,"children":490},{},[491],{"type":54,"value":492},"Identify selectors",{"type":54,"value":494}," from inspection results",{"type":48,"tag":78,"props":496,"children":497},{},[498,503],{"type":48,"tag":66,"props":499,"children":500},{},[501],{"type":54,"value":502},"Execute actions",{"type":54,"value":504}," using discovered selectors",{"type":48,"tag":109,"props":506,"children":508},{"id":507},"common-pitfall",[509],{"type":54,"value":510},"Common Pitfall",{"type":48,"tag":57,"props":512,"children":513},{},[514,516,521,523,529,531,536,538,544],{"type":54,"value":515},"❌ ",{"type":48,"tag":66,"props":517,"children":518},{},[519],{"type":54,"value":520},"Don't",{"type":54,"value":522}," inspect the DOM before waiting for ",{"type":48,"tag":82,"props":524,"children":526},{"className":525},[],[527],{"type":54,"value":528},"networkidle",{"type":54,"value":530}," on dynamic apps\n✅ ",{"type":48,"tag":66,"props":532,"children":533},{},[534],{"type":54,"value":535},"Do",{"type":54,"value":537}," wait for ",{"type":48,"tag":82,"props":539,"children":541},{"className":540},[],[542],{"type":54,"value":543},"page.wait_for_load_state('networkidle')",{"type":54,"value":545}," before inspection",{"type":48,"tag":109,"props":547,"children":549},{"id":548},"best-practices",[550],{"type":54,"value":551},"Best Practices",{"type":48,"tag":74,"props":553,"children":554},{},[555,580,593,598,619],{"type":48,"tag":78,"props":556,"children":557},{},[558,563,565,571,573,578],{"type":48,"tag":66,"props":559,"children":560},{},[561],{"type":54,"value":562},"Use bundled scripts as black boxes",{"type":54,"value":564}," - To accomplish a task, consider whether one of the scripts available in ",{"type":48,"tag":82,"props":566,"children":568},{"className":567},[],[569],{"type":54,"value":570},"scripts\u002F",{"type":54,"value":572}," can help. These scripts handle common, complex workflows reliably without cluttering the context window. Use ",{"type":48,"tag":82,"props":574,"children":576},{"className":575},[],[577],{"type":54,"value":103},{"type":54,"value":579}," to see usage, then invoke directly.",{"type":48,"tag":78,"props":581,"children":582},{},[583,585,591],{"type":54,"value":584},"Use ",{"type":48,"tag":82,"props":586,"children":588},{"className":587},[],[589],{"type":54,"value":590},"sync_playwright()",{"type":54,"value":592}," for synchronous scripts",{"type":48,"tag":78,"props":594,"children":595},{},[596],{"type":54,"value":597},"Always close the browser when done",{"type":48,"tag":78,"props":599,"children":600},{},[601,603,609,611,617],{"type":54,"value":602},"Use descriptive selectors: ",{"type":48,"tag":82,"props":604,"children":606},{"className":605},[],[607],{"type":54,"value":608},"text=",{"type":54,"value":610},", ",{"type":48,"tag":82,"props":612,"children":614},{"className":613},[],[615],{"type":54,"value":616},"role=",{"type":54,"value":618},", CSS selectors, or IDs",{"type":48,"tag":78,"props":620,"children":621},{},[622,624,630,632],{"type":54,"value":623},"Add appropriate waits: ",{"type":48,"tag":82,"props":625,"children":627},{"className":626},[],[628],{"type":54,"value":629},"page.wait_for_selector()",{"type":54,"value":631}," or ",{"type":48,"tag":82,"props":633,"children":635},{"className":634},[],[636],{"type":54,"value":637},"page.wait_for_timeout()",{"type":48,"tag":109,"props":639,"children":641},{"id":640},"reference-files",[642],{"type":54,"value":643},"Reference Files",{"type":48,"tag":74,"props":645,"children":646},{},[647],{"type":48,"tag":78,"props":648,"children":649},{},[650,655,657],{"type":48,"tag":66,"props":651,"children":652},{},[653],{"type":54,"value":654},"examples\u002F",{"type":54,"value":656}," - Examples showing common patterns:\n",{"type":48,"tag":74,"props":658,"children":659},{},[660,671,682],{"type":48,"tag":78,"props":661,"children":662},{},[663,669],{"type":48,"tag":82,"props":664,"children":666},{"className":665},[],[667],{"type":54,"value":668},"element_discovery.py",{"type":54,"value":670}," - Discovering buttons, links, and inputs on a page",{"type":48,"tag":78,"props":672,"children":673},{},[674,680],{"type":48,"tag":82,"props":675,"children":677},{"className":676},[],[678],{"type":54,"value":679},"static_html_automation.py",{"type":54,"value":681}," - Using file:\u002F\u002F URLs for local HTML",{"type":48,"tag":78,"props":683,"children":684},{},[685,691],{"type":48,"tag":82,"props":686,"children":688},{"className":687},[],[689],{"type":54,"value":690},"console_logging.py",{"type":54,"value":692}," - Capturing console logs during automation",{"type":48,"tag":694,"props":695,"children":696},"style",{},[697],{"type":54,"value":698},"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":700,"total":819},[701,720,740,754,769,787,803],{"slug":702,"name":702,"fn":703,"description":704,"org":705,"tags":706,"stars":29,"repoUrl":30,"updatedAt":719},"algorithmic-art","generate algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[707,710,713,716],{"name":708,"slug":709,"type":16},"Creative","creative",{"name":711,"slug":712,"type":16},"Design","design",{"name":714,"slug":715,"type":16},"Generative Art","generative-art",{"name":717,"slug":718,"type":16},"Graphics","graphics","2026-07-16T06:02:02.834983",{"slug":721,"name":721,"fn":722,"description":723,"org":724,"tags":725,"stars":29,"repoUrl":30,"updatedAt":739},"artifacts-builder","build complex React HTML artifacts","Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn\u002Fui). Use for complex artifacts requiring state management, routing, or shadcn\u002Fui components - not for simple single-file HTML\u002FJSX artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[726,727,730,733,736],{"name":21,"slug":22,"type":16},{"name":728,"slug":729,"type":16},"HTML","html",{"name":731,"slug":732,"type":16},"React","react",{"name":734,"slug":735,"type":16},"shadcn\u002Fui","shadcn-ui",{"name":737,"slug":738,"type":16},"Tailwind CSS","tailwind-css","2026-07-13T06:17:37.887194",{"slug":741,"name":741,"fn":742,"description":743,"org":744,"tags":745,"stars":29,"repoUrl":30,"updatedAt":753},"brand-guidelines","apply brand guidelines to documents","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[746,749,750],{"name":747,"slug":748,"type":16},"Branding","branding",{"name":711,"slug":712,"type":16},{"name":751,"slug":752,"type":16},"Typography","typography","2026-07-13T06:17:36.624966",{"slug":755,"name":755,"fn":756,"description":757,"org":758,"tags":759,"stars":29,"repoUrl":30,"updatedAt":768},"canvas-design","create visual art and design documents","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[760,761,762,765],{"name":708,"slug":709,"type":16},{"name":711,"slug":712,"type":16},{"name":763,"slug":764,"type":16},"Images","images",{"name":766,"slug":767,"type":16},"PDF","pdf","2026-07-16T06:01:59.313156",{"slug":770,"name":770,"fn":771,"description":772,"org":773,"tags":774,"stars":29,"repoUrl":30,"updatedAt":786},"docx","create and edit Word documents","Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[775,778,780,783],{"name":776,"slug":777,"type":16},"Documents","documents",{"name":779,"slug":770,"type":16},"DOCX",{"name":781,"slug":782,"type":16},"Office","office",{"name":784,"slug":785,"type":16},"Word","word","2026-07-13T06:17:51.582447",{"slug":788,"name":788,"fn":789,"description":790,"org":791,"tags":792,"stars":29,"repoUrl":30,"updatedAt":802},"internal-comms","draft internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[793,796,799],{"name":794,"slug":795,"type":16},"Communications","communications",{"name":797,"slug":798,"type":16},"Operations","operations",{"name":800,"slug":801,"type":16},"Writing","writing","2026-07-13T06:17:28.861835",{"slug":804,"name":804,"fn":805,"description":806,"org":807,"tags":808,"stars":29,"repoUrl":30,"updatedAt":818},"mcp-builder","build MCP servers for external integrations","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[809,812,815],{"name":810,"slug":811,"type":16},"Agents","agents",{"name":813,"slug":814,"type":16},"API Development","api-development",{"name":816,"slug":817,"type":16},"MCP","mcp","2026-07-13T06:17:18.339572",15,{"items":821,"total":1004},[822,846,858,873,888,908,924,942,955,971,984,994],{"slug":823,"name":823,"fn":824,"description":825,"org":826,"tags":827,"stars":843,"repoUrl":844,"updatedAt":845},"android-native-dev","develop Android native applications","Android native application development and UI design guide. Covers Material Design 3, Kotlin\u002FCompose development, project configuration, accessibility, and build troubleshooting. Read this before Android native application development.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[828,831,834,837,840],{"name":829,"slug":830,"type":16},"Accessibility","accessibility",{"name":832,"slug":833,"type":16},"Android","android",{"name":835,"slug":836,"type":16},"Kotlin","kotlin",{"name":838,"slug":839,"type":16},"Mobile","mobile",{"name":841,"slug":842,"type":16},"UI Components","ui-components",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:54.247834",{"slug":847,"name":847,"fn":848,"description":849,"org":850,"tags":851,"stars":843,"repoUrl":844,"updatedAt":857},"buddy-sings","generate singing performances for AI companions","Use when user wants their Claude Code pet (\u002Fbuddy) to sing a song. Triggers on any request that combines the concept of their Claude Code buddy, pet, or companion with singing or music. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[852,853,856],{"name":810,"slug":811,"type":16},{"name":854,"slug":855,"type":16},"Audio","audio",{"name":708,"slug":709,"type":16},"2026-07-13T06:16:35.130644",{"slug":859,"name":859,"fn":860,"description":861,"org":862,"tags":863,"stars":843,"repoUrl":844,"updatedAt":872},"color-font-skill","select color palettes and font pairings","Choose presentation-ready color palettes and font pairings for PPT\u002Fdesign tasks. Use when users ask for visual theme choices, brand-safe palettes, or font recommendations. Triggers include: 配色, 色板, 字体, color palette, font, PPT配色, 字体搭配.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[864,865,868,871],{"name":711,"slug":712,"type":16},{"name":866,"slug":867,"type":16},"Presentations","presentations",{"name":869,"slug":870,"type":16},"Themes","themes",{"name":751,"slug":752,"type":16},"2026-07-13T06:17:02.785587",{"slug":874,"name":874,"fn":875,"description":876,"org":877,"tags":878,"stars":843,"repoUrl":844,"updatedAt":887},"design-style-skill","select visual design systems for presentations","Select a consistent visual design system for PPT slides using radius\u002Fspacing style recipes. Use when users ask for overall style direction or component styling consistency. Includes Sharp\u002FSoft\u002FRounded\u002FPill recipes, component mappings, typography\u002Fspacing rules, and mixing guidance. Triggers: 风格, style, radius, spacing, 圆角, 间距, PPT风格, 视觉风格, design style, component style.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[879,880,883,886],{"name":711,"slug":712,"type":16},{"name":881,"slug":882,"type":16},"Design System","design-system",{"name":884,"slug":885,"type":16},"PowerPoint","powerpoint",{"name":866,"slug":867,"type":16},"2026-07-13T06:17:10.398389",{"slug":889,"name":889,"fn":890,"description":891,"org":892,"tags":893,"stars":843,"repoUrl":844,"updatedAt":907},"flutter-dev","build cross-platform apps with Flutter","Flutter cross-platform development guide covering widget patterns, Riverpod\u002FBloc state management, GoRouter navigation, performance optimization, and platform-specific implementations. Includes const optimization, responsive layouts, testing strategies, and DevTools profiling.\nUse when: building Flutter apps, implementing state management (Riverpod\u002FBloc), setting up GoRouter navigation, creating custom widgets, optimizing performance, writing widget tests, cross-platform development.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[894,897,900,901,904],{"name":895,"slug":896,"type":16},"Dart","dart",{"name":898,"slug":899,"type":16},"Flutter","flutter",{"name":838,"slug":839,"type":16},{"name":902,"slug":903,"type":16},"Performance","performance",{"name":905,"slug":906,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":909,"name":909,"fn":910,"description":911,"org":912,"tags":913,"stars":843,"repoUrl":844,"updatedAt":923},"frontend-dev","build visually striking frontend web pages","Full-stack frontend development combining premium UI design, cinematic animations,\nAI-generated media assets, persuasive copywriting, and visual art. Builds complete,\nvisually striking web pages with real media, advanced motion, and compelling copy.\nUse when: building landing pages, marketing sites, product pages, dashboards,\ngenerating media assets (image\u002Fvideo\u002Faudio\u002Fmusic), writing conversion copy,\ncreating generative art, or implementing cinematic scroll animations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[914,917,918,919,920],{"name":915,"slug":916,"type":16},"Animation","animation",{"name":708,"slug":709,"type":16},{"name":711,"slug":712,"type":16},{"name":21,"slug":22,"type":16},{"name":921,"slug":922,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":925,"name":925,"fn":926,"description":927,"org":928,"tags":929,"stars":843,"repoUrl":844,"updatedAt":941},"fullstack-dev","build full-stack web applications","Full-stack backend architecture and frontend-backend integration guide.\nTRIGGER when: building a full-stack app, creating REST API with frontend, scaffolding backend service,\nbuilding todo app, building CRUD app, building real-time app, building chat app,\nExpress + React, Next.js API, Node.js backend, Python backend, Go backend,\ndesigning service layers, implementing error handling, managing config\u002Fauth,\nsetting up API clients, implementing auth flows, handling file uploads,\nadding real-time features (SSE\u002FWebSocket), hardening for production.\nDO NOT TRIGGER when: pure frontend UI work, pure CSS\u002Fstyling, database schema only.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[930,933,934,937,940],{"name":931,"slug":932,"type":16},"Backend","backend",{"name":21,"slug":22,"type":16},{"name":935,"slug":936,"type":16},"Full-stack","full-stack",{"name":938,"slug":939,"type":16},"REST API","rest-api",{"name":921,"slug":922,"type":16},"2026-07-13T06:16:43.219005",{"slug":943,"name":943,"fn":944,"description":945,"org":946,"tags":947,"stars":843,"repoUrl":844,"updatedAt":954},"gif-sticker-maker","create animated GIF stickers from photos","Convert photos (people, pets, objects, logos) into 4 animated GIF stickers with captions.\nUse when: user wants to create cartoon stickers, GIF expressions, emoji packs, animated avatars,\nor convert photos to Funko Pop \u002F Pop Mart blind box style animations.\nTriggers: sticker, GIF, cartoon, emoji, expression pack, avatar animation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[948,949,950,951],{"name":915,"slug":916,"type":16},{"name":708,"slug":709,"type":16},{"name":763,"slug":764,"type":16},{"name":952,"slug":953,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":956,"name":956,"fn":957,"description":958,"org":959,"tags":960,"stars":843,"repoUrl":844,"updatedAt":970},"ios-application-dev","develop iOS applications with SwiftUI and UIKit","iOS application development guide covering UIKit, SnapKit, and SwiftUI. Includes touch targets, safe areas, navigation patterns, Dynamic Type, Dark Mode, accessibility, collection views, common UI components, and SwiftUI design guidelines. For detailed references on specific topics, see the reference files.\nUse when: developing iOS apps, implementing UI, reviewing iOS code, working with UIKit\u002FSnapKit\u002FSwiftUI layouts, building iPhone interfaces, Swift mobile development, Apple HIG compliance, iOS accessibility implementation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[961,962,965,966,969],{"name":829,"slug":830,"type":16},{"name":963,"slug":964,"type":16},"iOS","ios",{"name":838,"slug":839,"type":16},{"name":967,"slug":968,"type":16},"SwiftUI","swiftui",{"name":841,"slug":842,"type":16},"2026-07-13T06:16:55.686092",{"slug":972,"name":972,"fn":973,"description":974,"org":975,"tags":976,"stars":843,"repoUrl":844,"updatedAt":983},"minimax-docx","create and edit DOCX documents","Professional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pipelines: (A) create new documents from scratch, (B) fill\u002Fedit content in existing documents, (C) apply template formatting with XSD validation gate-check. MUST use this skill whenever the user wants to produce, modify, or format a Word document — including when they say \"write a report\", \"draft a proposal\", \"make a contract\", \"fill in this form\", \"reformat to match this template\", or any task whose final output is a .docx file. Even if the user doesn't mention \"docx\" explicitly, if the task implies a printable\u002Fformal document, use this skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[977,978,979,980],{"name":776,"slug":777,"type":16},{"name":779,"slug":770,"type":16},{"name":781,"slug":782,"type":16},{"name":981,"slug":982,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":985,"name":985,"fn":986,"description":987,"org":988,"tags":989,"stars":843,"repoUrl":844,"updatedAt":993},"minimax-music-gen","generate music and audio tracks","Use when user wants to generate music, songs, or audio tracks. Triggers on any request involving music creation, song writing, lyrics generation, audio production, or covers. Also triggers when user provides lyrics and wants them turned into a song, or describes a mood\u002Fscene and wants background music. Supports multilingual triggers — match equivalent phrases in any language. Do NOT use for music playback of existing files, music theory questions, or music recommendation without generation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[990,991,992],{"name":854,"slug":855,"type":16},{"name":708,"slug":709,"type":16},{"name":952,"slug":953,"type":16},"2026-07-13T06:16:50.381758",{"slug":995,"name":995,"fn":996,"description":997,"org":998,"tags":999,"stars":843,"repoUrl":844,"updatedAt":1003},"minimax-music-playlist","generate personalized music playlists","Generate personalized music playlists by analyzing the user's music taste and generation feedback history. Triggers on any request involving playlist generation, music taste profiling, or personalized music recommendations. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1000,1001,1002],{"name":854,"slug":855,"type":16},{"name":708,"slug":709,"type":16},{"name":952,"slug":953,"type":16},"2026-07-13T06:16:57.002997",37]