[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-openai-playwright":3,"mdc-m2m5m5-key":37,"related-repo-trail-of-bits-openai-playwright":1257,"related-org-trail-of-bits-openai-playwright":1370},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"openai-playwright","automate browser tasks with Playwright","Use when the task requires automating a real browser from the terminal (navigation, form filling, snapshots, screenshots, data extraction, UI-flow debugging) via `playwright-cli` or the bundled wrapper script. Originally from OpenAI's curated skills catalog.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"trail-of-bits","Trail of Bits","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftrail-of-bits.png","trailofbits",[13,17,20,23],{"name":14,"slug":15,"type":16},"Playwright","playwright","tag",{"name":18,"slug":19,"type":16},"Web Development","web-development",{"name":21,"slug":22,"type":16},"Testing","testing",{"name":24,"slug":25,"type":16},"Browser Automation","browser-automation",460,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated","2026-07-18T05:47:15.52426",null,29,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Curated, community-vetted Claude Code plugin marketplace","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated\u002Ftree\u002FHEAD\u002Fplugins\u002Fopenai-playwright\u002Fskills\u002Fopenai-playwright","---\nname: openai-playwright\ndescription: Use when the task requires automating a real browser from the terminal (navigation, form\n  filling, snapshots, screenshots, data extraction, UI-flow debugging) via `playwright-cli` or the bundled\n  wrapper script. Originally from OpenAI's curated skills catalog.\nallowed-tools:\n- Bash\n- Read\n- Grep\n- Glob\n- Write\n- Edit\n---\n\n# Playwright CLI Skill\n\nDrive a real browser from the terminal using `playwright-cli`. Prefer the bundled wrapper script so the CLI works even when it is not globally installed.\nTreat this skill as CLI-first automation. Do not pivot to `@playwright\u002Ftest` unless the user explicitly asks for test files.\n\n## Prerequisite check (required)\n\nBefore proposing commands, check whether `npx` is available (the wrapper depends on it):\n\n```bash\ncommand -v npx >\u002Fdev\u002Fnull 2>&1\n```\n\nIf it is not available, pause and ask the user to install Node.js\u002Fnpm (which provides `npx`). Provide these steps verbatim:\n\n```bash\n# Verify Node\u002Fnpm are installed\nnode --version\nnpm --version\n\n# If missing, install Node.js\u002Fnpm, then:\nnpm install -g @playwright\u002Fcli@latest\nplaywright-cli --help\n```\n\nOnce `npx` is present, proceed with the wrapper script. A global install of `playwright-cli` is optional.\n\nScripts and references are located under `{baseDir}\u002F`.\n\n## Quick start\n\nUse the wrapper script:\n\n```bash\n\"$PWCLI\" open https:\u002F\u002Fplaywright.dev --headed\n\"$PWCLI\" snapshot\n\"$PWCLI\" click e15\n\"$PWCLI\" type \"Playwright\"\n\"$PWCLI\" press Enter\n\"$PWCLI\" screenshot\n```\n\nIf the user prefers a global install, this is also valid:\n\n```bash\nnpm install -g @playwright\u002Fcli@latest\nplaywright-cli --help\n```\n\n## Core workflow\n\n1. Open the page.\n2. Snapshot to get stable element refs.\n3. Interact using refs from the latest snapshot.\n4. Re-snapshot after navigation or significant DOM changes.\n5. Capture artifacts (screenshot, pdf, traces) when useful.\n\nMinimal loop:\n\n```bash\n\"$PWCLI\" open https:\u002F\u002Fexample.com\n\"$PWCLI\" snapshot\n\"$PWCLI\" click e3\n\"$PWCLI\" snapshot\n```\n\n## When to snapshot again\n\nSnapshot again after:\n\n- navigation\n- clicking elements that change the UI substantially\n- opening\u002Fclosing modals or menus\n- tab switches\n\nRefs can go stale. When a command fails due to a missing ref, snapshot again.\n\n## Recommended patterns\n\n### Form fill and submit\n\n```bash\n\"$PWCLI\" open https:\u002F\u002Fexample.com\u002Fform\n\"$PWCLI\" snapshot\n\"$PWCLI\" fill e1 \"user@example.com\"\n\"$PWCLI\" fill e2 \"password123\"\n\"$PWCLI\" click e3\n\"$PWCLI\" snapshot\n```\n\n### Debug a UI flow with traces\n\n```bash\n\"$PWCLI\" open https:\u002F\u002Fexample.com --headed\n\"$PWCLI\" tracing-start\n# ...interactions...\n\"$PWCLI\" tracing-stop\n```\n\n### Multi-tab work\n\n```bash\n\"$PWCLI\" tab-new https:\u002F\u002Fexample.com\n\"$PWCLI\" tab-list\n\"$PWCLI\" tab-select 0\n\"$PWCLI\" snapshot\n```\n\n## Wrapper script\n\nThe wrapper script uses `npx --package @playwright\u002Fcli playwright-cli` so the CLI can run without a global install:\n\n```bash\n\"$PWCLI\" --help\n```\n\nPrefer the wrapper unless the repository already standardizes on a global install.\n\n## References\n\nOpen only what you need:\n\n- CLI command reference: `references\u002Fcli.md`\n- Practical workflows and troubleshooting: `references\u002Fworkflows.md`\n\n## Guardrails\n\n- Always snapshot before referencing element ids like `e12`.\n- Re-snapshot when refs seem stale.\n- Prefer explicit commands over `eval` and `run-code` unless needed.\n- When you do not have a fresh snapshot, use placeholder refs like `eX` and say why; do not bypass refs with `run-code`.\n- Use `--headed` when a visual check will help.\n- When capturing artifacts in this repo, use `output\u002Fplaywright\u002F` and avoid introducing new top-level artifact folders.\n- Default to CLI commands and workflows, not Playwright test specs.\n\n## When to Use\n\n\u003C!-- TODO: review -->\n\n## When NOT to Use\n\n\u003C!-- TODO: review -->\n\n",{"data":38,"body":46},{"name":4,"description":6,"allowed-tools":39},[40,41,42,43,44,45],"Bash","Read","Grep","Glob","Write","Edit",{"type":47,"children":48},"root",[49,58,81,88,101,151,163,262,281,294,300,305,469,474,511,517,547,552,645,651,656,680,685,691,698,865,871,954,960,1056,1062,1075,1101,1106,1112,1117,1142,1148,1239,1245,1251],{"type":50,"tag":51,"props":52,"children":54},"element","h1",{"id":53},"playwright-cli-skill",[55],{"type":56,"value":57},"text","Playwright CLI Skill",{"type":50,"tag":59,"props":60,"children":61},"p",{},[62,64,71,73,79],{"type":56,"value":63},"Drive a real browser from the terminal using ",{"type":50,"tag":65,"props":66,"children":68},"code",{"className":67},[],[69],{"type":56,"value":70},"playwright-cli",{"type":56,"value":72},". Prefer the bundled wrapper script so the CLI works even when it is not globally installed.\nTreat this skill as CLI-first automation. Do not pivot to ",{"type":50,"tag":65,"props":74,"children":76},{"className":75},[],[77],{"type":56,"value":78},"@playwright\u002Ftest",{"type":56,"value":80}," unless the user explicitly asks for test files.",{"type":50,"tag":82,"props":83,"children":85},"h2",{"id":84},"prerequisite-check-required",[86],{"type":56,"value":87},"Prerequisite check (required)",{"type":50,"tag":59,"props":89,"children":90},{},[91,93,99],{"type":56,"value":92},"Before proposing commands, check whether ",{"type":50,"tag":65,"props":94,"children":96},{"className":95},[],[97],{"type":56,"value":98},"npx",{"type":56,"value":100}," is available (the wrapper depends on it):",{"type":50,"tag":102,"props":103,"children":108},"pre",{"className":104,"code":105,"language":106,"meta":107,"style":107},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","command -v npx >\u002Fdev\u002Fnull 2>&1\n","bash","",[109],{"type":50,"tag":65,"props":110,"children":111},{"__ignoreMap":107},[112],{"type":50,"tag":113,"props":114,"children":117},"span",{"class":115,"line":116},"line",1,[118,124,130,135,141,146],{"type":50,"tag":113,"props":119,"children":121},{"style":120},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[122],{"type":56,"value":123},"command",{"type":50,"tag":113,"props":125,"children":127},{"style":126},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[128],{"type":56,"value":129}," -v",{"type":50,"tag":113,"props":131,"children":132},{"style":126},[133],{"type":56,"value":134}," npx",{"type":50,"tag":113,"props":136,"children":138},{"style":137},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[139],{"type":56,"value":140}," >",{"type":50,"tag":113,"props":142,"children":143},{"style":126},[144],{"type":56,"value":145},"\u002Fdev\u002Fnull",{"type":50,"tag":113,"props":147,"children":148},{"style":137},[149],{"type":56,"value":150}," 2>&1\n",{"type":50,"tag":59,"props":152,"children":153},{},[154,156,161],{"type":56,"value":155},"If it is not available, pause and ask the user to install Node.js\u002Fnpm (which provides ",{"type":50,"tag":65,"props":157,"children":159},{"className":158},[],[160],{"type":56,"value":98},{"type":56,"value":162},"). Provide these steps verbatim:",{"type":50,"tag":102,"props":164,"children":166},{"className":104,"code":165,"language":106,"meta":107,"style":107},"# Verify Node\u002Fnpm are installed\nnode --version\nnpm --version\n\n# If missing, install Node.js\u002Fnpm, then:\nnpm install -g @playwright\u002Fcli@latest\nplaywright-cli --help\n",[167],{"type":50,"tag":65,"props":168,"children":169},{"__ignoreMap":107},[170,179,194,207,217,226,249],{"type":50,"tag":113,"props":171,"children":172},{"class":115,"line":116},[173],{"type":50,"tag":113,"props":174,"children":176},{"style":175},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[177],{"type":56,"value":178},"# Verify Node\u002Fnpm are installed\n",{"type":50,"tag":113,"props":180,"children":182},{"class":115,"line":181},2,[183,189],{"type":50,"tag":113,"props":184,"children":186},{"style":185},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[187],{"type":56,"value":188},"node",{"type":50,"tag":113,"props":190,"children":191},{"style":126},[192],{"type":56,"value":193}," --version\n",{"type":50,"tag":113,"props":195,"children":197},{"class":115,"line":196},3,[198,203],{"type":50,"tag":113,"props":199,"children":200},{"style":185},[201],{"type":56,"value":202},"npm",{"type":50,"tag":113,"props":204,"children":205},{"style":126},[206],{"type":56,"value":193},{"type":50,"tag":113,"props":208,"children":210},{"class":115,"line":209},4,[211],{"type":50,"tag":113,"props":212,"children":214},{"emptyLinePlaceholder":213},true,[215],{"type":56,"value":216},"\n",{"type":50,"tag":113,"props":218,"children":220},{"class":115,"line":219},5,[221],{"type":50,"tag":113,"props":222,"children":223},{"style":175},[224],{"type":56,"value":225},"# If missing, install Node.js\u002Fnpm, then:\n",{"type":50,"tag":113,"props":227,"children":229},{"class":115,"line":228},6,[230,234,239,244],{"type":50,"tag":113,"props":231,"children":232},{"style":185},[233],{"type":56,"value":202},{"type":50,"tag":113,"props":235,"children":236},{"style":126},[237],{"type":56,"value":238}," install",{"type":50,"tag":113,"props":240,"children":241},{"style":126},[242],{"type":56,"value":243}," -g",{"type":50,"tag":113,"props":245,"children":246},{"style":126},[247],{"type":56,"value":248}," @playwright\u002Fcli@latest\n",{"type":50,"tag":113,"props":250,"children":252},{"class":115,"line":251},7,[253,257],{"type":50,"tag":113,"props":254,"children":255},{"style":185},[256],{"type":56,"value":70},{"type":50,"tag":113,"props":258,"children":259},{"style":126},[260],{"type":56,"value":261}," --help\n",{"type":50,"tag":59,"props":263,"children":264},{},[265,267,272,274,279],{"type":56,"value":266},"Once ",{"type":50,"tag":65,"props":268,"children":270},{"className":269},[],[271],{"type":56,"value":98},{"type":56,"value":273}," is present, proceed with the wrapper script. A global install of ",{"type":50,"tag":65,"props":275,"children":277},{"className":276},[],[278],{"type":56,"value":70},{"type":56,"value":280}," is optional.",{"type":50,"tag":59,"props":282,"children":283},{},[284,286,292],{"type":56,"value":285},"Scripts and references are located under ",{"type":50,"tag":65,"props":287,"children":289},{"className":288},[],[290],{"type":56,"value":291},"{baseDir}\u002F",{"type":56,"value":293},".",{"type":50,"tag":82,"props":295,"children":297},{"id":296},"quick-start",[298],{"type":56,"value":299},"Quick start",{"type":50,"tag":59,"props":301,"children":302},{},[303],{"type":56,"value":304},"Use the wrapper script:",{"type":50,"tag":102,"props":306,"children":308},{"className":104,"code":307,"language":106,"meta":107,"style":107},"\"$PWCLI\" open https:\u002F\u002Fplaywright.dev --headed\n\"$PWCLI\" snapshot\n\"$PWCLI\" click e15\n\"$PWCLI\" type \"Playwright\"\n\"$PWCLI\" press Enter\n\"$PWCLI\" screenshot\n",[309],{"type":50,"tag":65,"props":310,"children":311},{"__ignoreMap":107},[312,345,365,390,424,449],{"type":50,"tag":113,"props":313,"children":314},{"class":115,"line":116},[315,320,326,330,335,340],{"type":50,"tag":113,"props":316,"children":317},{"style":185},[318],{"type":56,"value":319},"\"",{"type":50,"tag":113,"props":321,"children":323},{"style":322},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[324],{"type":56,"value":325},"$PWCLI",{"type":50,"tag":113,"props":327,"children":328},{"style":185},[329],{"type":56,"value":319},{"type":50,"tag":113,"props":331,"children":332},{"style":126},[333],{"type":56,"value":334}," open",{"type":50,"tag":113,"props":336,"children":337},{"style":126},[338],{"type":56,"value":339}," https:\u002F\u002Fplaywright.dev",{"type":50,"tag":113,"props":341,"children":342},{"style":126},[343],{"type":56,"value":344}," --headed\n",{"type":50,"tag":113,"props":346,"children":347},{"class":115,"line":181},[348,352,356,360],{"type":50,"tag":113,"props":349,"children":350},{"style":185},[351],{"type":56,"value":319},{"type":50,"tag":113,"props":353,"children":354},{"style":322},[355],{"type":56,"value":325},{"type":50,"tag":113,"props":357,"children":358},{"style":185},[359],{"type":56,"value":319},{"type":50,"tag":113,"props":361,"children":362},{"style":126},[363],{"type":56,"value":364}," snapshot\n",{"type":50,"tag":113,"props":366,"children":367},{"class":115,"line":196},[368,372,376,380,385],{"type":50,"tag":113,"props":369,"children":370},{"style":185},[371],{"type":56,"value":319},{"type":50,"tag":113,"props":373,"children":374},{"style":322},[375],{"type":56,"value":325},{"type":50,"tag":113,"props":377,"children":378},{"style":185},[379],{"type":56,"value":319},{"type":50,"tag":113,"props":381,"children":382},{"style":126},[383],{"type":56,"value":384}," click",{"type":50,"tag":113,"props":386,"children":387},{"style":126},[388],{"type":56,"value":389}," e15\n",{"type":50,"tag":113,"props":391,"children":392},{"class":115,"line":209},[393,397,401,405,410,415,419],{"type":50,"tag":113,"props":394,"children":395},{"style":185},[396],{"type":56,"value":319},{"type":50,"tag":113,"props":398,"children":399},{"style":322},[400],{"type":56,"value":325},{"type":50,"tag":113,"props":402,"children":403},{"style":185},[404],{"type":56,"value":319},{"type":50,"tag":113,"props":406,"children":407},{"style":126},[408],{"type":56,"value":409}," type",{"type":50,"tag":113,"props":411,"children":412},{"style":137},[413],{"type":56,"value":414}," \"",{"type":50,"tag":113,"props":416,"children":417},{"style":126},[418],{"type":56,"value":14},{"type":50,"tag":113,"props":420,"children":421},{"style":137},[422],{"type":56,"value":423},"\"\n",{"type":50,"tag":113,"props":425,"children":426},{"class":115,"line":219},[427,431,435,439,444],{"type":50,"tag":113,"props":428,"children":429},{"style":185},[430],{"type":56,"value":319},{"type":50,"tag":113,"props":432,"children":433},{"style":322},[434],{"type":56,"value":325},{"type":50,"tag":113,"props":436,"children":437},{"style":185},[438],{"type":56,"value":319},{"type":50,"tag":113,"props":440,"children":441},{"style":126},[442],{"type":56,"value":443}," press",{"type":50,"tag":113,"props":445,"children":446},{"style":126},[447],{"type":56,"value":448}," Enter\n",{"type":50,"tag":113,"props":450,"children":451},{"class":115,"line":228},[452,456,460,464],{"type":50,"tag":113,"props":453,"children":454},{"style":185},[455],{"type":56,"value":319},{"type":50,"tag":113,"props":457,"children":458},{"style":322},[459],{"type":56,"value":325},{"type":50,"tag":113,"props":461,"children":462},{"style":185},[463],{"type":56,"value":319},{"type":50,"tag":113,"props":465,"children":466},{"style":126},[467],{"type":56,"value":468}," screenshot\n",{"type":50,"tag":59,"props":470,"children":471},{},[472],{"type":56,"value":473},"If the user prefers a global install, this is also valid:",{"type":50,"tag":102,"props":475,"children":477},{"className":104,"code":476,"language":106,"meta":107,"style":107},"npm install -g @playwright\u002Fcli@latest\nplaywright-cli --help\n",[478],{"type":50,"tag":65,"props":479,"children":480},{"__ignoreMap":107},[481,500],{"type":50,"tag":113,"props":482,"children":483},{"class":115,"line":116},[484,488,492,496],{"type":50,"tag":113,"props":485,"children":486},{"style":185},[487],{"type":56,"value":202},{"type":50,"tag":113,"props":489,"children":490},{"style":126},[491],{"type":56,"value":238},{"type":50,"tag":113,"props":493,"children":494},{"style":126},[495],{"type":56,"value":243},{"type":50,"tag":113,"props":497,"children":498},{"style":126},[499],{"type":56,"value":248},{"type":50,"tag":113,"props":501,"children":502},{"class":115,"line":181},[503,507],{"type":50,"tag":113,"props":504,"children":505},{"style":185},[506],{"type":56,"value":70},{"type":50,"tag":113,"props":508,"children":509},{"style":126},[510],{"type":56,"value":261},{"type":50,"tag":82,"props":512,"children":514},{"id":513},"core-workflow",[515],{"type":56,"value":516},"Core workflow",{"type":50,"tag":518,"props":519,"children":520},"ol",{},[521,527,532,537,542],{"type":50,"tag":522,"props":523,"children":524},"li",{},[525],{"type":56,"value":526},"Open the page.",{"type":50,"tag":522,"props":528,"children":529},{},[530],{"type":56,"value":531},"Snapshot to get stable element refs.",{"type":50,"tag":522,"props":533,"children":534},{},[535],{"type":56,"value":536},"Interact using refs from the latest snapshot.",{"type":50,"tag":522,"props":538,"children":539},{},[540],{"type":56,"value":541},"Re-snapshot after navigation or significant DOM changes.",{"type":50,"tag":522,"props":543,"children":544},{},[545],{"type":56,"value":546},"Capture artifacts (screenshot, pdf, traces) when useful.",{"type":50,"tag":59,"props":548,"children":549},{},[550],{"type":56,"value":551},"Minimal loop:",{"type":50,"tag":102,"props":553,"children":555},{"className":104,"code":554,"language":106,"meta":107,"style":107},"\"$PWCLI\" open https:\u002F\u002Fexample.com\n\"$PWCLI\" snapshot\n\"$PWCLI\" click e3\n\"$PWCLI\" snapshot\n",[556],{"type":50,"tag":65,"props":557,"children":558},{"__ignoreMap":107},[559,583,602,626],{"type":50,"tag":113,"props":560,"children":561},{"class":115,"line":116},[562,566,570,574,578],{"type":50,"tag":113,"props":563,"children":564},{"style":185},[565],{"type":56,"value":319},{"type":50,"tag":113,"props":567,"children":568},{"style":322},[569],{"type":56,"value":325},{"type":50,"tag":113,"props":571,"children":572},{"style":185},[573],{"type":56,"value":319},{"type":50,"tag":113,"props":575,"children":576},{"style":126},[577],{"type":56,"value":334},{"type":50,"tag":113,"props":579,"children":580},{"style":126},[581],{"type":56,"value":582}," https:\u002F\u002Fexample.com\n",{"type":50,"tag":113,"props":584,"children":585},{"class":115,"line":181},[586,590,594,598],{"type":50,"tag":113,"props":587,"children":588},{"style":185},[589],{"type":56,"value":319},{"type":50,"tag":113,"props":591,"children":592},{"style":322},[593],{"type":56,"value":325},{"type":50,"tag":113,"props":595,"children":596},{"style":185},[597],{"type":56,"value":319},{"type":50,"tag":113,"props":599,"children":600},{"style":126},[601],{"type":56,"value":364},{"type":50,"tag":113,"props":603,"children":604},{"class":115,"line":196},[605,609,613,617,621],{"type":50,"tag":113,"props":606,"children":607},{"style":185},[608],{"type":56,"value":319},{"type":50,"tag":113,"props":610,"children":611},{"style":322},[612],{"type":56,"value":325},{"type":50,"tag":113,"props":614,"children":615},{"style":185},[616],{"type":56,"value":319},{"type":50,"tag":113,"props":618,"children":619},{"style":126},[620],{"type":56,"value":384},{"type":50,"tag":113,"props":622,"children":623},{"style":126},[624],{"type":56,"value":625}," e3\n",{"type":50,"tag":113,"props":627,"children":628},{"class":115,"line":209},[629,633,637,641],{"type":50,"tag":113,"props":630,"children":631},{"style":185},[632],{"type":56,"value":319},{"type":50,"tag":113,"props":634,"children":635},{"style":322},[636],{"type":56,"value":325},{"type":50,"tag":113,"props":638,"children":639},{"style":185},[640],{"type":56,"value":319},{"type":50,"tag":113,"props":642,"children":643},{"style":126},[644],{"type":56,"value":364},{"type":50,"tag":82,"props":646,"children":648},{"id":647},"when-to-snapshot-again",[649],{"type":56,"value":650},"When to snapshot again",{"type":50,"tag":59,"props":652,"children":653},{},[654],{"type":56,"value":655},"Snapshot again after:",{"type":50,"tag":657,"props":658,"children":659},"ul",{},[660,665,670,675],{"type":50,"tag":522,"props":661,"children":662},{},[663],{"type":56,"value":664},"navigation",{"type":50,"tag":522,"props":666,"children":667},{},[668],{"type":56,"value":669},"clicking elements that change the UI substantially",{"type":50,"tag":522,"props":671,"children":672},{},[673],{"type":56,"value":674},"opening\u002Fclosing modals or menus",{"type":50,"tag":522,"props":676,"children":677},{},[678],{"type":56,"value":679},"tab switches",{"type":50,"tag":59,"props":681,"children":682},{},[683],{"type":56,"value":684},"Refs can go stale. When a command fails due to a missing ref, snapshot again.",{"type":50,"tag":82,"props":686,"children":688},{"id":687},"recommended-patterns",[689],{"type":56,"value":690},"Recommended patterns",{"type":50,"tag":692,"props":693,"children":695},"h3",{"id":694},"form-fill-and-submit",[696],{"type":56,"value":697},"Form fill and submit",{"type":50,"tag":102,"props":699,"children":701},{"className":104,"code":700,"language":106,"meta":107,"style":107},"\"$PWCLI\" open https:\u002F\u002Fexample.com\u002Fform\n\"$PWCLI\" snapshot\n\"$PWCLI\" fill e1 \"user@example.com\"\n\"$PWCLI\" fill e2 \"password123\"\n\"$PWCLI\" click e3\n\"$PWCLI\" snapshot\n",[702],{"type":50,"tag":65,"props":703,"children":704},{"__ignoreMap":107},[705,729,748,786,823,846],{"type":50,"tag":113,"props":706,"children":707},{"class":115,"line":116},[708,712,716,720,724],{"type":50,"tag":113,"props":709,"children":710},{"style":185},[711],{"type":56,"value":319},{"type":50,"tag":113,"props":713,"children":714},{"style":322},[715],{"type":56,"value":325},{"type":50,"tag":113,"props":717,"children":718},{"style":185},[719],{"type":56,"value":319},{"type":50,"tag":113,"props":721,"children":722},{"style":126},[723],{"type":56,"value":334},{"type":50,"tag":113,"props":725,"children":726},{"style":126},[727],{"type":56,"value":728}," https:\u002F\u002Fexample.com\u002Fform\n",{"type":50,"tag":113,"props":730,"children":731},{"class":115,"line":181},[732,736,740,744],{"type":50,"tag":113,"props":733,"children":734},{"style":185},[735],{"type":56,"value":319},{"type":50,"tag":113,"props":737,"children":738},{"style":322},[739],{"type":56,"value":325},{"type":50,"tag":113,"props":741,"children":742},{"style":185},[743],{"type":56,"value":319},{"type":50,"tag":113,"props":745,"children":746},{"style":126},[747],{"type":56,"value":364},{"type":50,"tag":113,"props":749,"children":750},{"class":115,"line":196},[751,755,759,763,768,773,777,782],{"type":50,"tag":113,"props":752,"children":753},{"style":185},[754],{"type":56,"value":319},{"type":50,"tag":113,"props":756,"children":757},{"style":322},[758],{"type":56,"value":325},{"type":50,"tag":113,"props":760,"children":761},{"style":185},[762],{"type":56,"value":319},{"type":50,"tag":113,"props":764,"children":765},{"style":126},[766],{"type":56,"value":767}," fill",{"type":50,"tag":113,"props":769,"children":770},{"style":126},[771],{"type":56,"value":772}," e1",{"type":50,"tag":113,"props":774,"children":775},{"style":137},[776],{"type":56,"value":414},{"type":50,"tag":113,"props":778,"children":779},{"style":126},[780],{"type":56,"value":781},"user@example.com",{"type":50,"tag":113,"props":783,"children":784},{"style":137},[785],{"type":56,"value":423},{"type":50,"tag":113,"props":787,"children":788},{"class":115,"line":209},[789,793,797,801,805,810,814,819],{"type":50,"tag":113,"props":790,"children":791},{"style":185},[792],{"type":56,"value":319},{"type":50,"tag":113,"props":794,"children":795},{"style":322},[796],{"type":56,"value":325},{"type":50,"tag":113,"props":798,"children":799},{"style":185},[800],{"type":56,"value":319},{"type":50,"tag":113,"props":802,"children":803},{"style":126},[804],{"type":56,"value":767},{"type":50,"tag":113,"props":806,"children":807},{"style":126},[808],{"type":56,"value":809}," e2",{"type":50,"tag":113,"props":811,"children":812},{"style":137},[813],{"type":56,"value":414},{"type":50,"tag":113,"props":815,"children":816},{"style":126},[817],{"type":56,"value":818},"password123",{"type":50,"tag":113,"props":820,"children":821},{"style":137},[822],{"type":56,"value":423},{"type":50,"tag":113,"props":824,"children":825},{"class":115,"line":219},[826,830,834,838,842],{"type":50,"tag":113,"props":827,"children":828},{"style":185},[829],{"type":56,"value":319},{"type":50,"tag":113,"props":831,"children":832},{"style":322},[833],{"type":56,"value":325},{"type":50,"tag":113,"props":835,"children":836},{"style":185},[837],{"type":56,"value":319},{"type":50,"tag":113,"props":839,"children":840},{"style":126},[841],{"type":56,"value":384},{"type":50,"tag":113,"props":843,"children":844},{"style":126},[845],{"type":56,"value":625},{"type":50,"tag":113,"props":847,"children":848},{"class":115,"line":228},[849,853,857,861],{"type":50,"tag":113,"props":850,"children":851},{"style":185},[852],{"type":56,"value":319},{"type":50,"tag":113,"props":854,"children":855},{"style":322},[856],{"type":56,"value":325},{"type":50,"tag":113,"props":858,"children":859},{"style":185},[860],{"type":56,"value":319},{"type":50,"tag":113,"props":862,"children":863},{"style":126},[864],{"type":56,"value":364},{"type":50,"tag":692,"props":866,"children":868},{"id":867},"debug-a-ui-flow-with-traces",[869],{"type":56,"value":870},"Debug a UI flow with traces",{"type":50,"tag":102,"props":872,"children":874},{"className":104,"code":873,"language":106,"meta":107,"style":107},"\"$PWCLI\" open https:\u002F\u002Fexample.com --headed\n\"$PWCLI\" tracing-start\n# ...interactions...\n\"$PWCLI\" tracing-stop\n",[875],{"type":50,"tag":65,"props":876,"children":877},{"__ignoreMap":107},[878,906,926,934],{"type":50,"tag":113,"props":879,"children":880},{"class":115,"line":116},[881,885,889,893,897,902],{"type":50,"tag":113,"props":882,"children":883},{"style":185},[884],{"type":56,"value":319},{"type":50,"tag":113,"props":886,"children":887},{"style":322},[888],{"type":56,"value":325},{"type":50,"tag":113,"props":890,"children":891},{"style":185},[892],{"type":56,"value":319},{"type":50,"tag":113,"props":894,"children":895},{"style":126},[896],{"type":56,"value":334},{"type":50,"tag":113,"props":898,"children":899},{"style":126},[900],{"type":56,"value":901}," https:\u002F\u002Fexample.com",{"type":50,"tag":113,"props":903,"children":904},{"style":126},[905],{"type":56,"value":344},{"type":50,"tag":113,"props":907,"children":908},{"class":115,"line":181},[909,913,917,921],{"type":50,"tag":113,"props":910,"children":911},{"style":185},[912],{"type":56,"value":319},{"type":50,"tag":113,"props":914,"children":915},{"style":322},[916],{"type":56,"value":325},{"type":50,"tag":113,"props":918,"children":919},{"style":185},[920],{"type":56,"value":319},{"type":50,"tag":113,"props":922,"children":923},{"style":126},[924],{"type":56,"value":925}," tracing-start\n",{"type":50,"tag":113,"props":927,"children":928},{"class":115,"line":196},[929],{"type":50,"tag":113,"props":930,"children":931},{"style":175},[932],{"type":56,"value":933},"# ...interactions...\n",{"type":50,"tag":113,"props":935,"children":936},{"class":115,"line":209},[937,941,945,949],{"type":50,"tag":113,"props":938,"children":939},{"style":185},[940],{"type":56,"value":319},{"type":50,"tag":113,"props":942,"children":943},{"style":322},[944],{"type":56,"value":325},{"type":50,"tag":113,"props":946,"children":947},{"style":185},[948],{"type":56,"value":319},{"type":50,"tag":113,"props":950,"children":951},{"style":126},[952],{"type":56,"value":953}," tracing-stop\n",{"type":50,"tag":692,"props":955,"children":957},{"id":956},"multi-tab-work",[958],{"type":56,"value":959},"Multi-tab work",{"type":50,"tag":102,"props":961,"children":963},{"className":104,"code":962,"language":106,"meta":107,"style":107},"\"$PWCLI\" tab-new https:\u002F\u002Fexample.com\n\"$PWCLI\" tab-list\n\"$PWCLI\" tab-select 0\n\"$PWCLI\" snapshot\n",[964],{"type":50,"tag":65,"props":965,"children":966},{"__ignoreMap":107},[967,991,1011,1037],{"type":50,"tag":113,"props":968,"children":969},{"class":115,"line":116},[970,974,978,982,987],{"type":50,"tag":113,"props":971,"children":972},{"style":185},[973],{"type":56,"value":319},{"type":50,"tag":113,"props":975,"children":976},{"style":322},[977],{"type":56,"value":325},{"type":50,"tag":113,"props":979,"children":980},{"style":185},[981],{"type":56,"value":319},{"type":50,"tag":113,"props":983,"children":984},{"style":126},[985],{"type":56,"value":986}," tab-new",{"type":50,"tag":113,"props":988,"children":989},{"style":126},[990],{"type":56,"value":582},{"type":50,"tag":113,"props":992,"children":993},{"class":115,"line":181},[994,998,1002,1006],{"type":50,"tag":113,"props":995,"children":996},{"style":185},[997],{"type":56,"value":319},{"type":50,"tag":113,"props":999,"children":1000},{"style":322},[1001],{"type":56,"value":325},{"type":50,"tag":113,"props":1003,"children":1004},{"style":185},[1005],{"type":56,"value":319},{"type":50,"tag":113,"props":1007,"children":1008},{"style":126},[1009],{"type":56,"value":1010}," tab-list\n",{"type":50,"tag":113,"props":1012,"children":1013},{"class":115,"line":196},[1014,1018,1022,1026,1031],{"type":50,"tag":113,"props":1015,"children":1016},{"style":185},[1017],{"type":56,"value":319},{"type":50,"tag":113,"props":1019,"children":1020},{"style":322},[1021],{"type":56,"value":325},{"type":50,"tag":113,"props":1023,"children":1024},{"style":185},[1025],{"type":56,"value":319},{"type":50,"tag":113,"props":1027,"children":1028},{"style":126},[1029],{"type":56,"value":1030}," tab-select",{"type":50,"tag":113,"props":1032,"children":1034},{"style":1033},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1035],{"type":56,"value":1036}," 0\n",{"type":50,"tag":113,"props":1038,"children":1039},{"class":115,"line":209},[1040,1044,1048,1052],{"type":50,"tag":113,"props":1041,"children":1042},{"style":185},[1043],{"type":56,"value":319},{"type":50,"tag":113,"props":1045,"children":1046},{"style":322},[1047],{"type":56,"value":325},{"type":50,"tag":113,"props":1049,"children":1050},{"style":185},[1051],{"type":56,"value":319},{"type":50,"tag":113,"props":1053,"children":1054},{"style":126},[1055],{"type":56,"value":364},{"type":50,"tag":82,"props":1057,"children":1059},{"id":1058},"wrapper-script",[1060],{"type":56,"value":1061},"Wrapper script",{"type":50,"tag":59,"props":1063,"children":1064},{},[1065,1067,1073],{"type":56,"value":1066},"The wrapper script uses ",{"type":50,"tag":65,"props":1068,"children":1070},{"className":1069},[],[1071],{"type":56,"value":1072},"npx --package @playwright\u002Fcli playwright-cli",{"type":56,"value":1074}," so the CLI can run without a global install:",{"type":50,"tag":102,"props":1076,"children":1078},{"className":104,"code":1077,"language":106,"meta":107,"style":107},"\"$PWCLI\" --help\n",[1079],{"type":50,"tag":65,"props":1080,"children":1081},{"__ignoreMap":107},[1082],{"type":50,"tag":113,"props":1083,"children":1084},{"class":115,"line":116},[1085,1089,1093,1097],{"type":50,"tag":113,"props":1086,"children":1087},{"style":185},[1088],{"type":56,"value":319},{"type":50,"tag":113,"props":1090,"children":1091},{"style":322},[1092],{"type":56,"value":325},{"type":50,"tag":113,"props":1094,"children":1095},{"style":185},[1096],{"type":56,"value":319},{"type":50,"tag":113,"props":1098,"children":1099},{"style":126},[1100],{"type":56,"value":261},{"type":50,"tag":59,"props":1102,"children":1103},{},[1104],{"type":56,"value":1105},"Prefer the wrapper unless the repository already standardizes on a global install.",{"type":50,"tag":82,"props":1107,"children":1109},{"id":1108},"references",[1110],{"type":56,"value":1111},"References",{"type":50,"tag":59,"props":1113,"children":1114},{},[1115],{"type":56,"value":1116},"Open only what you need:",{"type":50,"tag":657,"props":1118,"children":1119},{},[1120,1131],{"type":50,"tag":522,"props":1121,"children":1122},{},[1123,1125],{"type":56,"value":1124},"CLI command reference: ",{"type":50,"tag":65,"props":1126,"children":1128},{"className":1127},[],[1129],{"type":56,"value":1130},"references\u002Fcli.md",{"type":50,"tag":522,"props":1132,"children":1133},{},[1134,1136],{"type":56,"value":1135},"Practical workflows and troubleshooting: ",{"type":50,"tag":65,"props":1137,"children":1139},{"className":1138},[],[1140],{"type":56,"value":1141},"references\u002Fworkflows.md",{"type":50,"tag":82,"props":1143,"children":1145},{"id":1144},"guardrails",[1146],{"type":56,"value":1147},"Guardrails",{"type":50,"tag":657,"props":1149,"children":1150},{},[1151,1163,1168,1189,1208,1221,1234],{"type":50,"tag":522,"props":1152,"children":1153},{},[1154,1156,1162],{"type":56,"value":1155},"Always snapshot before referencing element ids like ",{"type":50,"tag":65,"props":1157,"children":1159},{"className":1158},[],[1160],{"type":56,"value":1161},"e12",{"type":56,"value":293},{"type":50,"tag":522,"props":1164,"children":1165},{},[1166],{"type":56,"value":1167},"Re-snapshot when refs seem stale.",{"type":50,"tag":522,"props":1169,"children":1170},{},[1171,1173,1179,1181,1187],{"type":56,"value":1172},"Prefer explicit commands over ",{"type":50,"tag":65,"props":1174,"children":1176},{"className":1175},[],[1177],{"type":56,"value":1178},"eval",{"type":56,"value":1180}," and ",{"type":50,"tag":65,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":56,"value":1186},"run-code",{"type":56,"value":1188}," unless needed.",{"type":50,"tag":522,"props":1190,"children":1191},{},[1192,1194,1200,1202,1207],{"type":56,"value":1193},"When you do not have a fresh snapshot, use placeholder refs like ",{"type":50,"tag":65,"props":1195,"children":1197},{"className":1196},[],[1198],{"type":56,"value":1199},"eX",{"type":56,"value":1201}," and say why; do not bypass refs with ",{"type":50,"tag":65,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":56,"value":1186},{"type":56,"value":293},{"type":50,"tag":522,"props":1209,"children":1210},{},[1211,1213,1219],{"type":56,"value":1212},"Use ",{"type":50,"tag":65,"props":1214,"children":1216},{"className":1215},[],[1217],{"type":56,"value":1218},"--headed",{"type":56,"value":1220}," when a visual check will help.",{"type":50,"tag":522,"props":1222,"children":1223},{},[1224,1226,1232],{"type":56,"value":1225},"When capturing artifacts in this repo, use ",{"type":50,"tag":65,"props":1227,"children":1229},{"className":1228},[],[1230],{"type":56,"value":1231},"output\u002Fplaywright\u002F",{"type":56,"value":1233}," and avoid introducing new top-level artifact folders.",{"type":50,"tag":522,"props":1235,"children":1236},{},[1237],{"type":56,"value":1238},"Default to CLI commands and workflows, not Playwright test specs.",{"type":50,"tag":82,"props":1240,"children":1242},{"id":1241},"when-to-use",[1243],{"type":56,"value":1244},"When to Use",{"type":50,"tag":82,"props":1246,"children":1248},{"id":1247},"when-not-to-use",[1249],{"type":56,"value":1250},"When NOT to Use",{"type":50,"tag":1252,"props":1253,"children":1254},"style",{},[1255],{"type":56,"value":1256},"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":1258,"total":1369},[1259,1273,1285,1304,1320,1336,1350],{"slug":1260,"name":1260,"fn":1261,"description":1262,"org":1263,"tags":1264,"stars":26,"repoUrl":27,"updatedAt":1272},"ffuf-web-fuzzing","perform web fuzzing with ffuf","Expert guidance for ffuf web fuzzing during authorized penetration testing. Covers directory discovery, subdomain enumeration, parameter fuzzing, authenticated fuzzing with raw requests, auto-calibration, and result analysis. Use when running ffuf scans, analyzing ffuf output, or building fuzzing strategies for web targets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1265,1268,1271],{"name":1266,"slug":1267,"type":16},"Code Analysis","code-analysis",{"name":1269,"slug":1270,"type":16},"Security","security",{"name":21,"slug":22,"type":16},"2026-07-17T06:05:08.247908",{"slug":1274,"name":1274,"fn":1275,"description":1276,"org":1277,"tags":1278,"stars":26,"repoUrl":27,"updatedAt":1284},"ghidra-headless","reverse engineer binaries with Ghidra","Reverse engineers binaries using Ghidra's headless analyzer. Use when decompiling executables, extracting functions, strings, symbols, or analyzing call graphs from compiled binaries without the Ghidra GUI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1279,1280,1283],{"name":1266,"slug":1267,"type":16},{"name":1281,"slug":1282,"type":16},"Debugging","debugging",{"name":1269,"slug":1270,"type":16},"2026-07-18T05:47:30.015093",{"slug":1286,"name":1286,"fn":1287,"description":1288,"org":1289,"tags":1290,"stars":26,"repoUrl":27,"updatedAt":1303},"grilling","stress-test plans and decisions","Interviews the user relentlessly about a plan, decision, or idea until every branch of the decision tree is resolved. Use when the user wants to stress-test their thinking, sharpen a plan or design before acting, or uses any 'grill' trigger phrase (e.g. \"grill me on this\").",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1291,1294,1297,1300],{"name":1292,"slug":1293,"type":16},"Analysis","analysis",{"name":1295,"slug":1296,"type":16},"Coaching","coaching",{"name":1298,"slug":1299,"type":16},"Ideation","ideation",{"name":1301,"slug":1302,"type":16},"Strategy","strategy","2026-07-18T05:48:12.46583",{"slug":1305,"name":1305,"fn":1306,"description":1307,"org":1308,"tags":1309,"stars":26,"repoUrl":27,"updatedAt":1319},"handoff","compact conversation for session handoff","Compacts the current conversation into a handoff document so a fresh agent can continue the work in a new session.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1310,1313,1316],{"name":1311,"slug":1312,"type":16},"Agents","agents",{"name":1314,"slug":1315,"type":16},"Context","context",{"name":1317,"slug":1318,"type":16},"Productivity","productivity","2026-07-18T05:47:03.196098",{"slug":1321,"name":1321,"fn":1322,"description":1323,"org":1324,"tags":1325,"stars":26,"repoUrl":27,"updatedAt":1335},"humanizer","edit text to sound human-written","Remove signs of AI-generated writing from text. Use when editing or reviewing\ntext to make it sound more natural and human-written. Based on Wikipedia's\ncomprehensive \"Signs of AI writing\" guide. Detects and fixes patterns including:\ninflated symbolism, promotional language, superficial -ing analyses, vague\nattributions, em dash overuse, rule of three, AI vocabulary words, negative\nparallelisms, and excessive conjunctive phrases. 30c5c8d (Update humanizer plugin to upstream v2.2.0)\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1326,1329,1332],{"name":1327,"slug":1328,"type":16},"Content Creation","content-creation",{"name":1330,"slug":1331,"type":16},"Editing","editing",{"name":1333,"slug":1334,"type":16},"Writing","writing","2026-07-18T05:47:18.1749",{"slug":1337,"name":1337,"fn":1338,"description":1339,"org":1340,"tags":1341,"stars":26,"repoUrl":27,"updatedAt":1349},"last30days","research recent community discussions and trends","Researches a topic from the last 30 days on Reddit, X, and the web. Surfaces real community discussions with engagement metrics and synthesizes findings into actionable insights. Use when the user wants to know what people are saying about a topic right now.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1342,1343,1346],{"name":1292,"slug":1293,"type":16},{"name":1344,"slug":1345,"type":16},"Research","research",{"name":1347,"slug":1348,"type":16},"Social Media","social-media","2026-07-17T06:04:39.744471",{"slug":1351,"name":1351,"fn":1352,"description":1353,"org":1354,"tags":1355,"stars":26,"repoUrl":27,"updatedAt":1368},"openai-cloudflare-deploy","deploy applications 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. Originally from OpenAI's curated skills catalog.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1356,1359,1362,1365],{"name":1357,"slug":1358,"type":16},"Cloudflare","cloudflare",{"name":1360,"slug":1361,"type":16},"Cloudflare Pages","cloudflare-pages",{"name":1363,"slug":1364,"type":16},"Cloudflare Workers","cloudflare-workers",{"name":1366,"slug":1367,"type":16},"Deployment","deployment","2026-07-17T06:04:46.574433",31,{"items":1371,"total":1519},[1372,1387,1397,1413,1428,1439,1451,1461,1474,1485,1497,1508],{"slug":1373,"name":1373,"fn":1374,"description":1375,"org":1376,"tags":1377,"stars":1384,"repoUrl":1385,"updatedAt":1386},"address-sanitizer","detect memory errors during fuzzing","AddressSanitizer detects memory errors during fuzzing. Use when fuzzing C\u002FC++ code to find buffer overflows and use-after-free bugs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1378,1381,1382,1383],{"name":1379,"slug":1380,"type":16},"C#","c",{"name":1281,"slug":1282,"type":16},{"name":1269,"slug":1270,"type":16},{"name":21,"slug":22,"type":16},6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:14.925095",{"slug":1388,"name":1388,"fn":1389,"description":1390,"org":1391,"tags":1392,"stars":1384,"repoUrl":1385,"updatedAt":1396},"aflpp","perform multi-core fuzzing of C\u002FC++ projects","AFL++ is a fork of AFL with better fuzzing performance and advanced features. Use for multi-core fuzzing of C\u002FC++ projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1393,1394,1395],{"name":1379,"slug":1380,"type":16},{"name":1269,"slug":1270,"type":16},{"name":21,"slug":22,"type":16},"2026-07-17T06:05:12.433192",{"slug":1398,"name":1398,"fn":1399,"description":1400,"org":1401,"tags":1402,"stars":1384,"repoUrl":1385,"updatedAt":1412},"agentic-actions-auditor","audit GitHub Actions for security vulnerabilities","Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches AI agents running in CI\u002FCD pipelines, including env var intermediary patterns, direct expression injection, dangerous sandbox configurations, and wildcard user allowlists. Use when reviewing workflow files that invoke AI coding agents, auditing CI\u002FCD pipeline security for prompt injection risks, or evaluating agentic action configurations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1403,1404,1407,1408,1411],{"name":1311,"slug":1312,"type":16},{"name":1405,"slug":1406,"type":16},"CI\u002FCD","ci-cd",{"name":1266,"slug":1267,"type":16},{"name":1409,"slug":1410,"type":16},"GitHub Actions","github-actions",{"name":1269,"slug":1270,"type":16},"2026-07-18T05:47:48.564744",{"slug":1414,"name":1414,"fn":1415,"description":1416,"org":1417,"tags":1418,"stars":1384,"repoUrl":1385,"updatedAt":1427},"algorand-vulnerability-scanner","scan Algorand smart contracts for vulnerabilities","Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access control issues. Use when auditing Algorand projects (TEAL\u002FPyTeal).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1419,1422,1423,1424],{"name":1420,"slug":1421,"type":16},"Audit","audit",{"name":1266,"slug":1267,"type":16},{"name":1269,"slug":1270,"type":16},{"name":1425,"slug":1426,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":1429,"name":1429,"fn":1430,"description":1431,"org":1432,"tags":1433,"stars":1384,"repoUrl":1385,"updatedAt":1438},"ask-questions-if-underspecified","clarify requirements before implementation","Clarify requirements before implementing. Use when serious doubts arise.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1434,1437],{"name":1435,"slug":1436,"type":16},"Engineering","engineering",{"name":1317,"slug":1318,"type":16},"2026-07-17T06:05:33.543262",{"slug":1440,"name":1440,"fn":1441,"description":1442,"org":1443,"tags":1444,"stars":1384,"repoUrl":1385,"updatedAt":1450},"atheris","fuzz Python code with Atheris","Atheris is a coverage-guided Python fuzzer based on libFuzzer. Use for fuzzing pure Python code and Python C extensions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1445,1448,1449],{"name":1446,"slug":1447,"type":16},"Python","python",{"name":1269,"slug":1270,"type":16},{"name":21,"slug":22,"type":16},"2026-07-17T06:05:14.575191",{"slug":1452,"name":1452,"fn":1453,"description":1454,"org":1455,"tags":1456,"stars":1384,"repoUrl":1385,"updatedAt":1460},"audit-augmentation","augment code graphs with audit findings","Augments Trailmark code graphs with external audit findings from SARIF static analysis results, weAudit annotation files, and version-gated Trailmark 0.4.x binary-analysis graph exports. Maps findings to graph nodes by file and line overlap, creates severity-based subgraphs, and enables cross-referencing findings with pre-analysis data (blast radius, taint, etc.). Use when projecting SARIF results onto a code graph, overlaying weAudit annotations, importing binary graph findings, cross-referencing Semgrep, CodeQL, or binary-analysis findings with call graph data, or visualizing audit findings in the context of code structure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1457,1458,1459],{"name":1420,"slug":1421,"type":16},{"name":1266,"slug":1267,"type":16},{"name":1269,"slug":1270,"type":16},"2026-08-01T05:44:54.920542",{"slug":1462,"name":1462,"fn":1463,"description":1464,"org":1465,"tags":1466,"stars":1384,"repoUrl":1385,"updatedAt":1473},"audit-context-building","build architectural context for code analysis","Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1467,1470,1471,1472],{"name":1468,"slug":1469,"type":16},"Architecture","architecture",{"name":1420,"slug":1421,"type":16},{"name":1266,"slug":1267,"type":16},{"name":1435,"slug":1436,"type":16},"2026-07-18T05:47:40.122449",{"slug":1475,"name":1475,"fn":1476,"description":1477,"org":1478,"tags":1479,"stars":1384,"repoUrl":1385,"updatedAt":1484},"audit-prep-assistant","prepare codebases for security audits","Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1480,1481,1482,1483],{"name":1420,"slug":1421,"type":16},{"name":1266,"slug":1267,"type":16},{"name":1435,"slug":1436,"type":16},{"name":1269,"slug":1270,"type":16},"2026-07-18T05:47:39.210985",{"slug":1486,"name":1486,"fn":1487,"description":1488,"org":1489,"tags":1490,"stars":1384,"repoUrl":1385,"updatedAt":1496},"burpsuite-project-parser","parse Burp Suite project files","Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1491,1492,1495],{"name":1420,"slug":1421,"type":16},{"name":1493,"slug":1494,"type":16},"CLI","cli",{"name":1269,"slug":1270,"type":16},"2026-07-17T06:05:33.198077",{"slug":1498,"name":1498,"fn":1499,"description":1500,"org":1501,"tags":1502,"stars":1384,"repoUrl":1385,"updatedAt":1507},"c-review","audit C and C++ code","Performs comprehensive C\u002FC++ security review for memory corruption, integer overflows, race conditions, and platform-specific vulnerabilities. Use when auditing native C\u002FC++ applications, reviewing daemons or services for memory safety, or hunting integer overflow \u002F use-after-free \u002F race conditions in userspace code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1503,1504,1505,1506],{"name":1420,"slug":1421,"type":16},{"name":1379,"slug":1380,"type":16},{"name":1266,"slug":1267,"type":16},{"name":1269,"slug":1270,"type":16},"2026-07-17T06:05:11.333374",{"slug":1509,"name":1509,"fn":1510,"description":1511,"org":1512,"tags":1513,"stars":1384,"repoUrl":1385,"updatedAt":1518},"cairo-vulnerability-scanner","scan Cairo and StarkNet contracts for vulnerabilities","Scans Cairo\u002FStarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems, and signature replay. Use when auditing StarkNet projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1514,1515,1516,1517],{"name":1420,"slug":1421,"type":16},{"name":1266,"slug":1267,"type":16},{"name":1269,"slug":1270,"type":16},{"name":1425,"slug":1426,"type":16},"2026-07-18T05:47:42.84568",111]