[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-planning-with-files":3,"mdc-5fbps9-key":37,"related-repo-trail-of-bits-planning-with-files":1098,"related-org-trail-of-bits-planning-with-files":1211},{"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},"planning-with-files","implement file-based planning for complex tasks","Implements file-based planning for complex multi-step tasks. Creates task_plan.md, findings.md, and progress.md as persistent working memory. Use when starting tasks requiring >5 tool calls, multi-phase projects, research, or any work where losing track of goals and progress would be costly.",{"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},"Productivity","productivity","tag",{"name":18,"slug":19,"type":16},"Planning","planning",{"name":21,"slug":22,"type":16},"Engineering","engineering",{"name":24,"slug":25,"type":16},"Task Management","task-management",460,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated","2026-07-17T06:06:49.703021",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\u002Fplanning-with-files\u002Fskills\u002Fplanning-with-files","---\nname: planning-with-files\ndescription: >-\n  Implements file-based planning for complex multi-step tasks. Creates\n  task_plan.md, findings.md, and progress.md as persistent working memory. Use\n  when starting tasks requiring >5 tool calls, multi-phase projects, research,\n  or any work where losing track of goals and progress would be costly.\nallowed-tools:\n  - Read\n  - Write\n  - Edit\n  - Glob\n  - Grep\n---\n\n# Planning with Files\n\nUse persistent markdown files as working memory on disk.\n\n## Quick Start\n\n1. **Create planning files** -- use `\u002Fplan` or create manually from\n   [templates](references\u002Ftemplates.md)\n2. **Create `task_plan.md`** with goal, phases, and key questions\n3. **Create `findings.md`** for research and decisions\n4. **Create `progress.md`** for session logging\n5. **Re-read the plan before decisions** -- refreshes goals in attention\n6. **Update after each phase** -- mark status, log errors\n\n## When to Use\n\n- Multi-step tasks (3+ phases)\n- Research projects requiring many searches\n- Building or creating projects with multiple files\n- Tasks spanning many tool calls (>10)\n- Any work where losing track of goals would be costly\n- Tasks that may span multiple sessions\n\n## When NOT to Use\n\n- Simple questions or quick lookups\n- Single-file edits with obvious scope\n- Tasks completable in under 5 tool calls\n- Conversational exchanges without implementation\n\n## Core Pattern\n\n```\nContext Window = RAM (volatile, limited)\nFilesystem     = Disk (persistent, unlimited)\n\nAnything important gets written to disk.\n```\n\nAfter many tool calls, the original goal drifts out of the attention\nwindow. Reading `task_plan.md` brings it back. This is the single\nmost important pattern in file-based planning.\n\n## File Purposes\n\n| File | Purpose | When to Update |\n|------|---------|----------------|\n| `task_plan.md` | Phases, progress, decisions | After each phase completes |\n| `findings.md` | Research, discoveries, decisions | After ANY discovery |\n| `progress.md` | Session log, test results | Throughout the session |\n\nAll three files go in the **project root**, not the plugin directory.\n\n## Critical Rules\n\n### 1. Create Plan First\n\nNever start a complex task without `task_plan.md`. This is\nnon-negotiable. The plan is your persistent memory.\n\n### 2. The 2-Action Rule\n\nAfter every 2 search, browse, or read operations, immediately save\nkey findings to `findings.md`. Multimodal content (images, browser\nresults, PDF contents) does not persist in context -- capture it as\ntext before it is lost.\n\n### 3. Read Before Decide\n\nBefore any major decision, re-read `task_plan.md`. This pushes\ngoals and context back into the recent attention window, counteracting\nthe \"lost in the middle\" effect that occurs after ~50 tool calls.\n\n```\n[Original goal -- far away in context, forgotten]\n...many tool calls...\n[Recently read task_plan.md -- gets ATTENTION]\n→ Now make the decision with goals fresh in context\n```\n\n### 4. Update After Act\n\nAfter completing any phase:\n\n- Mark phase status: `in_progress` -> `complete`\n- Log any errors encountered in the Errors table\n- Note files created or modified in `progress.md`\n\n### 5. Log ALL Errors\n\nEvery error goes in `task_plan.md`. Include the attempt number and\nresolution. This builds knowledge and prevents repeating failures.\n\n```markdown\n## Errors Encountered\n| Error | Attempt | Resolution |\n|-------|---------|------------|\n| FileNotFoundError | 1 | Created default config |\n| API timeout | 2 | Added retry logic |\n```\n\n### 6. Never Repeat Failures\n\nIf an action failed, the next action must be different. Track what\nyou tried and mutate the approach.\n\n```\nif action_failed:\n    next_action != same_action\n```\n\n## 3-Strike Error Protocol\n\n```\nATTEMPT 1: Diagnose & Fix\n  -> Read error carefully\n  -> Identify root cause\n  -> Apply targeted fix\n\nATTEMPT 2: Alternative Approach\n  -> Same error? Try a different method\n  -> Different tool? Different library?\n  -> NEVER repeat the exact same failing action\n\nATTEMPT 3: Broader Rethink\n  -> Question assumptions\n  -> Search for solutions\n  -> Consider updating the plan\n\nAFTER 3 FAILURES: Escalate to User\n  -> Explain what you tried (with attempt log)\n  -> Share the specific error\n  -> Ask for guidance\n```\n\n## Read vs Write Decision Matrix\n\n| Situation | Action | Reason |\n|-----------|--------|--------|\n| Just wrote a file | Don't read it | Content still in context |\n| Viewed image\u002FPDF | Write findings NOW | Multimodal content doesn't persist |\n| Browser returned data | Write to file | Screenshots don't persist |\n| Starting new phase | Read plan\u002Ffindings | Re-orient if context is stale |\n| Error occurred | Read relevant file | Need current state to fix |\n| Resuming after gap | Read all planning files | Recover full state |\n\n## 5-Question Reboot Test\n\nIf you can answer these from your planning files, context is solid:\n\n| Question | Answer Source |\n|----------|--------------|\n| Where am I? | Current phase in `task_plan.md` |\n| Where am I going? | Remaining phases |\n| What's the goal? | Goal statement in plan |\n| What have I learned? | `findings.md` |\n| What have I done? | `progress.md` |\n\n## Anti-Patterns\n\n| Don't | Do Instead |\n|-------|------------|\n| State goals once and forget | Re-read plan before decisions |\n| Hide errors and retry silently | Log every error to plan file |\n| Stuff everything in context | Store large content in files |\n| Start executing immediately | Create plan file FIRST |\n| Repeat failed actions | Track attempts, mutate approach |\n| Create files in plugin directory | Create files in project root |\n\n## References\n\n- [Templates](references\u002Ftemplates.md) -- starter templates for all\n  three planning files\n- [Principles](references\u002Fprinciples.md) -- context engineering\n  principles behind this approach\n- [Examples](references\u002Fexamples.md) -- concrete examples and error\n  recovery patterns\n",{"data":38,"body":45},{"name":4,"description":6,"allowed-tools":39},[40,41,42,43,44],"Read","Write","Edit","Glob","Grep",{"type":46,"children":47},"root",[48,56,62,69,167,173,207,213,236,242,254,266,272,368,380,386,393,405,411,423,429,441,450,456,461,498,504,516,660,666,671,680,686,695,701,836,842,847,945,951,1051,1057,1092],{"type":49,"tag":50,"props":51,"children":52},"element","h1",{"id":4},[53],{"type":54,"value":55},"text","Planning with Files",{"type":49,"tag":57,"props":58,"children":59},"p",{},[60],{"type":54,"value":61},"Use persistent markdown files as working memory on disk.",{"type":49,"tag":63,"props":64,"children":66},"h2",{"id":65},"quick-start",[67],{"type":54,"value":68},"Quick Start",{"type":49,"tag":70,"props":71,"children":72},"ol",{},[73,101,117,132,147,157],{"type":49,"tag":74,"props":75,"children":76},"li",{},[77,83,85,92,94],{"type":49,"tag":78,"props":79,"children":80},"strong",{},[81],{"type":54,"value":82},"Create planning files",{"type":54,"value":84}," -- use ",{"type":49,"tag":86,"props":87,"children":89},"code",{"className":88},[],[90],{"type":54,"value":91},"\u002Fplan",{"type":54,"value":93}," or create manually from\n",{"type":49,"tag":95,"props":96,"children":98},"a",{"href":97},"references\u002Ftemplates.md",[99],{"type":54,"value":100},"templates",{"type":49,"tag":74,"props":102,"children":103},{},[104,115],{"type":49,"tag":78,"props":105,"children":106},{},[107,109],{"type":54,"value":108},"Create ",{"type":49,"tag":86,"props":110,"children":112},{"className":111},[],[113],{"type":54,"value":114},"task_plan.md",{"type":54,"value":116}," with goal, phases, and key questions",{"type":49,"tag":74,"props":118,"children":119},{},[120,130],{"type":49,"tag":78,"props":121,"children":122},{},[123,124],{"type":54,"value":108},{"type":49,"tag":86,"props":125,"children":127},{"className":126},[],[128],{"type":54,"value":129},"findings.md",{"type":54,"value":131}," for research and decisions",{"type":49,"tag":74,"props":133,"children":134},{},[135,145],{"type":49,"tag":78,"props":136,"children":137},{},[138,139],{"type":54,"value":108},{"type":49,"tag":86,"props":140,"children":142},{"className":141},[],[143],{"type":54,"value":144},"progress.md",{"type":54,"value":146}," for session logging",{"type":49,"tag":74,"props":148,"children":149},{},[150,155],{"type":49,"tag":78,"props":151,"children":152},{},[153],{"type":54,"value":154},"Re-read the plan before decisions",{"type":54,"value":156}," -- refreshes goals in attention",{"type":49,"tag":74,"props":158,"children":159},{},[160,165],{"type":49,"tag":78,"props":161,"children":162},{},[163],{"type":54,"value":164},"Update after each phase",{"type":54,"value":166}," -- mark status, log errors",{"type":49,"tag":63,"props":168,"children":170},{"id":169},"when-to-use",[171],{"type":54,"value":172},"When to Use",{"type":49,"tag":174,"props":175,"children":176},"ul",{},[177,182,187,192,197,202],{"type":49,"tag":74,"props":178,"children":179},{},[180],{"type":54,"value":181},"Multi-step tasks (3+ phases)",{"type":49,"tag":74,"props":183,"children":184},{},[185],{"type":54,"value":186},"Research projects requiring many searches",{"type":49,"tag":74,"props":188,"children":189},{},[190],{"type":54,"value":191},"Building or creating projects with multiple files",{"type":49,"tag":74,"props":193,"children":194},{},[195],{"type":54,"value":196},"Tasks spanning many tool calls (>10)",{"type":49,"tag":74,"props":198,"children":199},{},[200],{"type":54,"value":201},"Any work where losing track of goals would be costly",{"type":49,"tag":74,"props":203,"children":204},{},[205],{"type":54,"value":206},"Tasks that may span multiple sessions",{"type":49,"tag":63,"props":208,"children":210},{"id":209},"when-not-to-use",[211],{"type":54,"value":212},"When NOT to Use",{"type":49,"tag":174,"props":214,"children":215},{},[216,221,226,231],{"type":49,"tag":74,"props":217,"children":218},{},[219],{"type":54,"value":220},"Simple questions or quick lookups",{"type":49,"tag":74,"props":222,"children":223},{},[224],{"type":54,"value":225},"Single-file edits with obvious scope",{"type":49,"tag":74,"props":227,"children":228},{},[229],{"type":54,"value":230},"Tasks completable in under 5 tool calls",{"type":49,"tag":74,"props":232,"children":233},{},[234],{"type":54,"value":235},"Conversational exchanges without implementation",{"type":49,"tag":63,"props":237,"children":239},{"id":238},"core-pattern",[240],{"type":54,"value":241},"Core Pattern",{"type":49,"tag":243,"props":244,"children":248},"pre",{"className":245,"code":247,"language":54},[246],"language-text","Context Window = RAM (volatile, limited)\nFilesystem     = Disk (persistent, unlimited)\n\nAnything important gets written to disk.\n",[249],{"type":49,"tag":86,"props":250,"children":252},{"__ignoreMap":251},"",[253],{"type":54,"value":247},{"type":49,"tag":57,"props":255,"children":256},{},[257,259,264],{"type":54,"value":258},"After many tool calls, the original goal drifts out of the attention\nwindow. Reading ",{"type":49,"tag":86,"props":260,"children":262},{"className":261},[],[263],{"type":54,"value":114},{"type":54,"value":265}," brings it back. This is the single\nmost important pattern in file-based planning.",{"type":49,"tag":63,"props":267,"children":269},{"id":268},"file-purposes",[270],{"type":54,"value":271},"File Purposes",{"type":49,"tag":273,"props":274,"children":275},"table",{},[276,300],{"type":49,"tag":277,"props":278,"children":279},"thead",{},[280],{"type":49,"tag":281,"props":282,"children":283},"tr",{},[284,290,295],{"type":49,"tag":285,"props":286,"children":287},"th",{},[288],{"type":54,"value":289},"File",{"type":49,"tag":285,"props":291,"children":292},{},[293],{"type":54,"value":294},"Purpose",{"type":49,"tag":285,"props":296,"children":297},{},[298],{"type":54,"value":299},"When to Update",{"type":49,"tag":301,"props":302,"children":303},"tbody",{},[304,326,347],{"type":49,"tag":281,"props":305,"children":306},{},[307,316,321],{"type":49,"tag":308,"props":309,"children":310},"td",{},[311],{"type":49,"tag":86,"props":312,"children":314},{"className":313},[],[315],{"type":54,"value":114},{"type":49,"tag":308,"props":317,"children":318},{},[319],{"type":54,"value":320},"Phases, progress, decisions",{"type":49,"tag":308,"props":322,"children":323},{},[324],{"type":54,"value":325},"After each phase completes",{"type":49,"tag":281,"props":327,"children":328},{},[329,337,342],{"type":49,"tag":308,"props":330,"children":331},{},[332],{"type":49,"tag":86,"props":333,"children":335},{"className":334},[],[336],{"type":54,"value":129},{"type":49,"tag":308,"props":338,"children":339},{},[340],{"type":54,"value":341},"Research, discoveries, decisions",{"type":49,"tag":308,"props":343,"children":344},{},[345],{"type":54,"value":346},"After ANY discovery",{"type":49,"tag":281,"props":348,"children":349},{},[350,358,363],{"type":49,"tag":308,"props":351,"children":352},{},[353],{"type":49,"tag":86,"props":354,"children":356},{"className":355},[],[357],{"type":54,"value":144},{"type":49,"tag":308,"props":359,"children":360},{},[361],{"type":54,"value":362},"Session log, test results",{"type":49,"tag":308,"props":364,"children":365},{},[366],{"type":54,"value":367},"Throughout the session",{"type":49,"tag":57,"props":369,"children":370},{},[371,373,378],{"type":54,"value":372},"All three files go in the ",{"type":49,"tag":78,"props":374,"children":375},{},[376],{"type":54,"value":377},"project root",{"type":54,"value":379},", not the plugin directory.",{"type":49,"tag":63,"props":381,"children":383},{"id":382},"critical-rules",[384],{"type":54,"value":385},"Critical Rules",{"type":49,"tag":387,"props":388,"children":390},"h3",{"id":389},"_1-create-plan-first",[391],{"type":54,"value":392},"1. Create Plan First",{"type":49,"tag":57,"props":394,"children":395},{},[396,398,403],{"type":54,"value":397},"Never start a complex task without ",{"type":49,"tag":86,"props":399,"children":401},{"className":400},[],[402],{"type":54,"value":114},{"type":54,"value":404},". This is\nnon-negotiable. The plan is your persistent memory.",{"type":49,"tag":387,"props":406,"children":408},{"id":407},"_2-the-2-action-rule",[409],{"type":54,"value":410},"2. The 2-Action Rule",{"type":49,"tag":57,"props":412,"children":413},{},[414,416,421],{"type":54,"value":415},"After every 2 search, browse, or read operations, immediately save\nkey findings to ",{"type":49,"tag":86,"props":417,"children":419},{"className":418},[],[420],{"type":54,"value":129},{"type":54,"value":422},". Multimodal content (images, browser\nresults, PDF contents) does not persist in context -- capture it as\ntext before it is lost.",{"type":49,"tag":387,"props":424,"children":426},{"id":425},"_3-read-before-decide",[427],{"type":54,"value":428},"3. Read Before Decide",{"type":49,"tag":57,"props":430,"children":431},{},[432,434,439],{"type":54,"value":433},"Before any major decision, re-read ",{"type":49,"tag":86,"props":435,"children":437},{"className":436},[],[438],{"type":54,"value":114},{"type":54,"value":440},". This pushes\ngoals and context back into the recent attention window, counteracting\nthe \"lost in the middle\" effect that occurs after ~50 tool calls.",{"type":49,"tag":243,"props":442,"children":445},{"className":443,"code":444,"language":54},[246],"[Original goal -- far away in context, forgotten]\n...many tool calls...\n[Recently read task_plan.md -- gets ATTENTION]\n→ Now make the decision with goals fresh in context\n",[446],{"type":49,"tag":86,"props":447,"children":448},{"__ignoreMap":251},[449],{"type":54,"value":444},{"type":49,"tag":387,"props":451,"children":453},{"id":452},"_4-update-after-act",[454],{"type":54,"value":455},"4. Update After Act",{"type":49,"tag":57,"props":457,"children":458},{},[459],{"type":54,"value":460},"After completing any phase:",{"type":49,"tag":174,"props":462,"children":463},{},[464,483,488],{"type":49,"tag":74,"props":465,"children":466},{},[467,469,475,477],{"type":54,"value":468},"Mark phase status: ",{"type":49,"tag":86,"props":470,"children":472},{"className":471},[],[473],{"type":54,"value":474},"in_progress",{"type":54,"value":476}," -> ",{"type":49,"tag":86,"props":478,"children":480},{"className":479},[],[481],{"type":54,"value":482},"complete",{"type":49,"tag":74,"props":484,"children":485},{},[486],{"type":54,"value":487},"Log any errors encountered in the Errors table",{"type":49,"tag":74,"props":489,"children":490},{},[491,493],{"type":54,"value":492},"Note files created or modified in ",{"type":49,"tag":86,"props":494,"children":496},{"className":495},[],[497],{"type":54,"value":144},{"type":49,"tag":387,"props":499,"children":501},{"id":500},"_5-log-all-errors",[502],{"type":54,"value":503},"5. Log ALL Errors",{"type":49,"tag":57,"props":505,"children":506},{},[507,509,514],{"type":54,"value":508},"Every error goes in ",{"type":49,"tag":86,"props":510,"children":512},{"className":511},[],[513],{"type":54,"value":114},{"type":54,"value":515},". Include the attempt number and\nresolution. This builds knowledge and prevents repeating failures.",{"type":49,"tag":243,"props":517,"children":521},{"className":518,"code":519,"language":520,"meta":251,"style":251},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","## Errors Encountered\n| Error | Attempt | Resolution |\n|-------|---------|------------|\n| FileNotFoundError | 1 | Created default config |\n| API timeout | 2 | Added retry logic |\n","markdown",[522],{"type":49,"tag":86,"props":523,"children":524},{"__ignoreMap":251},[525,543,581,590,625],{"type":49,"tag":526,"props":527,"children":530},"span",{"class":528,"line":529},"line",1,[531,537],{"type":49,"tag":526,"props":532,"children":534},{"style":533},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[535],{"type":54,"value":536},"## ",{"type":49,"tag":526,"props":538,"children":540},{"style":539},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[541],{"type":54,"value":542},"Errors Encountered\n",{"type":49,"tag":526,"props":544,"children":546},{"class":528,"line":545},2,[547,552,558,562,567,571,576],{"type":49,"tag":526,"props":548,"children":549},{"style":533},[550],{"type":54,"value":551},"|",{"type":49,"tag":526,"props":553,"children":555},{"style":554},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[556],{"type":54,"value":557}," Error ",{"type":49,"tag":526,"props":559,"children":560},{"style":533},[561],{"type":54,"value":551},{"type":49,"tag":526,"props":563,"children":564},{"style":554},[565],{"type":54,"value":566}," Attempt ",{"type":49,"tag":526,"props":568,"children":569},{"style":533},[570],{"type":54,"value":551},{"type":49,"tag":526,"props":572,"children":573},{"style":554},[574],{"type":54,"value":575}," Resolution ",{"type":49,"tag":526,"props":577,"children":578},{"style":533},[579],{"type":54,"value":580},"|\n",{"type":49,"tag":526,"props":582,"children":584},{"class":528,"line":583},3,[585],{"type":49,"tag":526,"props":586,"children":587},{"style":533},[588],{"type":54,"value":589},"|-------|---------|------------|\n",{"type":49,"tag":526,"props":591,"children":593},{"class":528,"line":592},4,[594,598,603,607,612,616,621],{"type":49,"tag":526,"props":595,"children":596},{"style":533},[597],{"type":54,"value":551},{"type":49,"tag":526,"props":599,"children":600},{"style":554},[601],{"type":54,"value":602}," FileNotFoundError ",{"type":49,"tag":526,"props":604,"children":605},{"style":533},[606],{"type":54,"value":551},{"type":49,"tag":526,"props":608,"children":609},{"style":554},[610],{"type":54,"value":611}," 1 ",{"type":49,"tag":526,"props":613,"children":614},{"style":533},[615],{"type":54,"value":551},{"type":49,"tag":526,"props":617,"children":618},{"style":554},[619],{"type":54,"value":620}," Created default config ",{"type":49,"tag":526,"props":622,"children":623},{"style":533},[624],{"type":54,"value":580},{"type":49,"tag":526,"props":626,"children":628},{"class":528,"line":627},5,[629,633,638,642,647,651,656],{"type":49,"tag":526,"props":630,"children":631},{"style":533},[632],{"type":54,"value":551},{"type":49,"tag":526,"props":634,"children":635},{"style":554},[636],{"type":54,"value":637}," API timeout ",{"type":49,"tag":526,"props":639,"children":640},{"style":533},[641],{"type":54,"value":551},{"type":49,"tag":526,"props":643,"children":644},{"style":554},[645],{"type":54,"value":646}," 2 ",{"type":49,"tag":526,"props":648,"children":649},{"style":533},[650],{"type":54,"value":551},{"type":49,"tag":526,"props":652,"children":653},{"style":554},[654],{"type":54,"value":655}," Added retry logic ",{"type":49,"tag":526,"props":657,"children":658},{"style":533},[659],{"type":54,"value":580},{"type":49,"tag":387,"props":661,"children":663},{"id":662},"_6-never-repeat-failures",[664],{"type":54,"value":665},"6. Never Repeat Failures",{"type":49,"tag":57,"props":667,"children":668},{},[669],{"type":54,"value":670},"If an action failed, the next action must be different. Track what\nyou tried and mutate the approach.",{"type":49,"tag":243,"props":672,"children":675},{"className":673,"code":674,"language":54},[246],"if action_failed:\n    next_action != same_action\n",[676],{"type":49,"tag":86,"props":677,"children":678},{"__ignoreMap":251},[679],{"type":54,"value":674},{"type":49,"tag":63,"props":681,"children":683},{"id":682},"_3-strike-error-protocol",[684],{"type":54,"value":685},"3-Strike Error Protocol",{"type":49,"tag":243,"props":687,"children":690},{"className":688,"code":689,"language":54},[246],"ATTEMPT 1: Diagnose & Fix\n  -> Read error carefully\n  -> Identify root cause\n  -> Apply targeted fix\n\nATTEMPT 2: Alternative Approach\n  -> Same error? Try a different method\n  -> Different tool? Different library?\n  -> NEVER repeat the exact same failing action\n\nATTEMPT 3: Broader Rethink\n  -> Question assumptions\n  -> Search for solutions\n  -> Consider updating the plan\n\nAFTER 3 FAILURES: Escalate to User\n  -> Explain what you tried (with attempt log)\n  -> Share the specific error\n  -> Ask for guidance\n",[691],{"type":49,"tag":86,"props":692,"children":693},{"__ignoreMap":251},[694],{"type":54,"value":689},{"type":49,"tag":63,"props":696,"children":698},{"id":697},"read-vs-write-decision-matrix",[699],{"type":54,"value":700},"Read vs Write Decision Matrix",{"type":49,"tag":273,"props":702,"children":703},{},[704,725],{"type":49,"tag":277,"props":705,"children":706},{},[707],{"type":49,"tag":281,"props":708,"children":709},{},[710,715,720],{"type":49,"tag":285,"props":711,"children":712},{},[713],{"type":54,"value":714},"Situation",{"type":49,"tag":285,"props":716,"children":717},{},[718],{"type":54,"value":719},"Action",{"type":49,"tag":285,"props":721,"children":722},{},[723],{"type":54,"value":724},"Reason",{"type":49,"tag":301,"props":726,"children":727},{},[728,746,764,782,800,818],{"type":49,"tag":281,"props":729,"children":730},{},[731,736,741],{"type":49,"tag":308,"props":732,"children":733},{},[734],{"type":54,"value":735},"Just wrote a file",{"type":49,"tag":308,"props":737,"children":738},{},[739],{"type":54,"value":740},"Don't read it",{"type":49,"tag":308,"props":742,"children":743},{},[744],{"type":54,"value":745},"Content still in context",{"type":49,"tag":281,"props":747,"children":748},{},[749,754,759],{"type":49,"tag":308,"props":750,"children":751},{},[752],{"type":54,"value":753},"Viewed image\u002FPDF",{"type":49,"tag":308,"props":755,"children":756},{},[757],{"type":54,"value":758},"Write findings NOW",{"type":49,"tag":308,"props":760,"children":761},{},[762],{"type":54,"value":763},"Multimodal content doesn't persist",{"type":49,"tag":281,"props":765,"children":766},{},[767,772,777],{"type":49,"tag":308,"props":768,"children":769},{},[770],{"type":54,"value":771},"Browser returned data",{"type":49,"tag":308,"props":773,"children":774},{},[775],{"type":54,"value":776},"Write to file",{"type":49,"tag":308,"props":778,"children":779},{},[780],{"type":54,"value":781},"Screenshots don't persist",{"type":49,"tag":281,"props":783,"children":784},{},[785,790,795],{"type":49,"tag":308,"props":786,"children":787},{},[788],{"type":54,"value":789},"Starting new phase",{"type":49,"tag":308,"props":791,"children":792},{},[793],{"type":54,"value":794},"Read plan\u002Ffindings",{"type":49,"tag":308,"props":796,"children":797},{},[798],{"type":54,"value":799},"Re-orient if context is stale",{"type":49,"tag":281,"props":801,"children":802},{},[803,808,813],{"type":49,"tag":308,"props":804,"children":805},{},[806],{"type":54,"value":807},"Error occurred",{"type":49,"tag":308,"props":809,"children":810},{},[811],{"type":54,"value":812},"Read relevant file",{"type":49,"tag":308,"props":814,"children":815},{},[816],{"type":54,"value":817},"Need current state to fix",{"type":49,"tag":281,"props":819,"children":820},{},[821,826,831],{"type":49,"tag":308,"props":822,"children":823},{},[824],{"type":54,"value":825},"Resuming after gap",{"type":49,"tag":308,"props":827,"children":828},{},[829],{"type":54,"value":830},"Read all planning files",{"type":49,"tag":308,"props":832,"children":833},{},[834],{"type":54,"value":835},"Recover full state",{"type":49,"tag":63,"props":837,"children":839},{"id":838},"_5-question-reboot-test",[840],{"type":54,"value":841},"5-Question Reboot Test",{"type":49,"tag":57,"props":843,"children":844},{},[845],{"type":54,"value":846},"If you can answer these from your planning files, context is solid:",{"type":49,"tag":273,"props":848,"children":849},{},[850,866],{"type":49,"tag":277,"props":851,"children":852},{},[853],{"type":49,"tag":281,"props":854,"children":855},{},[856,861],{"type":49,"tag":285,"props":857,"children":858},{},[859],{"type":54,"value":860},"Question",{"type":49,"tag":285,"props":862,"children":863},{},[864],{"type":54,"value":865},"Answer Source",{"type":49,"tag":301,"props":867,"children":868},{},[869,887,900,913,929],{"type":49,"tag":281,"props":870,"children":871},{},[872,877],{"type":49,"tag":308,"props":873,"children":874},{},[875],{"type":54,"value":876},"Where am I?",{"type":49,"tag":308,"props":878,"children":879},{},[880,882],{"type":54,"value":881},"Current phase in ",{"type":49,"tag":86,"props":883,"children":885},{"className":884},[],[886],{"type":54,"value":114},{"type":49,"tag":281,"props":888,"children":889},{},[890,895],{"type":49,"tag":308,"props":891,"children":892},{},[893],{"type":54,"value":894},"Where am I going?",{"type":49,"tag":308,"props":896,"children":897},{},[898],{"type":54,"value":899},"Remaining phases",{"type":49,"tag":281,"props":901,"children":902},{},[903,908],{"type":49,"tag":308,"props":904,"children":905},{},[906],{"type":54,"value":907},"What's the goal?",{"type":49,"tag":308,"props":909,"children":910},{},[911],{"type":54,"value":912},"Goal statement in plan",{"type":49,"tag":281,"props":914,"children":915},{},[916,921],{"type":49,"tag":308,"props":917,"children":918},{},[919],{"type":54,"value":920},"What have I learned?",{"type":49,"tag":308,"props":922,"children":923},{},[924],{"type":49,"tag":86,"props":925,"children":927},{"className":926},[],[928],{"type":54,"value":129},{"type":49,"tag":281,"props":930,"children":931},{},[932,937],{"type":49,"tag":308,"props":933,"children":934},{},[935],{"type":54,"value":936},"What have I done?",{"type":49,"tag":308,"props":938,"children":939},{},[940],{"type":49,"tag":86,"props":941,"children":943},{"className":942},[],[944],{"type":54,"value":144},{"type":49,"tag":63,"props":946,"children":948},{"id":947},"anti-patterns",[949],{"type":54,"value":950},"Anti-Patterns",{"type":49,"tag":273,"props":952,"children":953},{},[954,970],{"type":49,"tag":277,"props":955,"children":956},{},[957],{"type":49,"tag":281,"props":958,"children":959},{},[960,965],{"type":49,"tag":285,"props":961,"children":962},{},[963],{"type":54,"value":964},"Don't",{"type":49,"tag":285,"props":966,"children":967},{},[968],{"type":54,"value":969},"Do Instead",{"type":49,"tag":301,"props":971,"children":972},{},[973,986,999,1012,1025,1038],{"type":49,"tag":281,"props":974,"children":975},{},[976,981],{"type":49,"tag":308,"props":977,"children":978},{},[979],{"type":54,"value":980},"State goals once and forget",{"type":49,"tag":308,"props":982,"children":983},{},[984],{"type":54,"value":985},"Re-read plan before decisions",{"type":49,"tag":281,"props":987,"children":988},{},[989,994],{"type":49,"tag":308,"props":990,"children":991},{},[992],{"type":54,"value":993},"Hide errors and retry silently",{"type":49,"tag":308,"props":995,"children":996},{},[997],{"type":54,"value":998},"Log every error to plan file",{"type":49,"tag":281,"props":1000,"children":1001},{},[1002,1007],{"type":49,"tag":308,"props":1003,"children":1004},{},[1005],{"type":54,"value":1006},"Stuff everything in context",{"type":49,"tag":308,"props":1008,"children":1009},{},[1010],{"type":54,"value":1011},"Store large content in files",{"type":49,"tag":281,"props":1013,"children":1014},{},[1015,1020],{"type":49,"tag":308,"props":1016,"children":1017},{},[1018],{"type":54,"value":1019},"Start executing immediately",{"type":49,"tag":308,"props":1021,"children":1022},{},[1023],{"type":54,"value":1024},"Create plan file FIRST",{"type":49,"tag":281,"props":1026,"children":1027},{},[1028,1033],{"type":49,"tag":308,"props":1029,"children":1030},{},[1031],{"type":54,"value":1032},"Repeat failed actions",{"type":49,"tag":308,"props":1034,"children":1035},{},[1036],{"type":54,"value":1037},"Track attempts, mutate approach",{"type":49,"tag":281,"props":1039,"children":1040},{},[1041,1046],{"type":49,"tag":308,"props":1042,"children":1043},{},[1044],{"type":54,"value":1045},"Create files in plugin directory",{"type":49,"tag":308,"props":1047,"children":1048},{},[1049],{"type":54,"value":1050},"Create files in project root",{"type":49,"tag":63,"props":1052,"children":1054},{"id":1053},"references",[1055],{"type":54,"value":1056},"References",{"type":49,"tag":174,"props":1058,"children":1059},{},[1060,1070,1081],{"type":49,"tag":74,"props":1061,"children":1062},{},[1063,1068],{"type":49,"tag":95,"props":1064,"children":1065},{"href":97},[1066],{"type":54,"value":1067},"Templates",{"type":54,"value":1069}," -- starter templates for all\nthree planning files",{"type":49,"tag":74,"props":1071,"children":1072},{},[1073,1079],{"type":49,"tag":95,"props":1074,"children":1076},{"href":1075},"references\u002Fprinciples.md",[1077],{"type":54,"value":1078},"Principles",{"type":54,"value":1080}," -- context engineering\nprinciples behind this approach",{"type":49,"tag":74,"props":1082,"children":1083},{},[1084,1090],{"type":49,"tag":95,"props":1085,"children":1087},{"href":1086},"references\u002Fexamples.md",[1088],{"type":54,"value":1089},"Examples",{"type":54,"value":1091}," -- concrete examples and error\nrecovery patterns",{"type":49,"tag":1093,"props":1094,"children":1095},"style",{},[1096],{"type":54,"value":1097},"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":1099,"total":1210},[1100,1116,1128,1147,1161,1177,1191],{"slug":1101,"name":1101,"fn":1102,"description":1103,"org":1104,"tags":1105,"stars":26,"repoUrl":27,"updatedAt":1115},"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},[1106,1109,1112],{"name":1107,"slug":1108,"type":16},"Code Analysis","code-analysis",{"name":1110,"slug":1111,"type":16},"Security","security",{"name":1113,"slug":1114,"type":16},"Testing","testing","2026-07-17T06:05:08.247908",{"slug":1117,"name":1117,"fn":1118,"description":1119,"org":1120,"tags":1121,"stars":26,"repoUrl":27,"updatedAt":1127},"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},[1122,1123,1126],{"name":1107,"slug":1108,"type":16},{"name":1124,"slug":1125,"type":16},"Debugging","debugging",{"name":1110,"slug":1111,"type":16},"2026-07-18T05:47:30.015093",{"slug":1129,"name":1129,"fn":1130,"description":1131,"org":1132,"tags":1133,"stars":26,"repoUrl":27,"updatedAt":1146},"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},[1134,1137,1140,1143],{"name":1135,"slug":1136,"type":16},"Analysis","analysis",{"name":1138,"slug":1139,"type":16},"Coaching","coaching",{"name":1141,"slug":1142,"type":16},"Ideation","ideation",{"name":1144,"slug":1145,"type":16},"Strategy","strategy","2026-07-18T05:48:12.46583",{"slug":1148,"name":1148,"fn":1149,"description":1150,"org":1151,"tags":1152,"stars":26,"repoUrl":27,"updatedAt":1160},"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},[1153,1156,1159],{"name":1154,"slug":1155,"type":16},"Agents","agents",{"name":1157,"slug":1158,"type":16},"Context","context",{"name":14,"slug":15,"type":16},"2026-07-18T05:47:03.196098",{"slug":1162,"name":1162,"fn":1163,"description":1164,"org":1165,"tags":1166,"stars":26,"repoUrl":27,"updatedAt":1176},"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},[1167,1170,1173],{"name":1168,"slug":1169,"type":16},"Content Creation","content-creation",{"name":1171,"slug":1172,"type":16},"Editing","editing",{"name":1174,"slug":1175,"type":16},"Writing","writing","2026-07-18T05:47:18.1749",{"slug":1178,"name":1178,"fn":1179,"description":1180,"org":1181,"tags":1182,"stars":26,"repoUrl":27,"updatedAt":1190},"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},[1183,1184,1187],{"name":1135,"slug":1136,"type":16},{"name":1185,"slug":1186,"type":16},"Research","research",{"name":1188,"slug":1189,"type":16},"Social Media","social-media","2026-07-17T06:04:39.744471",{"slug":1192,"name":1192,"fn":1193,"description":1194,"org":1195,"tags":1196,"stars":26,"repoUrl":27,"updatedAt":1209},"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},[1197,1200,1203,1206],{"name":1198,"slug":1199,"type":16},"Cloudflare","cloudflare",{"name":1201,"slug":1202,"type":16},"Cloudflare Pages","cloudflare-pages",{"name":1204,"slug":1205,"type":16},"Cloudflare Workers","cloudflare-workers",{"name":1207,"slug":1208,"type":16},"Deployment","deployment","2026-07-17T06:04:46.574433",31,{"items":1212,"total":1358},[1213,1228,1238,1254,1269,1278,1290,1300,1313,1324,1336,1347],{"slug":1214,"name":1214,"fn":1215,"description":1216,"org":1217,"tags":1218,"stars":1225,"repoUrl":1226,"updatedAt":1227},"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},[1219,1222,1223,1224],{"name":1220,"slug":1221,"type":16},"C#","c",{"name":1124,"slug":1125,"type":16},{"name":1110,"slug":1111,"type":16},{"name":1113,"slug":1114,"type":16},6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:14.925095",{"slug":1229,"name":1229,"fn":1230,"description":1231,"org":1232,"tags":1233,"stars":1225,"repoUrl":1226,"updatedAt":1237},"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},[1234,1235,1236],{"name":1220,"slug":1221,"type":16},{"name":1110,"slug":1111,"type":16},{"name":1113,"slug":1114,"type":16},"2026-07-17T06:05:12.433192",{"slug":1239,"name":1239,"fn":1240,"description":1241,"org":1242,"tags":1243,"stars":1225,"repoUrl":1226,"updatedAt":1253},"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},[1244,1245,1248,1249,1252],{"name":1154,"slug":1155,"type":16},{"name":1246,"slug":1247,"type":16},"CI\u002FCD","ci-cd",{"name":1107,"slug":1108,"type":16},{"name":1250,"slug":1251,"type":16},"GitHub Actions","github-actions",{"name":1110,"slug":1111,"type":16},"2026-07-18T05:47:48.564744",{"slug":1255,"name":1255,"fn":1256,"description":1257,"org":1258,"tags":1259,"stars":1225,"repoUrl":1226,"updatedAt":1268},"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},[1260,1263,1264,1265],{"name":1261,"slug":1262,"type":16},"Audit","audit",{"name":1107,"slug":1108,"type":16},{"name":1110,"slug":1111,"type":16},{"name":1266,"slug":1267,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":1270,"name":1270,"fn":1271,"description":1272,"org":1273,"tags":1274,"stars":1225,"repoUrl":1226,"updatedAt":1277},"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},[1275,1276],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},"2026-07-17T06:05:33.543262",{"slug":1279,"name":1279,"fn":1280,"description":1281,"org":1282,"tags":1283,"stars":1225,"repoUrl":1226,"updatedAt":1289},"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},[1284,1287,1288],{"name":1285,"slug":1286,"type":16},"Python","python",{"name":1110,"slug":1111,"type":16},{"name":1113,"slug":1114,"type":16},"2026-07-17T06:05:14.575191",{"slug":1291,"name":1291,"fn":1292,"description":1293,"org":1294,"tags":1295,"stars":1225,"repoUrl":1226,"updatedAt":1299},"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},[1296,1297,1298],{"name":1261,"slug":1262,"type":16},{"name":1107,"slug":1108,"type":16},{"name":1110,"slug":1111,"type":16},"2026-08-01T05:44:54.920542",{"slug":1301,"name":1301,"fn":1302,"description":1303,"org":1304,"tags":1305,"stars":1225,"repoUrl":1226,"updatedAt":1312},"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},[1306,1309,1310,1311],{"name":1307,"slug":1308,"type":16},"Architecture","architecture",{"name":1261,"slug":1262,"type":16},{"name":1107,"slug":1108,"type":16},{"name":21,"slug":22,"type":16},"2026-07-18T05:47:40.122449",{"slug":1314,"name":1314,"fn":1315,"description":1316,"org":1317,"tags":1318,"stars":1225,"repoUrl":1226,"updatedAt":1323},"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},[1319,1320,1321,1322],{"name":1261,"slug":1262,"type":16},{"name":1107,"slug":1108,"type":16},{"name":21,"slug":22,"type":16},{"name":1110,"slug":1111,"type":16},"2026-07-18T05:47:39.210985",{"slug":1325,"name":1325,"fn":1326,"description":1327,"org":1328,"tags":1329,"stars":1225,"repoUrl":1226,"updatedAt":1335},"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},[1330,1331,1334],{"name":1261,"slug":1262,"type":16},{"name":1332,"slug":1333,"type":16},"CLI","cli",{"name":1110,"slug":1111,"type":16},"2026-07-17T06:05:33.198077",{"slug":1337,"name":1337,"fn":1338,"description":1339,"org":1340,"tags":1341,"stars":1225,"repoUrl":1226,"updatedAt":1346},"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},[1342,1343,1344,1345],{"name":1261,"slug":1262,"type":16},{"name":1220,"slug":1221,"type":16},{"name":1107,"slug":1108,"type":16},{"name":1110,"slug":1111,"type":16},"2026-07-17T06:05:11.333374",{"slug":1348,"name":1348,"fn":1349,"description":1350,"org":1351,"tags":1352,"stars":1225,"repoUrl":1226,"updatedAt":1357},"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},[1353,1354,1355,1356],{"name":1261,"slug":1262,"type":16},{"name":1107,"slug":1108,"type":16},{"name":1110,"slug":1111,"type":16},{"name":1266,"slug":1267,"type":16},"2026-07-18T05:47:42.84568",111]