[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-playwright":3,"mdc-tz9i7k-key":36,"related-org-letta-playwright":1307,"related-repo-letta-playwright":1468},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"playwright","automate browser interactions 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.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,16,19,22],{"name":14,"slug":4,"type":15},"Playwright","tag",{"name":17,"slug":18,"type":15},"Testing","testing",{"name":20,"slug":21,"type":15},"Debugging","debugging",{"name":23,"slug":24,"type":15},"Browser Automation","browser-automation",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-16T06:00:30.724426",null,20,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"A shared repository for skills. Intended to be used with Letta Code, Claude Code, Codex CLI, and other agents that support skills.","https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills\u002Ftree\u002FHEAD\u002Ftools\u002Fplaywright","---\nname: \"playwright\"\ndescription: \"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.\"\n---\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\n## Skill path (set once)\n\n```bash\n# Set SKILL_DIR to the directory containing this SKILL.md\nexport PWCLI=\"\u003Cpath-to-skill>\u002Fscripts\u002Fplaywright_cli.sh\"\n```\n\nReplace `\u003Cpath-to-skill>` with the actual skill installation directory (e.g. `.skills\u002Fplaywright` or `~\u002F.letta\u002Fskills\u002Fplaywright`).\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",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,73,80,93,143,155,254,273,279,329,358,364,369,530,535,572,578,608,613,706,712,717,741,746,752,759,926,932,1015,1021,1117,1123,1136,1162,1167,1173,1178,1203,1209,1301],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"playwright-cli-skill",[47],{"type":48,"value":49},"text","Playwright CLI Skill",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54,56,63,65,71],{"type":48,"value":55},"Drive a real browser from the terminal using ",{"type":42,"tag":57,"props":58,"children":60},"code",{"className":59},[],[61],{"type":48,"value":62},"playwright-cli",{"type":48,"value":64},". 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":42,"tag":57,"props":66,"children":68},{"className":67},[],[69],{"type":48,"value":70},"@playwright\u002Ftest",{"type":48,"value":72}," unless the user explicitly asks for test files.",{"type":42,"tag":74,"props":75,"children":77},"h2",{"id":76},"prerequisite-check-required",[78],{"type":48,"value":79},"Prerequisite check (required)",{"type":42,"tag":51,"props":81,"children":82},{},[83,85,91],{"type":48,"value":84},"Before proposing commands, check whether ",{"type":42,"tag":57,"props":86,"children":88},{"className":87},[],[89],{"type":48,"value":90},"npx",{"type":48,"value":92}," is available (the wrapper depends on it):",{"type":42,"tag":94,"props":95,"children":100},"pre",{"className":96,"code":97,"language":98,"meta":99,"style":99},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","command -v npx >\u002Fdev\u002Fnull 2>&1\n","bash","",[101],{"type":42,"tag":57,"props":102,"children":103},{"__ignoreMap":99},[104],{"type":42,"tag":105,"props":106,"children":109},"span",{"class":107,"line":108},"line",1,[110,116,122,127,133,138],{"type":42,"tag":105,"props":111,"children":113},{"style":112},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[114],{"type":48,"value":115},"command",{"type":42,"tag":105,"props":117,"children":119},{"style":118},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[120],{"type":48,"value":121}," -v",{"type":42,"tag":105,"props":123,"children":124},{"style":118},[125],{"type":48,"value":126}," npx",{"type":42,"tag":105,"props":128,"children":130},{"style":129},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[131],{"type":48,"value":132}," >",{"type":42,"tag":105,"props":134,"children":135},{"style":118},[136],{"type":48,"value":137},"\u002Fdev\u002Fnull",{"type":42,"tag":105,"props":139,"children":140},{"style":129},[141],{"type":48,"value":142}," 2>&1\n",{"type":42,"tag":51,"props":144,"children":145},{},[146,148,153],{"type":48,"value":147},"If it is not available, pause and ask the user to install Node.js\u002Fnpm (which provides ",{"type":42,"tag":57,"props":149,"children":151},{"className":150},[],[152],{"type":48,"value":90},{"type":48,"value":154},"). Provide these steps verbatim:",{"type":42,"tag":94,"props":156,"children":158},{"className":96,"code":157,"language":98,"meta":99,"style":99},"# 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",[159],{"type":42,"tag":57,"props":160,"children":161},{"__ignoreMap":99},[162,171,186,199,209,218,241],{"type":42,"tag":105,"props":163,"children":164},{"class":107,"line":108},[165],{"type":42,"tag":105,"props":166,"children":168},{"style":167},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[169],{"type":48,"value":170},"# Verify Node\u002Fnpm are installed\n",{"type":42,"tag":105,"props":172,"children":174},{"class":107,"line":173},2,[175,181],{"type":42,"tag":105,"props":176,"children":178},{"style":177},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[179],{"type":48,"value":180},"node",{"type":42,"tag":105,"props":182,"children":183},{"style":118},[184],{"type":48,"value":185}," --version\n",{"type":42,"tag":105,"props":187,"children":189},{"class":107,"line":188},3,[190,195],{"type":42,"tag":105,"props":191,"children":192},{"style":177},[193],{"type":48,"value":194},"npm",{"type":42,"tag":105,"props":196,"children":197},{"style":118},[198],{"type":48,"value":185},{"type":42,"tag":105,"props":200,"children":202},{"class":107,"line":201},4,[203],{"type":42,"tag":105,"props":204,"children":206},{"emptyLinePlaceholder":205},true,[207],{"type":48,"value":208},"\n",{"type":42,"tag":105,"props":210,"children":212},{"class":107,"line":211},5,[213],{"type":42,"tag":105,"props":214,"children":215},{"style":167},[216],{"type":48,"value":217},"# If missing, install Node.js\u002Fnpm, then:\n",{"type":42,"tag":105,"props":219,"children":221},{"class":107,"line":220},6,[222,226,231,236],{"type":42,"tag":105,"props":223,"children":224},{"style":177},[225],{"type":48,"value":194},{"type":42,"tag":105,"props":227,"children":228},{"style":118},[229],{"type":48,"value":230}," install",{"type":42,"tag":105,"props":232,"children":233},{"style":118},[234],{"type":48,"value":235}," -g",{"type":42,"tag":105,"props":237,"children":238},{"style":118},[239],{"type":48,"value":240}," @playwright\u002Fcli@latest\n",{"type":42,"tag":105,"props":242,"children":244},{"class":107,"line":243},7,[245,249],{"type":42,"tag":105,"props":246,"children":247},{"style":177},[248],{"type":48,"value":62},{"type":42,"tag":105,"props":250,"children":251},{"style":118},[252],{"type":48,"value":253}," --help\n",{"type":42,"tag":51,"props":255,"children":256},{},[257,259,264,266,271],{"type":48,"value":258},"Once ",{"type":42,"tag":57,"props":260,"children":262},{"className":261},[],[263],{"type":48,"value":90},{"type":48,"value":265}," is present, proceed with the wrapper script. A global install of ",{"type":42,"tag":57,"props":267,"children":269},{"className":268},[],[270],{"type":48,"value":62},{"type":48,"value":272}," is optional.",{"type":42,"tag":74,"props":274,"children":276},{"id":275},"skill-path-set-once",[277],{"type":48,"value":278},"Skill path (set once)",{"type":42,"tag":94,"props":280,"children":282},{"className":96,"code":281,"language":98,"meta":99,"style":99},"# Set SKILL_DIR to the directory containing this SKILL.md\nexport PWCLI=\"\u003Cpath-to-skill>\u002Fscripts\u002Fplaywright_cli.sh\"\n",[283],{"type":42,"tag":57,"props":284,"children":285},{"__ignoreMap":99},[286,294],{"type":42,"tag":105,"props":287,"children":288},{"class":107,"line":108},[289],{"type":42,"tag":105,"props":290,"children":291},{"style":167},[292],{"type":48,"value":293},"# Set SKILL_DIR to the directory containing this SKILL.md\n",{"type":42,"tag":105,"props":295,"children":296},{"class":107,"line":173},[297,303,309,314,319,324],{"type":42,"tag":105,"props":298,"children":300},{"style":299},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[301],{"type":48,"value":302},"export",{"type":42,"tag":105,"props":304,"children":306},{"style":305},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[307],{"type":48,"value":308}," PWCLI",{"type":42,"tag":105,"props":310,"children":311},{"style":129},[312],{"type":48,"value":313},"=",{"type":42,"tag":105,"props":315,"children":316},{"style":129},[317],{"type":48,"value":318},"\"",{"type":42,"tag":105,"props":320,"children":321},{"style":118},[322],{"type":48,"value":323},"\u003Cpath-to-skill>\u002Fscripts\u002Fplaywright_cli.sh",{"type":42,"tag":105,"props":325,"children":326},{"style":129},[327],{"type":48,"value":328},"\"\n",{"type":42,"tag":51,"props":330,"children":331},{},[332,334,340,342,348,350,356],{"type":48,"value":333},"Replace ",{"type":42,"tag":57,"props":335,"children":337},{"className":336},[],[338],{"type":48,"value":339},"\u003Cpath-to-skill>",{"type":48,"value":341}," with the actual skill installation directory (e.g. ",{"type":42,"tag":57,"props":343,"children":345},{"className":344},[],[346],{"type":48,"value":347},".skills\u002Fplaywright",{"type":48,"value":349}," or ",{"type":42,"tag":57,"props":351,"children":353},{"className":352},[],[354],{"type":48,"value":355},"~\u002F.letta\u002Fskills\u002Fplaywright",{"type":48,"value":357},").",{"type":42,"tag":74,"props":359,"children":361},{"id":360},"quick-start",[362],{"type":48,"value":363},"Quick start",{"type":42,"tag":51,"props":365,"children":366},{},[367],{"type":48,"value":368},"Use the wrapper script:",{"type":42,"tag":94,"props":370,"children":372},{"className":96,"code":371,"language":98,"meta":99,"style":99},"\"$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",[373],{"type":42,"tag":57,"props":374,"children":375},{"__ignoreMap":99},[376,407,427,452,485,510],{"type":42,"tag":105,"props":377,"children":378},{"class":107,"line":108},[379,383,388,392,397,402],{"type":42,"tag":105,"props":380,"children":381},{"style":177},[382],{"type":48,"value":318},{"type":42,"tag":105,"props":384,"children":385},{"style":305},[386],{"type":48,"value":387},"$PWCLI",{"type":42,"tag":105,"props":389,"children":390},{"style":177},[391],{"type":48,"value":318},{"type":42,"tag":105,"props":393,"children":394},{"style":118},[395],{"type":48,"value":396}," open",{"type":42,"tag":105,"props":398,"children":399},{"style":118},[400],{"type":48,"value":401}," https:\u002F\u002Fplaywright.dev",{"type":42,"tag":105,"props":403,"children":404},{"style":118},[405],{"type":48,"value":406}," --headed\n",{"type":42,"tag":105,"props":408,"children":409},{"class":107,"line":173},[410,414,418,422],{"type":42,"tag":105,"props":411,"children":412},{"style":177},[413],{"type":48,"value":318},{"type":42,"tag":105,"props":415,"children":416},{"style":305},[417],{"type":48,"value":387},{"type":42,"tag":105,"props":419,"children":420},{"style":177},[421],{"type":48,"value":318},{"type":42,"tag":105,"props":423,"children":424},{"style":118},[425],{"type":48,"value":426}," snapshot\n",{"type":42,"tag":105,"props":428,"children":429},{"class":107,"line":188},[430,434,438,442,447],{"type":42,"tag":105,"props":431,"children":432},{"style":177},[433],{"type":48,"value":318},{"type":42,"tag":105,"props":435,"children":436},{"style":305},[437],{"type":48,"value":387},{"type":42,"tag":105,"props":439,"children":440},{"style":177},[441],{"type":48,"value":318},{"type":42,"tag":105,"props":443,"children":444},{"style":118},[445],{"type":48,"value":446}," click",{"type":42,"tag":105,"props":448,"children":449},{"style":118},[450],{"type":48,"value":451}," e15\n",{"type":42,"tag":105,"props":453,"children":454},{"class":107,"line":201},[455,459,463,467,472,477,481],{"type":42,"tag":105,"props":456,"children":457},{"style":177},[458],{"type":48,"value":318},{"type":42,"tag":105,"props":460,"children":461},{"style":305},[462],{"type":48,"value":387},{"type":42,"tag":105,"props":464,"children":465},{"style":177},[466],{"type":48,"value":318},{"type":42,"tag":105,"props":468,"children":469},{"style":118},[470],{"type":48,"value":471}," type",{"type":42,"tag":105,"props":473,"children":474},{"style":129},[475],{"type":48,"value":476}," \"",{"type":42,"tag":105,"props":478,"children":479},{"style":118},[480],{"type":48,"value":14},{"type":42,"tag":105,"props":482,"children":483},{"style":129},[484],{"type":48,"value":328},{"type":42,"tag":105,"props":486,"children":487},{"class":107,"line":211},[488,492,496,500,505],{"type":42,"tag":105,"props":489,"children":490},{"style":177},[491],{"type":48,"value":318},{"type":42,"tag":105,"props":493,"children":494},{"style":305},[495],{"type":48,"value":387},{"type":42,"tag":105,"props":497,"children":498},{"style":177},[499],{"type":48,"value":318},{"type":42,"tag":105,"props":501,"children":502},{"style":118},[503],{"type":48,"value":504}," press",{"type":42,"tag":105,"props":506,"children":507},{"style":118},[508],{"type":48,"value":509}," Enter\n",{"type":42,"tag":105,"props":511,"children":512},{"class":107,"line":220},[513,517,521,525],{"type":42,"tag":105,"props":514,"children":515},{"style":177},[516],{"type":48,"value":318},{"type":42,"tag":105,"props":518,"children":519},{"style":305},[520],{"type":48,"value":387},{"type":42,"tag":105,"props":522,"children":523},{"style":177},[524],{"type":48,"value":318},{"type":42,"tag":105,"props":526,"children":527},{"style":118},[528],{"type":48,"value":529}," screenshot\n",{"type":42,"tag":51,"props":531,"children":532},{},[533],{"type":48,"value":534},"If the user prefers a global install, this is also valid:",{"type":42,"tag":94,"props":536,"children":538},{"className":96,"code":537,"language":98,"meta":99,"style":99},"npm install -g @playwright\u002Fcli@latest\nplaywright-cli --help\n",[539],{"type":42,"tag":57,"props":540,"children":541},{"__ignoreMap":99},[542,561],{"type":42,"tag":105,"props":543,"children":544},{"class":107,"line":108},[545,549,553,557],{"type":42,"tag":105,"props":546,"children":547},{"style":177},[548],{"type":48,"value":194},{"type":42,"tag":105,"props":550,"children":551},{"style":118},[552],{"type":48,"value":230},{"type":42,"tag":105,"props":554,"children":555},{"style":118},[556],{"type":48,"value":235},{"type":42,"tag":105,"props":558,"children":559},{"style":118},[560],{"type":48,"value":240},{"type":42,"tag":105,"props":562,"children":563},{"class":107,"line":173},[564,568],{"type":42,"tag":105,"props":565,"children":566},{"style":177},[567],{"type":48,"value":62},{"type":42,"tag":105,"props":569,"children":570},{"style":118},[571],{"type":48,"value":253},{"type":42,"tag":74,"props":573,"children":575},{"id":574},"core-workflow",[576],{"type":48,"value":577},"Core workflow",{"type":42,"tag":579,"props":580,"children":581},"ol",{},[582,588,593,598,603],{"type":42,"tag":583,"props":584,"children":585},"li",{},[586],{"type":48,"value":587},"Open the page.",{"type":42,"tag":583,"props":589,"children":590},{},[591],{"type":48,"value":592},"Snapshot to get stable element refs.",{"type":42,"tag":583,"props":594,"children":595},{},[596],{"type":48,"value":597},"Interact using refs from the latest snapshot.",{"type":42,"tag":583,"props":599,"children":600},{},[601],{"type":48,"value":602},"Re-snapshot after navigation or significant DOM changes.",{"type":42,"tag":583,"props":604,"children":605},{},[606],{"type":48,"value":607},"Capture artifacts (screenshot, pdf, traces) when useful.",{"type":42,"tag":51,"props":609,"children":610},{},[611],{"type":48,"value":612},"Minimal loop:",{"type":42,"tag":94,"props":614,"children":616},{"className":96,"code":615,"language":98,"meta":99,"style":99},"\"$PWCLI\" open https:\u002F\u002Fexample.com\n\"$PWCLI\" snapshot\n\"$PWCLI\" click e3\n\"$PWCLI\" snapshot\n",[617],{"type":42,"tag":57,"props":618,"children":619},{"__ignoreMap":99},[620,644,663,687],{"type":42,"tag":105,"props":621,"children":622},{"class":107,"line":108},[623,627,631,635,639],{"type":42,"tag":105,"props":624,"children":625},{"style":177},[626],{"type":48,"value":318},{"type":42,"tag":105,"props":628,"children":629},{"style":305},[630],{"type":48,"value":387},{"type":42,"tag":105,"props":632,"children":633},{"style":177},[634],{"type":48,"value":318},{"type":42,"tag":105,"props":636,"children":637},{"style":118},[638],{"type":48,"value":396},{"type":42,"tag":105,"props":640,"children":641},{"style":118},[642],{"type":48,"value":643}," https:\u002F\u002Fexample.com\n",{"type":42,"tag":105,"props":645,"children":646},{"class":107,"line":173},[647,651,655,659],{"type":42,"tag":105,"props":648,"children":649},{"style":177},[650],{"type":48,"value":318},{"type":42,"tag":105,"props":652,"children":653},{"style":305},[654],{"type":48,"value":387},{"type":42,"tag":105,"props":656,"children":657},{"style":177},[658],{"type":48,"value":318},{"type":42,"tag":105,"props":660,"children":661},{"style":118},[662],{"type":48,"value":426},{"type":42,"tag":105,"props":664,"children":665},{"class":107,"line":188},[666,670,674,678,682],{"type":42,"tag":105,"props":667,"children":668},{"style":177},[669],{"type":48,"value":318},{"type":42,"tag":105,"props":671,"children":672},{"style":305},[673],{"type":48,"value":387},{"type":42,"tag":105,"props":675,"children":676},{"style":177},[677],{"type":48,"value":318},{"type":42,"tag":105,"props":679,"children":680},{"style":118},[681],{"type":48,"value":446},{"type":42,"tag":105,"props":683,"children":684},{"style":118},[685],{"type":48,"value":686}," e3\n",{"type":42,"tag":105,"props":688,"children":689},{"class":107,"line":201},[690,694,698,702],{"type":42,"tag":105,"props":691,"children":692},{"style":177},[693],{"type":48,"value":318},{"type":42,"tag":105,"props":695,"children":696},{"style":305},[697],{"type":48,"value":387},{"type":42,"tag":105,"props":699,"children":700},{"style":177},[701],{"type":48,"value":318},{"type":42,"tag":105,"props":703,"children":704},{"style":118},[705],{"type":48,"value":426},{"type":42,"tag":74,"props":707,"children":709},{"id":708},"when-to-snapshot-again",[710],{"type":48,"value":711},"When to snapshot again",{"type":42,"tag":51,"props":713,"children":714},{},[715],{"type":48,"value":716},"Snapshot again after:",{"type":42,"tag":718,"props":719,"children":720},"ul",{},[721,726,731,736],{"type":42,"tag":583,"props":722,"children":723},{},[724],{"type":48,"value":725},"navigation",{"type":42,"tag":583,"props":727,"children":728},{},[729],{"type":48,"value":730},"clicking elements that change the UI substantially",{"type":42,"tag":583,"props":732,"children":733},{},[734],{"type":48,"value":735},"opening\u002Fclosing modals or menus",{"type":42,"tag":583,"props":737,"children":738},{},[739],{"type":48,"value":740},"tab switches",{"type":42,"tag":51,"props":742,"children":743},{},[744],{"type":48,"value":745},"Refs can go stale. When a command fails due to a missing ref, snapshot again.",{"type":42,"tag":74,"props":747,"children":749},{"id":748},"recommended-patterns",[750],{"type":48,"value":751},"Recommended patterns",{"type":42,"tag":753,"props":754,"children":756},"h3",{"id":755},"form-fill-and-submit",[757],{"type":48,"value":758},"Form fill and submit",{"type":42,"tag":94,"props":760,"children":762},{"className":96,"code":761,"language":98,"meta":99,"style":99},"\"$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",[763],{"type":42,"tag":57,"props":764,"children":765},{"__ignoreMap":99},[766,790,809,847,884,907],{"type":42,"tag":105,"props":767,"children":768},{"class":107,"line":108},[769,773,777,781,785],{"type":42,"tag":105,"props":770,"children":771},{"style":177},[772],{"type":48,"value":318},{"type":42,"tag":105,"props":774,"children":775},{"style":305},[776],{"type":48,"value":387},{"type":42,"tag":105,"props":778,"children":779},{"style":177},[780],{"type":48,"value":318},{"type":42,"tag":105,"props":782,"children":783},{"style":118},[784],{"type":48,"value":396},{"type":42,"tag":105,"props":786,"children":787},{"style":118},[788],{"type":48,"value":789}," https:\u002F\u002Fexample.com\u002Fform\n",{"type":42,"tag":105,"props":791,"children":792},{"class":107,"line":173},[793,797,801,805],{"type":42,"tag":105,"props":794,"children":795},{"style":177},[796],{"type":48,"value":318},{"type":42,"tag":105,"props":798,"children":799},{"style":305},[800],{"type":48,"value":387},{"type":42,"tag":105,"props":802,"children":803},{"style":177},[804],{"type":48,"value":318},{"type":42,"tag":105,"props":806,"children":807},{"style":118},[808],{"type":48,"value":426},{"type":42,"tag":105,"props":810,"children":811},{"class":107,"line":188},[812,816,820,824,829,834,838,843],{"type":42,"tag":105,"props":813,"children":814},{"style":177},[815],{"type":48,"value":318},{"type":42,"tag":105,"props":817,"children":818},{"style":305},[819],{"type":48,"value":387},{"type":42,"tag":105,"props":821,"children":822},{"style":177},[823],{"type":48,"value":318},{"type":42,"tag":105,"props":825,"children":826},{"style":118},[827],{"type":48,"value":828}," fill",{"type":42,"tag":105,"props":830,"children":831},{"style":118},[832],{"type":48,"value":833}," e1",{"type":42,"tag":105,"props":835,"children":836},{"style":129},[837],{"type":48,"value":476},{"type":42,"tag":105,"props":839,"children":840},{"style":118},[841],{"type":48,"value":842},"user@example.com",{"type":42,"tag":105,"props":844,"children":845},{"style":129},[846],{"type":48,"value":328},{"type":42,"tag":105,"props":848,"children":849},{"class":107,"line":201},[850,854,858,862,866,871,875,880],{"type":42,"tag":105,"props":851,"children":852},{"style":177},[853],{"type":48,"value":318},{"type":42,"tag":105,"props":855,"children":856},{"style":305},[857],{"type":48,"value":387},{"type":42,"tag":105,"props":859,"children":860},{"style":177},[861],{"type":48,"value":318},{"type":42,"tag":105,"props":863,"children":864},{"style":118},[865],{"type":48,"value":828},{"type":42,"tag":105,"props":867,"children":868},{"style":118},[869],{"type":48,"value":870}," e2",{"type":42,"tag":105,"props":872,"children":873},{"style":129},[874],{"type":48,"value":476},{"type":42,"tag":105,"props":876,"children":877},{"style":118},[878],{"type":48,"value":879},"password123",{"type":42,"tag":105,"props":881,"children":882},{"style":129},[883],{"type":48,"value":328},{"type":42,"tag":105,"props":885,"children":886},{"class":107,"line":211},[887,891,895,899,903],{"type":42,"tag":105,"props":888,"children":889},{"style":177},[890],{"type":48,"value":318},{"type":42,"tag":105,"props":892,"children":893},{"style":305},[894],{"type":48,"value":387},{"type":42,"tag":105,"props":896,"children":897},{"style":177},[898],{"type":48,"value":318},{"type":42,"tag":105,"props":900,"children":901},{"style":118},[902],{"type":48,"value":446},{"type":42,"tag":105,"props":904,"children":905},{"style":118},[906],{"type":48,"value":686},{"type":42,"tag":105,"props":908,"children":909},{"class":107,"line":220},[910,914,918,922],{"type":42,"tag":105,"props":911,"children":912},{"style":177},[913],{"type":48,"value":318},{"type":42,"tag":105,"props":915,"children":916},{"style":305},[917],{"type":48,"value":387},{"type":42,"tag":105,"props":919,"children":920},{"style":177},[921],{"type":48,"value":318},{"type":42,"tag":105,"props":923,"children":924},{"style":118},[925],{"type":48,"value":426},{"type":42,"tag":753,"props":927,"children":929},{"id":928},"debug-a-ui-flow-with-traces",[930],{"type":48,"value":931},"Debug a UI flow with traces",{"type":42,"tag":94,"props":933,"children":935},{"className":96,"code":934,"language":98,"meta":99,"style":99},"\"$PWCLI\" open https:\u002F\u002Fexample.com --headed\n\"$PWCLI\" tracing-start\n# ...interactions...\n\"$PWCLI\" tracing-stop\n",[936],{"type":42,"tag":57,"props":937,"children":938},{"__ignoreMap":99},[939,967,987,995],{"type":42,"tag":105,"props":940,"children":941},{"class":107,"line":108},[942,946,950,954,958,963],{"type":42,"tag":105,"props":943,"children":944},{"style":177},[945],{"type":48,"value":318},{"type":42,"tag":105,"props":947,"children":948},{"style":305},[949],{"type":48,"value":387},{"type":42,"tag":105,"props":951,"children":952},{"style":177},[953],{"type":48,"value":318},{"type":42,"tag":105,"props":955,"children":956},{"style":118},[957],{"type":48,"value":396},{"type":42,"tag":105,"props":959,"children":960},{"style":118},[961],{"type":48,"value":962}," https:\u002F\u002Fexample.com",{"type":42,"tag":105,"props":964,"children":965},{"style":118},[966],{"type":48,"value":406},{"type":42,"tag":105,"props":968,"children":969},{"class":107,"line":173},[970,974,978,982],{"type":42,"tag":105,"props":971,"children":972},{"style":177},[973],{"type":48,"value":318},{"type":42,"tag":105,"props":975,"children":976},{"style":305},[977],{"type":48,"value":387},{"type":42,"tag":105,"props":979,"children":980},{"style":177},[981],{"type":48,"value":318},{"type":42,"tag":105,"props":983,"children":984},{"style":118},[985],{"type":48,"value":986}," tracing-start\n",{"type":42,"tag":105,"props":988,"children":989},{"class":107,"line":188},[990],{"type":42,"tag":105,"props":991,"children":992},{"style":167},[993],{"type":48,"value":994},"# ...interactions...\n",{"type":42,"tag":105,"props":996,"children":997},{"class":107,"line":201},[998,1002,1006,1010],{"type":42,"tag":105,"props":999,"children":1000},{"style":177},[1001],{"type":48,"value":318},{"type":42,"tag":105,"props":1003,"children":1004},{"style":305},[1005],{"type":48,"value":387},{"type":42,"tag":105,"props":1007,"children":1008},{"style":177},[1009],{"type":48,"value":318},{"type":42,"tag":105,"props":1011,"children":1012},{"style":118},[1013],{"type":48,"value":1014}," tracing-stop\n",{"type":42,"tag":753,"props":1016,"children":1018},{"id":1017},"multi-tab-work",[1019],{"type":48,"value":1020},"Multi-tab work",{"type":42,"tag":94,"props":1022,"children":1024},{"className":96,"code":1023,"language":98,"meta":99,"style":99},"\"$PWCLI\" tab-new https:\u002F\u002Fexample.com\n\"$PWCLI\" tab-list\n\"$PWCLI\" tab-select 0\n\"$PWCLI\" snapshot\n",[1025],{"type":42,"tag":57,"props":1026,"children":1027},{"__ignoreMap":99},[1028,1052,1072,1098],{"type":42,"tag":105,"props":1029,"children":1030},{"class":107,"line":108},[1031,1035,1039,1043,1048],{"type":42,"tag":105,"props":1032,"children":1033},{"style":177},[1034],{"type":48,"value":318},{"type":42,"tag":105,"props":1036,"children":1037},{"style":305},[1038],{"type":48,"value":387},{"type":42,"tag":105,"props":1040,"children":1041},{"style":177},[1042],{"type":48,"value":318},{"type":42,"tag":105,"props":1044,"children":1045},{"style":118},[1046],{"type":48,"value":1047}," tab-new",{"type":42,"tag":105,"props":1049,"children":1050},{"style":118},[1051],{"type":48,"value":643},{"type":42,"tag":105,"props":1053,"children":1054},{"class":107,"line":173},[1055,1059,1063,1067],{"type":42,"tag":105,"props":1056,"children":1057},{"style":177},[1058],{"type":48,"value":318},{"type":42,"tag":105,"props":1060,"children":1061},{"style":305},[1062],{"type":48,"value":387},{"type":42,"tag":105,"props":1064,"children":1065},{"style":177},[1066],{"type":48,"value":318},{"type":42,"tag":105,"props":1068,"children":1069},{"style":118},[1070],{"type":48,"value":1071}," tab-list\n",{"type":42,"tag":105,"props":1073,"children":1074},{"class":107,"line":188},[1075,1079,1083,1087,1092],{"type":42,"tag":105,"props":1076,"children":1077},{"style":177},[1078],{"type":48,"value":318},{"type":42,"tag":105,"props":1080,"children":1081},{"style":305},[1082],{"type":48,"value":387},{"type":42,"tag":105,"props":1084,"children":1085},{"style":177},[1086],{"type":48,"value":318},{"type":42,"tag":105,"props":1088,"children":1089},{"style":118},[1090],{"type":48,"value":1091}," tab-select",{"type":42,"tag":105,"props":1093,"children":1095},{"style":1094},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1096],{"type":48,"value":1097}," 0\n",{"type":42,"tag":105,"props":1099,"children":1100},{"class":107,"line":201},[1101,1105,1109,1113],{"type":42,"tag":105,"props":1102,"children":1103},{"style":177},[1104],{"type":48,"value":318},{"type":42,"tag":105,"props":1106,"children":1107},{"style":305},[1108],{"type":48,"value":387},{"type":42,"tag":105,"props":1110,"children":1111},{"style":177},[1112],{"type":48,"value":318},{"type":42,"tag":105,"props":1114,"children":1115},{"style":118},[1116],{"type":48,"value":426},{"type":42,"tag":74,"props":1118,"children":1120},{"id":1119},"wrapper-script",[1121],{"type":48,"value":1122},"Wrapper script",{"type":42,"tag":51,"props":1124,"children":1125},{},[1126,1128,1134],{"type":48,"value":1127},"The wrapper script uses ",{"type":42,"tag":57,"props":1129,"children":1131},{"className":1130},[],[1132],{"type":48,"value":1133},"npx --package @playwright\u002Fcli playwright-cli",{"type":48,"value":1135}," so the CLI can run without a global install:",{"type":42,"tag":94,"props":1137,"children":1139},{"className":96,"code":1138,"language":98,"meta":99,"style":99},"\"$PWCLI\" --help\n",[1140],{"type":42,"tag":57,"props":1141,"children":1142},{"__ignoreMap":99},[1143],{"type":42,"tag":105,"props":1144,"children":1145},{"class":107,"line":108},[1146,1150,1154,1158],{"type":42,"tag":105,"props":1147,"children":1148},{"style":177},[1149],{"type":48,"value":318},{"type":42,"tag":105,"props":1151,"children":1152},{"style":305},[1153],{"type":48,"value":387},{"type":42,"tag":105,"props":1155,"children":1156},{"style":177},[1157],{"type":48,"value":318},{"type":42,"tag":105,"props":1159,"children":1160},{"style":118},[1161],{"type":48,"value":253},{"type":42,"tag":51,"props":1163,"children":1164},{},[1165],{"type":48,"value":1166},"Prefer the wrapper unless the repository already standardizes on a global install.",{"type":42,"tag":74,"props":1168,"children":1170},{"id":1169},"references",[1171],{"type":48,"value":1172},"References",{"type":42,"tag":51,"props":1174,"children":1175},{},[1176],{"type":48,"value":1177},"Open only what you need:",{"type":42,"tag":718,"props":1179,"children":1180},{},[1181,1192],{"type":42,"tag":583,"props":1182,"children":1183},{},[1184,1186],{"type":48,"value":1185},"CLI command reference: ",{"type":42,"tag":57,"props":1187,"children":1189},{"className":1188},[],[1190],{"type":48,"value":1191},"references\u002Fcli.md",{"type":42,"tag":583,"props":1193,"children":1194},{},[1195,1197],{"type":48,"value":1196},"Practical workflows and troubleshooting: ",{"type":42,"tag":57,"props":1198,"children":1200},{"className":1199},[],[1201],{"type":48,"value":1202},"references\u002Fworkflows.md",{"type":42,"tag":74,"props":1204,"children":1206},{"id":1205},"guardrails",[1207],{"type":48,"value":1208},"Guardrails",{"type":42,"tag":718,"props":1210,"children":1211},{},[1212,1225,1230,1251,1270,1283,1296],{"type":42,"tag":583,"props":1213,"children":1214},{},[1215,1217,1223],{"type":48,"value":1216},"Always snapshot before referencing element ids like ",{"type":42,"tag":57,"props":1218,"children":1220},{"className":1219},[],[1221],{"type":48,"value":1222},"e12",{"type":48,"value":1224},".",{"type":42,"tag":583,"props":1226,"children":1227},{},[1228],{"type":48,"value":1229},"Re-snapshot when refs seem stale.",{"type":42,"tag":583,"props":1231,"children":1232},{},[1233,1235,1241,1243,1249],{"type":48,"value":1234},"Prefer explicit commands over ",{"type":42,"tag":57,"props":1236,"children":1238},{"className":1237},[],[1239],{"type":48,"value":1240},"eval",{"type":48,"value":1242}," and ",{"type":42,"tag":57,"props":1244,"children":1246},{"className":1245},[],[1247],{"type":48,"value":1248},"run-code",{"type":48,"value":1250}," unless needed.",{"type":42,"tag":583,"props":1252,"children":1253},{},[1254,1256,1262,1264,1269],{"type":48,"value":1255},"When you do not have a fresh snapshot, use placeholder refs like ",{"type":42,"tag":57,"props":1257,"children":1259},{"className":1258},[],[1260],{"type":48,"value":1261},"eX",{"type":48,"value":1263}," and say why; do not bypass refs with ",{"type":42,"tag":57,"props":1265,"children":1267},{"className":1266},[],[1268],{"type":48,"value":1248},{"type":48,"value":1224},{"type":42,"tag":583,"props":1271,"children":1272},{},[1273,1275,1281],{"type":48,"value":1274},"Use ",{"type":42,"tag":57,"props":1276,"children":1278},{"className":1277},[],[1279],{"type":48,"value":1280},"--headed",{"type":48,"value":1282}," when a visual check will help.",{"type":42,"tag":583,"props":1284,"children":1285},{},[1286,1288,1294],{"type":48,"value":1287},"When capturing artifacts in this repo, use ",{"type":42,"tag":57,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":48,"value":1293},"output\u002Fplaywright\u002F",{"type":48,"value":1295}," and avoid introducing new top-level artifact folders.",{"type":42,"tag":583,"props":1297,"children":1298},{},[1299],{"type":48,"value":1300},"Default to CLI commands and workflows, not Playwright test specs.",{"type":42,"tag":1302,"props":1303,"children":1304},"style",{},[1305],{"type":48,"value":1306},"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":1308,"total":1467},[1309,1327,1340,1352,1364,1378,1390,1401,1413,1429,1440,1452],{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1313,"tags":1314,"stars":1324,"repoUrl":1325,"updatedAt":1326},"acquiring-skills","discover and install agent skills","Discover and install skills from Hermes, ClawHub, GitHub, and other registries. Load this skill whenever a user asks for a capability you don't already have — image generation, social media, email, calendar, finance, DevOps, search, browser automation, etc.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1315,1318,1321],{"name":1316,"slug":1317,"type":15},"Agents","agents",{"name":1319,"slug":1320,"type":15},"Automation","automation",{"name":1322,"slug":1323,"type":15},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":1328,"name":1329,"fn":1330,"description":1331,"org":1332,"tags":1333,"stars":1324,"repoUrl":1325,"updatedAt":1339},"context-doctor","Context Doctor","repair system prompt and memory degradation","Identify and repair degradation in system prompt, external memory, and skills preventing you from following instructions or remembering information as well as you should.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1334,1335,1338],{"name":1316,"slug":1317,"type":15},{"name":1336,"slug":1337,"type":15},"AI Context","ai-context",{"name":20,"slug":21,"type":15},"2026-07-13T06:22:50.151002",{"slug":1341,"name":1341,"fn":1342,"description":1343,"org":1344,"tags":1345,"stars":1324,"repoUrl":1325,"updatedAt":1351},"converting-mcps-to-skills","connect MCP servers to create skills","Connect to MCP (Model Context Protocol) servers and create skills for repeated use. Load when a user wants to use an MCP server, connect to external tools via MCP, or when they mention MCP, model context protocol, or specific MCP servers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1346,1347,1348],{"name":1316,"slug":1317,"type":15},{"name":1319,"slug":1320,"type":15},{"name":1349,"slug":1350,"type":15},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":1353,"name":1353,"fn":1354,"description":1355,"org":1356,"tags":1357,"stars":1324,"repoUrl":1325,"updatedAt":1363},"creating-mods","create and edit Letta Code mods","Creates and edits trusted local Letta Code mods, including tools, slash commands, local-only model providers, lifecycle\u002Fturn events, scoped conversation helpers, panels, and capability-gated behavior. Use when asked to make a mod, add an agent-callable tool, add a slash command, add a local provider\u002Fmodel adapter, transform turns, react to app events, or add lightweight mod UI outside the dedicated \u002Fstatusline flow.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1358,1359,1360],{"name":1316,"slug":1317,"type":15},{"name":1319,"slug":1320,"type":15},{"name":1361,"slug":1362,"type":15},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":1365,"name":1365,"fn":1366,"description":1367,"org":1368,"tags":1369,"stars":1324,"repoUrl":1325,"updatedAt":1377},"creating-skills","create and update agent skills","Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Letta Code's capabilities with specialized knowledge, workflows, or tool integrations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1370,1371,1374],{"name":1316,"slug":1317,"type":15},{"name":1372,"slug":1373,"type":15},"Documentation","documentation",{"name":1375,"slug":1376,"type":15},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":1379,"name":1379,"fn":1380,"description":1381,"org":1382,"tags":1383,"stars":1324,"repoUrl":1325,"updatedAt":1389},"customizing-commands","create and manage Letta slash commands","Creates, edits, and enables Letta Code mod-provided slash commands. Use when the user asks to add a custom \u002Fcommand, slash command, command shortcut, scoped conversation-backed command, or command-driven panel behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1384,1385,1386],{"name":1316,"slug":1317,"type":15},{"name":1319,"slug":1320,"type":15},{"name":1387,"slug":1388,"type":15},"CLI","cli","2026-07-13T06:23:18.266798",{"slug":1391,"name":1391,"fn":1392,"description":1393,"org":1394,"tags":1395,"stars":1324,"repoUrl":1325,"updatedAt":1400},"customizing-statusline","customize Letta Code statusline mods","Creates, edits, and migrates Letta Code statusline mods. Use when handling the \u002Fstatusline command or continuing work started by \u002Fstatusline.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1396,1397],{"name":1387,"slug":1388,"type":15},{"name":1398,"slug":1399,"type":15},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":1402,"name":1402,"fn":1403,"description":1404,"org":1405,"tags":1406,"stars":1324,"repoUrl":1325,"updatedAt":1412},"dispatching-coding-agents","dispatch stateless coding agents","Dispatch stateless coding agents (Claude Code or Codex) via Bash. Use when you're stuck, need a second opinion, or need parallel research on a hard problem. They have no memory — you must provide all context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1407,1408,1409],{"name":1316,"slug":1317,"type":15},{"name":1361,"slug":1362,"type":15},{"name":1410,"slug":1411,"type":15},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":1414,"name":1414,"fn":1415,"description":1416,"org":1417,"tags":1418,"stars":1324,"repoUrl":1325,"updatedAt":1428},"editing-letta-code-desktop-preferences","edit Letta Code Desktop preferences","Edits Letta Code Desktop (LCD) preferences by safely reading and updating ~\u002F.letta\u002Fdesktop_preferences.json. Use only when the user asks to change current Desktop\u002FLCD settings such as theme, default working directory, remote access preference, or remote environment name via the preferences JSON.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1419,1422,1425],{"name":1420,"slug":1421,"type":15},"Configuration","configuration",{"name":1423,"slug":1424,"type":15},"Desktop","desktop",{"name":1426,"slug":1427,"type":15},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":1430,"name":1430,"fn":1431,"description":1432,"org":1433,"tags":1434,"stars":1324,"repoUrl":1325,"updatedAt":1439},"finding-agents","locate and manage agents on server","Find other agents on the same server. Use when the user asks about other agents, wants to migrate memory from another agent, or needs to find an agent by name or tags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1435,1436],{"name":1316,"slug":1317,"type":15},{"name":1437,"slug":1438,"type":15},"Management","management","2026-07-16T06:02:17.297841",{"slug":1441,"name":1441,"fn":1442,"description":1443,"org":1444,"tags":1445,"stars":1324,"repoUrl":1325,"updatedAt":1451},"generating-mod-envs","generate Letta mod learning environments","Generates and reviews mod learning env JSON files for Letta Code local mods. Use when asked to teach, learn, or optimize a mod behavior; create, draft, validate, improve, or explain envs for `\u002Fmods learn --env`; or design evaluation scenarios, memory fixtures, requiredResultMarkers, requiredTraceMarkers, negative controls, and candidate diversity hints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1446,1447,1450],{"name":1316,"slug":1317,"type":15},{"name":1448,"slug":1449,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1420,"slug":1421,"type":15},"2026-07-13T06:23:08.838181",{"slug":1453,"name":1453,"fn":1454,"description":1455,"org":1456,"tags":1457,"stars":1324,"repoUrl":1325,"updatedAt":1466},"image-generation","generate images from text prompts","Generate images from text prompts (and optionally edit\u002Fremix input images). Use when the user asks to create, generate, draw, render, or edit an image, illustration, logo, icon, diagram, or photo.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1458,1461,1464],{"name":1459,"slug":1460,"type":15},"Creative","creative",{"name":1462,"slug":1463,"type":15},"Graphics","graphics",{"name":1465,"slug":1453,"type":15},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":1469,"total":1581},[1470,1484,1499,1518,1531,1552,1562],{"slug":1471,"name":1471,"fn":1472,"description":1473,"org":1474,"tags":1475,"stars":25,"repoUrl":26,"updatedAt":1483},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1476,1479,1480],{"name":1477,"slug":1478,"type":15},"Authentication","authentication",{"name":1387,"slug":1388,"type":15},{"name":1481,"slug":1482,"type":15},"Security","security","2026-07-13T06:24:39.504387",{"slug":1485,"name":1485,"fn":1486,"description":1487,"org":1488,"tags":1489,"stars":25,"repoUrl":26,"updatedAt":1498},"agent-slack","automate Slack messaging and workflows","Slack automation CLI — read\u002Fsend\u002Fsearch messages, browse threads and channels, manage channels, download attachments, look up users, and run workflows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1490,1491,1492,1495],{"name":1319,"slug":1320,"type":15},{"name":1387,"slug":1388,"type":15},{"name":1493,"slug":1494,"type":15},"Messaging","messaging",{"name":1496,"slug":1497,"type":15},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":1500,"name":1500,"fn":1501,"description":1502,"org":1503,"tags":1504,"stars":25,"repoUrl":26,"updatedAt":1517},"ai-news","fetch and summarize AI news","Fetch and summarize recent AI news from curated RSS feeds (Hugging Face, VentureBeat, The Verge, OpenAI, Anthropic, DeepMind, etc.) and YouTube channels (Yannic Kilcher, Two Minute Papers, AI Explained, etc.). Also fetches full transcripts for specific YouTube videos. Use when the user asks about recent AI news, what's happened in AI lately, summaries of AI research or product announcements, or wants a digest of what's going on in the AI space.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1505,1508,1511,1514],{"name":1506,"slug":1507,"type":15},"Communications","communications",{"name":1509,"slug":1510,"type":15},"LLM","llm",{"name":1512,"slug":1513,"type":15},"Research","research",{"name":1515,"slug":1516,"type":15},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":1519,"name":1519,"fn":1520,"description":1521,"org":1522,"tags":1523,"stars":25,"repoUrl":26,"updatedAt":1530},"creating-letta-code-channels","build and debug Letta Code channels","Builds and debugs Letta Code channels, including first-party channel adapters and dynamic user channel plugins under ~\u002F.letta\u002Fchannels. Use when adding Telegram, WhatsApp, Bluesky, Slack, Discord, or custom channel support; testing channel routing, pairing, MessageChannel, runtime dependencies, or channel plugin manifests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1524,1525,1528,1529],{"name":1316,"slug":1317,"type":15},{"name":1526,"slug":1527,"type":15},"API Development","api-development",{"name":1493,"slug":1494,"type":15},{"name":1496,"slug":1497,"type":15},"2026-07-13T06:25:55.843495",{"slug":1532,"name":1532,"fn":1533,"description":1534,"org":1535,"tags":1536,"stars":25,"repoUrl":26,"updatedAt":1551},"datadog","query Datadog observability data","Query Datadog observability data (logs, metrics, monitors, dashboards, hosts) via direct API. Use when investigating production issues, checking monitors, searching logs, or accessing Datadog data.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1537,1539,1542,1545,1548],{"name":1538,"slug":1532,"type":15},"Datadog",{"name":1540,"slug":1541,"type":15},"Logs","logs",{"name":1543,"slug":1544,"type":15},"Metrics","metrics",{"name":1546,"slug":1547,"type":15},"Monitoring","monitoring",{"name":1549,"slug":1550,"type":15},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":1553,"name":1553,"fn":1554,"description":1555,"org":1556,"tags":1557,"stars":25,"repoUrl":26,"updatedAt":1561},"discord","automate Discord server and channel tasks","Discord automation CLI — send\u002Fread\u002Fsearch messages, manage channels and servers, react, create threads, pin messages, and look up users.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1558,1559,1560],{"name":1319,"slug":1320,"type":15},{"name":1387,"slug":1388,"type":15},{"name":1493,"slug":1494,"type":15},"2026-07-13T06:24:26.62387",{"slug":1563,"name":1563,"fn":1564,"description":1565,"org":1566,"tags":1567,"stars":25,"repoUrl":26,"updatedAt":1580},"doc","create and edit Word documents","Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts\u002Frender_docx.py` for visual checks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1568,1571,1574,1577],{"name":1569,"slug":1570,"type":15},"Documents","documents",{"name":1572,"slug":1573,"type":15},"DOCX","docx",{"name":1575,"slug":1576,"type":15},"Office","office",{"name":1578,"slug":1579,"type":15},"Word","word","2026-07-13T06:23:44.299568",45]