[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-roo-code-simplify":3,"mdc--abkr5s-key":28,"related-repo-roo-code-simplify":743,"related-org-roo-code-simplify":849},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":17,"repoUrl":18,"updatedAt":19,"license":20,"forks":21,"topics":22,"repo":23,"sourceUrl":26,"mdContent":27},"simplify","simplify code while preserving behavior","Behavior-preserving simplification workflow. Use when you need to simplify recently changed code safely without changing behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"roo-code","Roo Code","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Froo-code.png","RooCodeInc",[13],{"name":14,"slug":15,"type":16},"Code Analysis","code-analysis","tag",5,"https:\u002F\u002Fgithub.com\u002FRooCodeInc\u002FRoomote","2026-07-16T06:00:27.790071",null,0,[],{"repoUrl":18,"stars":17,"forks":21,"topics":24,"description":25},[],"Your own cloud coding agent. Everything you want from an AI engineering teammate, without building from scratch or paying for a black box.","https:\u002F\u002Fgithub.com\u002FRooCodeInc\u002FRoomote\u002Ftree\u002FHEAD\u002Fpackages\u002Fcloud-agents\u002Fsrc\u002Fserver\u002Fworkflows\u002Fskills\u002Fstandard\u002Fsimplify","---\nname: simplify\ndescription: Behavior-preserving simplification workflow. Use when you need to simplify recently changed code safely without changing behavior.\n---\n\n\u003Crole>\nYou are a pragmatic refactoring agent focused on simplifying recently changed code while preserving behavior.\n\u003C\u002Frole>\n\n\u003Cworkflow>\n\u003Cstep number=\"1\">\n\u003Cname>Identify recently changed files\u003C\u002Fname>\n\u003Cinstructions>\nIdentify the files to simplify by combining branch-level and workspace-level changes.\n\nRun:\n\n```bash\n(git diff --name-only $(git merge-base HEAD origin\u002FHEAD 2>\u002Fdev\u002Fnull || echo \"HEAD~1\") HEAD 2>\u002Fdev\u002Fnull; git diff --name-only; git diff --cached --name-only; git ls-files --others --exclude-standard) | awk 'NF' | sort -u\n```\n\nIf no files are returned, tell the user there is nothing to simplify and conclude with a no-op result.\n\u003C\u002Finstructions>\n\u003C\u002Fstep>\n\n\u003Cstep number=\"2\">\n\u003Cname>Load local guidance before editing\u003C\u002Fname>\n\u003Cinstructions>\nLook for local guidance files and follow them while simplifying:\n- `CLAUDE.md`\n- `AGENTS.md`\n\nUse this command to discover guidance files:\n\n```bash\nfind . -maxdepth 5 -type f \\( -name 'CLAUDE.md' -o -name 'AGENTS.md' \\) | sed 's|^.\u002F||' | sort -u\n```\n\nRead the relevant guidance files with `read_file` before making edits.\n\u003C\u002Finstructions>\n\u003C\u002Fstep>\n\n\u003Cstep number=\"3\">\n\u003Cname>Understand current behavior and context\u003C\u002Fname>\n\u003Cinstructions>\nRead each changed file in full with `read_file`. Read related files when needed to preserve behavior (types, helpers, callers, tests).\n\nAlso inspect the relevant diff context:\n\n```bash\ngit diff $(git merge-base HEAD origin\u002FHEAD 2>\u002Fdev\u002Fnull || echo \"HEAD~1\") HEAD && git diff && git diff --cached\n```\n\nDo not make speculative assumptions about intent. Infer intent from code and adjacent patterns.\n\u003C\u002Finstructions>\n\u003C\u002Fstep>\n\n\u003Cstep number=\"4\">\n\u003Cname>Find safe simplification opportunities\u003C\u002Fname>\n\u003Cinstructions>\nIdentify concrete, local simplifications that keep behavior intact. Prioritize:\n\n1. Remove duplication and improve reuse where the abstraction is obvious.\n2. Simplify conditionals\u002Fcontrol flow without changing semantics.\n3. Improve readability\u002Fmaintainability by reducing incidental complexity.\n4. Remove redundant code introduced in recent changes.\n5. Apply straightforward efficiency improvements that are clearly safe.\n6. Align with existing codebase conventions and neighboring patterns.\n\nAvoid:\n\n- broad rewrites\n- speculative architecture changes\n- changes requiring uncertain product decisions\n\nIf no safe simplifications are found, report that clearly and conclude without edits.\n\u003C\u002Finstructions>\n\u003C\u002Fstep>\n\n\u003Cstep number=\"5\">\n\u003Cname>Implement the simplifications\u003C\u002Fname>\n\u003Cinstructions>\nApply the selected simplifications directly in the changed files (and directly related files when required for correctness).\n\nFor each edit:\n\n1. Preserve external behavior and existing contracts.\n2. Keep changes local and easy to review.\n3. Prefer existing helpers\u002Futilities over new abstractions.\n4. Re-read the edited file to confirm clarity and consistency.\n   \u003C\u002Finstructions>\n   \u003C\u002Fstep>\n\n\u003Cstep number=\"6\">\n\u003Cname>Run proportionate validation\u003C\u002Fname>\n\u003Cinstructions>\nRun the most relevant checks for the affected scope (tests, type checks, lint as appropriate). Prefer targeted commands over broad suites.\n\nIf a check fails, fix the issue and rerun relevant validation.\nIf validation cannot run, state exactly what was skipped and why.\n\u003C\u002Finstructions>\n\u003C\u002Fstep>\n\n\u003Cstep number=\"7\">\n\u003Cname>Report concise simplification summary\u003C\u002Fname>\n\u003Cinstructions>\nProvide a concise summary that includes:\n- files simplified\n- what was simplified and why it is safer\u002Fclearer\n- validation run and results\n- anything intentionally left unchanged due to risk\u002Fscope\n\u003C\u002Finstructions>\n\u003C\u002Fstep>\n\u003C\u002Fworkflow>\n",{"data":29,"body":30},{"name":4,"description":6},{"type":31,"children":32},"root",[33,41,737],{"type":34,"tag":35,"props":36,"children":37},"element","role",{},[38],{"type":39,"value":40},"text","\nYou are a pragmatic refactoring agent focused on simplifying recently changed code while preserving behavior.\n",{"type":34,"tag":42,"props":43,"children":44},"workflow",{},[45],{"type":34,"tag":46,"props":47,"children":49},"step",{"number":48},"1",[50,56],{"type":34,"tag":51,"props":52,"children":53},"name",{},[54],{"type":39,"value":55},"Identify recently changed files",{"type":34,"tag":57,"props":58,"children":59},"instructions",{},[60,62,68,291,296],{"type":39,"value":61},"\nIdentify the files to simplify by combining branch-level and workspace-level changes.\n",{"type":34,"tag":63,"props":64,"children":65},"p",{},[66],{"type":39,"value":67},"Run:",{"type":34,"tag":69,"props":70,"children":75},"pre",{"className":71,"code":72,"language":73,"meta":74,"style":74},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","(git diff --name-only $(git merge-base HEAD origin\u002FHEAD 2>\u002Fdev\u002Fnull || echo \"HEAD~1\") HEAD 2>\u002Fdev\u002Fnull; git diff --name-only; git diff --cached --name-only; git ls-files --others --exclude-standard) | awk 'NF' | sort -u\n","bash","",[76],{"type":34,"tag":77,"props":78,"children":79},"code",{"__ignoreMap":74},[80],{"type":34,"tag":81,"props":82,"children":85},"span",{"class":83,"line":84},"line",1,[86,92,98,104,109,114,118,123,128,133,138,143,148,154,159,164,169,174,178,182,186,191,196,200,204,208,212,216,221,225,229,233,238,243,248,252,257,262,267,272,277,281,286],{"type":34,"tag":81,"props":87,"children":89},{"style":88},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[90],{"type":39,"value":91},"(",{"type":34,"tag":81,"props":93,"children":95},{"style":94},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[96],{"type":39,"value":97},"git",{"type":34,"tag":81,"props":99,"children":101},{"style":100},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[102],{"type":39,"value":103}," diff",{"type":34,"tag":81,"props":105,"children":106},{"style":100},[107],{"type":39,"value":108}," --name-only",{"type":34,"tag":81,"props":110,"children":111},{"style":88},[112],{"type":39,"value":113}," $(",{"type":34,"tag":81,"props":115,"children":116},{"style":94},[117],{"type":39,"value":97},{"type":34,"tag":81,"props":119,"children":120},{"style":100},[121],{"type":39,"value":122}," merge-base",{"type":34,"tag":81,"props":124,"children":125},{"style":100},[126],{"type":39,"value":127}," HEAD",{"type":34,"tag":81,"props":129,"children":130},{"style":100},[131],{"type":39,"value":132}," origin\u002FHEAD",{"type":34,"tag":81,"props":134,"children":135},{"style":88},[136],{"type":39,"value":137}," 2>",{"type":34,"tag":81,"props":139,"children":140},{"style":100},[141],{"type":39,"value":142},"\u002Fdev\u002Fnull",{"type":34,"tag":81,"props":144,"children":145},{"style":88},[146],{"type":39,"value":147}," ||",{"type":34,"tag":81,"props":149,"children":151},{"style":150},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[152],{"type":39,"value":153}," echo",{"type":34,"tag":81,"props":155,"children":156},{"style":88},[157],{"type":39,"value":158}," \"",{"type":34,"tag":81,"props":160,"children":161},{"style":100},[162],{"type":39,"value":163},"HEAD~1",{"type":34,"tag":81,"props":165,"children":166},{"style":88},[167],{"type":39,"value":168},"\"",{"type":34,"tag":81,"props":170,"children":171},{"style":88},[172],{"type":39,"value":173},")",{"type":34,"tag":81,"props":175,"children":176},{"style":100},[177],{"type":39,"value":127},{"type":34,"tag":81,"props":179,"children":180},{"style":88},[181],{"type":39,"value":137},{"type":34,"tag":81,"props":183,"children":184},{"style":100},[185],{"type":39,"value":142},{"type":34,"tag":81,"props":187,"children":188},{"style":88},[189],{"type":39,"value":190},";",{"type":34,"tag":81,"props":192,"children":193},{"style":94},[194],{"type":39,"value":195}," git",{"type":34,"tag":81,"props":197,"children":198},{"style":100},[199],{"type":39,"value":103},{"type":34,"tag":81,"props":201,"children":202},{"style":100},[203],{"type":39,"value":108},{"type":34,"tag":81,"props":205,"children":206},{"style":88},[207],{"type":39,"value":190},{"type":34,"tag":81,"props":209,"children":210},{"style":94},[211],{"type":39,"value":195},{"type":34,"tag":81,"props":213,"children":214},{"style":100},[215],{"type":39,"value":103},{"type":34,"tag":81,"props":217,"children":218},{"style":100},[219],{"type":39,"value":220}," --cached",{"type":34,"tag":81,"props":222,"children":223},{"style":100},[224],{"type":39,"value":108},{"type":34,"tag":81,"props":226,"children":227},{"style":88},[228],{"type":39,"value":190},{"type":34,"tag":81,"props":230,"children":231},{"style":94},[232],{"type":39,"value":195},{"type":34,"tag":81,"props":234,"children":235},{"style":100},[236],{"type":39,"value":237}," ls-files",{"type":34,"tag":81,"props":239,"children":240},{"style":100},[241],{"type":39,"value":242}," --others",{"type":34,"tag":81,"props":244,"children":245},{"style":100},[246],{"type":39,"value":247}," --exclude-standard",{"type":34,"tag":81,"props":249,"children":250},{"style":88},[251],{"type":39,"value":173},{"type":34,"tag":81,"props":253,"children":254},{"style":88},[255],{"type":39,"value":256}," |",{"type":34,"tag":81,"props":258,"children":259},{"style":94},[260],{"type":39,"value":261}," awk",{"type":34,"tag":81,"props":263,"children":264},{"style":88},[265],{"type":39,"value":266}," '",{"type":34,"tag":81,"props":268,"children":269},{"style":100},[270],{"type":39,"value":271},"NF",{"type":34,"tag":81,"props":273,"children":274},{"style":88},[275],{"type":39,"value":276},"'",{"type":34,"tag":81,"props":278,"children":279},{"style":88},[280],{"type":39,"value":256},{"type":34,"tag":81,"props":282,"children":283},{"style":94},[284],{"type":39,"value":285}," sort",{"type":34,"tag":81,"props":287,"children":288},{"style":100},[289],{"type":39,"value":290}," -u\n",{"type":34,"tag":63,"props":292,"children":293},{},[294],{"type":39,"value":295},"If no files are returned, tell the user there is nothing to simplify and conclude with a no-op result.\n\n",{"type":34,"tag":46,"props":297,"children":299},{"number":298},"2",[300,305],{"type":34,"tag":51,"props":301,"children":302},{},[303],{"type":39,"value":304},"Load local guidance before editing",{"type":34,"tag":57,"props":306,"children":307},{},[308,310,315,443,456],{"type":39,"value":309},"\nLook for local guidance files and follow them while simplifying:\n- `CLAUDE.md`\n- `AGENTS.md`\n",{"type":34,"tag":63,"props":311,"children":312},{},[313],{"type":39,"value":314},"Use this command to discover guidance files:",{"type":34,"tag":69,"props":316,"children":318},{"className":71,"code":317,"language":73,"meta":74,"style":74},"find . -maxdepth 5 -type f \\( -name 'CLAUDE.md' -o -name 'AGENTS.md' \\) | sed 's|^.\u002F||' | sort -u\n",[319],{"type":34,"tag":77,"props":320,"children":321},{"__ignoreMap":74},[322],{"type":34,"tag":81,"props":323,"children":324},{"class":83,"line":84},[325,330,335,340,346,351,356,362,367,371,376,380,385,390,394,399,403,408,413,418,422,427,431,435,439],{"type":34,"tag":81,"props":326,"children":327},{"style":94},[328],{"type":39,"value":329},"find",{"type":34,"tag":81,"props":331,"children":332},{"style":100},[333],{"type":39,"value":334}," .",{"type":34,"tag":81,"props":336,"children":337},{"style":100},[338],{"type":39,"value":339}," -maxdepth",{"type":34,"tag":81,"props":341,"children":343},{"style":342},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[344],{"type":39,"value":345}," 5",{"type":34,"tag":81,"props":347,"children":348},{"style":100},[349],{"type":39,"value":350}," -type",{"type":34,"tag":81,"props":352,"children":353},{"style":100},[354],{"type":39,"value":355}," f",{"type":34,"tag":81,"props":357,"children":359},{"style":358},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[360],{"type":39,"value":361}," \\( ",{"type":34,"tag":81,"props":363,"children":364},{"style":100},[365],{"type":39,"value":366},"-name",{"type":34,"tag":81,"props":368,"children":369},{"style":88},[370],{"type":39,"value":266},{"type":34,"tag":81,"props":372,"children":373},{"style":100},[374],{"type":39,"value":375},"CLAUDE.md",{"type":34,"tag":81,"props":377,"children":378},{"style":88},[379],{"type":39,"value":276},{"type":34,"tag":81,"props":381,"children":382},{"style":100},[383],{"type":39,"value":384}," -o",{"type":34,"tag":81,"props":386,"children":387},{"style":100},[388],{"type":39,"value":389}," -name",{"type":34,"tag":81,"props":391,"children":392},{"style":88},[393],{"type":39,"value":266},{"type":34,"tag":81,"props":395,"children":396},{"style":100},[397],{"type":39,"value":398},"AGENTS.md",{"type":34,"tag":81,"props":400,"children":401},{"style":88},[402],{"type":39,"value":276},{"type":34,"tag":81,"props":404,"children":405},{"style":358},[406],{"type":39,"value":407}," \\) ",{"type":34,"tag":81,"props":409,"children":410},{"style":88},[411],{"type":39,"value":412},"|",{"type":34,"tag":81,"props":414,"children":415},{"style":94},[416],{"type":39,"value":417}," sed",{"type":34,"tag":81,"props":419,"children":420},{"style":88},[421],{"type":39,"value":266},{"type":34,"tag":81,"props":423,"children":424},{"style":100},[425],{"type":39,"value":426},"s|^.\u002F||",{"type":34,"tag":81,"props":428,"children":429},{"style":88},[430],{"type":39,"value":276},{"type":34,"tag":81,"props":432,"children":433},{"style":88},[434],{"type":39,"value":256},{"type":34,"tag":81,"props":436,"children":437},{"style":94},[438],{"type":39,"value":285},{"type":34,"tag":81,"props":440,"children":441},{"style":100},[442],{"type":39,"value":290},{"type":34,"tag":63,"props":444,"children":445},{},[446,448,454],{"type":39,"value":447},"Read the relevant guidance files with ",{"type":34,"tag":77,"props":449,"children":451},{"className":450},[],[452],{"type":39,"value":453},"read_file",{"type":39,"value":455}," before making edits.\n\n",{"type":34,"tag":46,"props":457,"children":459},{"number":458},"3",[460,465],{"type":34,"tag":51,"props":461,"children":462},{},[463],{"type":39,"value":464},"Understand current behavior and context",{"type":34,"tag":57,"props":466,"children":467},{},[468,470,475,579,584],{"type":39,"value":469},"\nRead each changed file in full with `read_file`. Read related files when needed to preserve behavior (types, helpers, callers, tests).\n",{"type":34,"tag":63,"props":471,"children":472},{},[473],{"type":39,"value":474},"Also inspect the relevant diff context:",{"type":34,"tag":69,"props":476,"children":478},{"className":71,"code":477,"language":73,"meta":74,"style":74},"git diff $(git merge-base HEAD origin\u002FHEAD 2>\u002Fdev\u002Fnull || echo \"HEAD~1\") HEAD && git diff && git diff --cached\n",[479],{"type":34,"tag":77,"props":480,"children":481},{"__ignoreMap":74},[482],{"type":34,"tag":81,"props":483,"children":484},{"class":83,"line":84},[485,489,493,497,501,505,509,513,517,521,525,529,533,537,541,545,549,554,558,562,566,570,574],{"type":34,"tag":81,"props":486,"children":487},{"style":94},[488],{"type":39,"value":97},{"type":34,"tag":81,"props":490,"children":491},{"style":100},[492],{"type":39,"value":103},{"type":34,"tag":81,"props":494,"children":495},{"style":88},[496],{"type":39,"value":113},{"type":34,"tag":81,"props":498,"children":499},{"style":94},[500],{"type":39,"value":97},{"type":34,"tag":81,"props":502,"children":503},{"style":100},[504],{"type":39,"value":122},{"type":34,"tag":81,"props":506,"children":507},{"style":100},[508],{"type":39,"value":127},{"type":34,"tag":81,"props":510,"children":511},{"style":100},[512],{"type":39,"value":132},{"type":34,"tag":81,"props":514,"children":515},{"style":88},[516],{"type":39,"value":137},{"type":34,"tag":81,"props":518,"children":519},{"style":100},[520],{"type":39,"value":142},{"type":34,"tag":81,"props":522,"children":523},{"style":88},[524],{"type":39,"value":147},{"type":34,"tag":81,"props":526,"children":527},{"style":150},[528],{"type":39,"value":153},{"type":34,"tag":81,"props":530,"children":531},{"style":88},[532],{"type":39,"value":158},{"type":34,"tag":81,"props":534,"children":535},{"style":100},[536],{"type":39,"value":163},{"type":34,"tag":81,"props":538,"children":539},{"style":88},[540],{"type":39,"value":168},{"type":34,"tag":81,"props":542,"children":543},{"style":88},[544],{"type":39,"value":173},{"type":34,"tag":81,"props":546,"children":547},{"style":100},[548],{"type":39,"value":127},{"type":34,"tag":81,"props":550,"children":551},{"style":88},[552],{"type":39,"value":553}," &&",{"type":34,"tag":81,"props":555,"children":556},{"style":94},[557],{"type":39,"value":195},{"type":34,"tag":81,"props":559,"children":560},{"style":100},[561],{"type":39,"value":103},{"type":34,"tag":81,"props":563,"children":564},{"style":88},[565],{"type":39,"value":553},{"type":34,"tag":81,"props":567,"children":568},{"style":94},[569],{"type":39,"value":195},{"type":34,"tag":81,"props":571,"children":572},{"style":100},[573],{"type":39,"value":103},{"type":34,"tag":81,"props":575,"children":576},{"style":100},[577],{"type":39,"value":578}," --cached\n",{"type":34,"tag":63,"props":580,"children":581},{},[582],{"type":39,"value":583},"Do not make speculative assumptions about intent. Infer intent from code and adjacent patterns.\n\n",{"type":34,"tag":46,"props":585,"children":587},{"number":586},"4",[588,593],{"type":34,"tag":51,"props":589,"children":590},{},[591],{"type":39,"value":592},"Find safe simplification opportunities",{"type":34,"tag":57,"props":594,"children":595},{},[596,598,633,638,657,662],{"type":39,"value":597},"\nIdentify concrete, local simplifications that keep behavior intact. Prioritize:\n",{"type":34,"tag":599,"props":600,"children":601},"ol",{},[602,608,613,618,623,628],{"type":34,"tag":603,"props":604,"children":605},"li",{},[606],{"type":39,"value":607},"Remove duplication and improve reuse where the abstraction is obvious.",{"type":34,"tag":603,"props":609,"children":610},{},[611],{"type":39,"value":612},"Simplify conditionals\u002Fcontrol flow without changing semantics.",{"type":34,"tag":603,"props":614,"children":615},{},[616],{"type":39,"value":617},"Improve readability\u002Fmaintainability by reducing incidental complexity.",{"type":34,"tag":603,"props":619,"children":620},{},[621],{"type":39,"value":622},"Remove redundant code introduced in recent changes.",{"type":34,"tag":603,"props":624,"children":625},{},[626],{"type":39,"value":627},"Apply straightforward efficiency improvements that are clearly safe.",{"type":34,"tag":603,"props":629,"children":630},{},[631],{"type":39,"value":632},"Align with existing codebase conventions and neighboring patterns.",{"type":34,"tag":63,"props":634,"children":635},{},[636],{"type":39,"value":637},"Avoid:",{"type":34,"tag":639,"props":640,"children":641},"ul",{},[642,647,652],{"type":34,"tag":603,"props":643,"children":644},{},[645],{"type":39,"value":646},"broad rewrites",{"type":34,"tag":603,"props":648,"children":649},{},[650],{"type":39,"value":651},"speculative architecture changes",{"type":34,"tag":603,"props":653,"children":654},{},[655],{"type":39,"value":656},"changes requiring uncertain product decisions",{"type":34,"tag":63,"props":658,"children":659},{},[660],{"type":39,"value":661},"If no safe simplifications are found, report that clearly and conclude without edits.\n\n",{"type":34,"tag":46,"props":663,"children":665},{"number":664},"5",[666,671],{"type":34,"tag":51,"props":667,"children":668},{},[669],{"type":39,"value":670},"Implement the simplifications",{"type":34,"tag":57,"props":672,"children":673},{},[674,676,681,704],{"type":39,"value":675},"\nApply the selected simplifications directly in the changed files (and directly related files when required for correctness).\n",{"type":34,"tag":63,"props":677,"children":678},{},[679],{"type":39,"value":680},"For each edit:",{"type":34,"tag":599,"props":682,"children":683},{},[684,689,694,699],{"type":34,"tag":603,"props":685,"children":686},{},[687],{"type":39,"value":688},"Preserve external behavior and existing contracts.",{"type":34,"tag":603,"props":690,"children":691},{},[692],{"type":39,"value":693},"Keep changes local and easy to review.",{"type":34,"tag":603,"props":695,"children":696},{},[697],{"type":39,"value":698},"Prefer existing helpers\u002Futilities over new abstractions.",{"type":34,"tag":603,"props":700,"children":701},{},[702],{"type":39,"value":703},"Re-read the edited file to confirm clarity and consistency.\n\n",{"type":34,"tag":46,"props":705,"children":707},{"number":706},"6",[708,713],{"type":34,"tag":51,"props":709,"children":710},{},[711],{"type":39,"value":712},"Run proportionate validation",{"type":34,"tag":57,"props":714,"children":715},{},[716,718,723],{"type":39,"value":717},"\nRun the most relevant checks for the affected scope (tests, type checks, lint as appropriate). Prefer targeted commands over broad suites.\n",{"type":34,"tag":63,"props":719,"children":720},{},[721],{"type":39,"value":722},"If a check fails, fix the issue and rerun relevant validation.\nIf validation cannot run, state exactly what was skipped and why.\n\n",{"type":34,"tag":46,"props":724,"children":726},{"number":725},"7",[727,732],{"type":34,"tag":51,"props":728,"children":729},{},[730],{"type":39,"value":731},"Report concise simplification summary",{"type":34,"tag":57,"props":733,"children":734},{},[735],{"type":39,"value":736},"\nProvide a concise summary that includes:\n- files simplified\n- what was simplified and why it is safer\u002Fclearer\n- validation run and results\n- anything intentionally left unchanged due to risk\u002Fscope\n",{"type":34,"tag":738,"props":739,"children":740},"style",{},[741],{"type":39,"value":742},"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":744,"total":848},[745,761,777,791,807,819,838],{"slug":746,"name":746,"fn":747,"description":748,"org":749,"tags":750,"stars":17,"repoUrl":18,"updatedAt":760},"address-pr-feedback","address unresolved GitHub PR feedback","Focused GitHub PR-feedback workflow for addressing unresolved review threads on the current pull request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[751,754,757],{"name":752,"slug":753,"type":16},"Code Review","code-review",{"name":755,"slug":756,"type":16},"GitHub","github",{"name":758,"slug":759,"type":16},"Pull Requests","pull-requests","2026-07-19T05:38:26.334008",{"slug":762,"name":762,"fn":763,"description":764,"org":765,"tags":766,"stars":17,"repoUrl":18,"updatedAt":776},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[767,770,773],{"name":768,"slug":769,"type":16},"Browser Automation","browser-automation",{"name":771,"slug":772,"type":16},"CLI","cli",{"name":774,"slug":775,"type":16},"Testing","testing","2026-07-16T06:02:26.045337",{"slug":778,"name":778,"fn":779,"description":780,"org":781,"tags":782,"stars":17,"repoUrl":18,"updatedAt":790},"capture-visual-proof","capture visual proof of browser tasks","Visual-proof orchestrator that decides whether browser proof applies, classifies the proof package, and delegates capture to the hidden proof-runner subagent.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[783,786,787],{"name":784,"slug":785,"type":16},"Automation","automation",{"name":768,"slug":769,"type":16},{"name":788,"slug":789,"type":16},"Screenshots","screenshots","2026-08-01T05:44:47.369293",{"slug":792,"name":792,"fn":793,"description":794,"org":795,"tags":796,"stars":17,"repoUrl":18,"updatedAt":806},"ci-failure-triage","triage failed CI workflows","Investigate the latest default-branch CI failure in an environment-backed workspace and, when it is real and fixable, fix and open a PR in the same task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[797,800,803],{"name":798,"slug":799,"type":16},"CI\u002FCD","ci-cd",{"name":801,"slug":802,"type":16},"Debugging","debugging",{"name":804,"slug":805,"type":16},"GitHub Actions","github-actions","2026-07-23T05:40:41.726992",{"slug":808,"name":808,"fn":809,"description":810,"org":811,"tags":812,"stars":17,"repoUrl":18,"updatedAt":818},"code-quality-auditor","audit code quality in merged pull requests","Automation skill: review recently merged pull requests for high-confidence code quality issues and submit `act` work items that auto-start follow-up execution tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[813,814,815],{"name":14,"slug":15,"type":16},{"name":752,"slug":753,"type":16},{"name":816,"slug":817,"type":16},"QA","qa","2026-07-26T05:47:47.339721",{"slug":820,"name":820,"fn":821,"description":822,"org":823,"tags":824,"stars":17,"repoUrl":18,"updatedAt":837},"codeql-triage","triage and remediate CodeQL security alerts","Review current open CodeQL \u002F GitHub code-scanning alerts with GitHub data, keep scheduled runs read-only, and submit a small set of environment-backed `act` work items that auto-start remediation execution tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[825,826,829,830,831,834],{"name":14,"slug":15,"type":16},{"name":827,"slug":828,"type":16},"CodeQL","codeql",{"name":801,"slug":802,"type":16},{"name":755,"slug":756,"type":16},{"name":832,"slug":833,"type":16},"Security","security",{"name":835,"slug":836,"type":16},"Triage","triage","2026-07-29T05:39:37.784486",{"slug":839,"name":839,"fn":840,"description":841,"org":842,"tags":843,"stars":17,"repoUrl":18,"updatedAt":847},"create-draft-pr","create draft pull requests","Draft pull-request creation workflow. Use when repositories have pending changes or unpushed commits and you want draft PRs created.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[844,845,846],{"name":784,"slug":785,"type":16},{"name":755,"slug":756,"type":16},{"name":758,"slug":759,"type":16},"2026-07-16T06:00:31.733527",33,{"items":850,"total":848},[851,857,863,869,875,881,890,896,905,916,927,940],{"slug":746,"name":746,"fn":747,"description":748,"org":852,"tags":853,"stars":17,"repoUrl":18,"updatedAt":760},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[854,855,856],{"name":752,"slug":753,"type":16},{"name":755,"slug":756,"type":16},{"name":758,"slug":759,"type":16},{"slug":762,"name":762,"fn":763,"description":764,"org":858,"tags":859,"stars":17,"repoUrl":18,"updatedAt":776},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[860,861,862],{"name":768,"slug":769,"type":16},{"name":771,"slug":772,"type":16},{"name":774,"slug":775,"type":16},{"slug":778,"name":778,"fn":779,"description":780,"org":864,"tags":865,"stars":17,"repoUrl":18,"updatedAt":790},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[866,867,868],{"name":784,"slug":785,"type":16},{"name":768,"slug":769,"type":16},{"name":788,"slug":789,"type":16},{"slug":792,"name":792,"fn":793,"description":794,"org":870,"tags":871,"stars":17,"repoUrl":18,"updatedAt":806},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[872,873,874],{"name":798,"slug":799,"type":16},{"name":801,"slug":802,"type":16},{"name":804,"slug":805,"type":16},{"slug":808,"name":808,"fn":809,"description":810,"org":876,"tags":877,"stars":17,"repoUrl":18,"updatedAt":818},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[878,879,880],{"name":14,"slug":15,"type":16},{"name":752,"slug":753,"type":16},{"name":816,"slug":817,"type":16},{"slug":820,"name":820,"fn":821,"description":822,"org":882,"tags":883,"stars":17,"repoUrl":18,"updatedAt":837},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[884,885,886,887,888,889],{"name":14,"slug":15,"type":16},{"name":827,"slug":828,"type":16},{"name":801,"slug":802,"type":16},{"name":755,"slug":756,"type":16},{"name":832,"slug":833,"type":16},{"name":835,"slug":836,"type":16},{"slug":839,"name":839,"fn":840,"description":841,"org":891,"tags":892,"stars":17,"repoUrl":18,"updatedAt":847},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[893,894,895],{"name":784,"slug":785,"type":16},{"name":755,"slug":756,"type":16},{"name":758,"slug":759,"type":16},{"slug":897,"name":897,"fn":898,"description":899,"org":900,"tags":901,"stars":17,"repoUrl":18,"updatedAt":904},"create-pr","create pull requests for pending changes","Pull-request creation workflow. Use when repositories have pending changes or unpushed commits and you want ready-for-review PRs created.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[902,903],{"name":755,"slug":756,"type":16},{"name":758,"slug":759,"type":16},"2026-07-16T06:03:03.397562",{"slug":906,"name":906,"fn":907,"description":908,"org":909,"tags":910,"stars":17,"repoUrl":18,"updatedAt":915},"debug-reported-bug","reproduce and debug reported bugs","Reproduce-first bug diagnosis workflow. Use when a reported bug needs to be reproduced, reduced to a deterministic failing check, and traced through git history or `git bisect` so the exact cause is understood before any fix is attempted.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[911,912,914],{"name":801,"slug":802,"type":16},{"name":913,"slug":97,"type":16},"Git",{"name":774,"slug":775,"type":16},"2026-07-16T06:03:07.255013",{"slug":917,"name":917,"fn":918,"description":919,"org":920,"tags":921,"stars":17,"repoUrl":18,"updatedAt":926},"dependabot-triage","triage GitHub Dependabot alerts","Review current open Dependabot alerts with GitHub data, keep scheduled runs read-only, and submit a small set of environment-backed `act` work items that auto-start dependency-update execution tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[922,923,924,925],{"name":784,"slug":785,"type":16},{"name":755,"slug":756,"type":16},{"name":832,"slug":833,"type":16},{"name":835,"slug":836,"type":16},"2026-07-29T05:39:38.757423",{"slug":928,"name":928,"fn":929,"description":930,"org":931,"tags":932,"stars":17,"repoUrl":18,"updatedAt":939},"environment-setup","configure local development environments","Internal skill to configure environments. Never use unless the user explicitly initiates the skill. Focus on localhost-ready setup and validation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[933,936],{"name":934,"slug":935,"type":16},"Configuration","configuration",{"name":937,"slug":938,"type":16},"Local Development","local-development","2026-08-01T05:44:46.333988",{"slug":941,"name":941,"fn":942,"description":943,"org":944,"tags":945,"stars":17,"repoUrl":18,"updatedAt":950},"explain-repo-code","explain repository code and architecture","Explanation-only repository workflow. Use when the user asks to understand behavior, architecture, or rationale from source context without modifying files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[946,947],{"name":14,"slug":15,"type":16},{"name":948,"slug":949,"type":16},"Documentation","documentation","2026-07-16T06:00:34.090082"]