[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-semgrep":3,"mdc-6ovx9w-key":37,"related-repo-trail-of-bits-semgrep":1840,"related-org-trail-of-bits-semgrep":1936},{"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":32,"sourceUrl":35,"mdContent":36},"semgrep","run Semgrep static analysis scans","Run Semgrep static analysis scan on a codebase using parallel subagents. Supports two scan modes — \"run all\" (full ruleset coverage) and \"important only\" (high-confidence security vulnerabilities). Automatically detects and uses Semgrep Pro for cross-file taint analysis when available. Use when asked to scan code for vulnerabilities, run a security audit with Semgrep, find bugs, or perform static analysis. Spawns parallel workers for multi-language codebases.",{"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,22],{"name":14,"slug":15,"type":16},"Security","security","tag",{"name":18,"slug":19,"type":16},"Static Analysis","static-analysis",{"name":21,"slug":4,"type":16},"Semgrep",{"name":23,"slug":24,"type":16},"Code Analysis","code-analysis",6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:29.015017",null,541,[31],"agent-skills",{"repoUrl":26,"stars":25,"forks":29,"topics":33,"description":34},[31],"Trail of Bits Claude Code skills for security research, vulnerability detection, and audit workflows","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fstatic-analysis\u002Fskills\u002Fsemgrep","---\nname: semgrep\ndescription: >-\n  Run Semgrep static analysis scan on a codebase using parallel subagents.\n  Supports two scan modes — \"run all\" (full ruleset coverage) and \"important\n  only\" (high-confidence security vulnerabilities). Automatically detects and\n  uses Semgrep Pro for cross-file taint analysis when available. Use when asked\n  to scan code for vulnerabilities, run a security audit with Semgrep, find\n  bugs, or perform static analysis. Spawns parallel workers for multi-language\n  codebases.\nallowed-tools: Bash Read Glob Task AskUserQuestion TaskCreate TaskList TaskUpdate\n---\n\n# Semgrep Security Scan\n\nRun a Semgrep scan with automatic language detection, parallel execution via Task subagents, and merged SARIF output.\n\n## Essential Principles\n\n1. **Always use `--metrics=off`** — Semgrep sends telemetry by default; `--config auto` also phones home. Every `semgrep` command must include `--metrics=off` to prevent data leakage during security audits.\n2. **User must approve the scan plan (Step 3 is a hard gate)** — The original \"scan this codebase\" request is NOT approval. Present exact rulesets, target, engine, and mode; wait for explicit \"yes\"\u002F\"proceed\" before spawning scanners.\n3. **Third-party rulesets are required, not optional** — Trail of Bits, 0xdea, and Decurity rules catch vulnerabilities absent from the official registry. Include them whenever the detected language matches.\n4. **Spawn all scan Tasks in a single message** — Parallel execution is the core performance advantage. Never spawn Tasks sequentially; always emit all Task tool calls in one response.\n5. **Always check for Semgrep Pro before scanning** — Pro enables cross-file taint tracking and catches ~250% more true positives. Skipping the check means silently missing critical inter-file vulnerabilities.\n\n## When to Use\n\n- Security audit of a codebase\n- Finding vulnerabilities before code review\n- Scanning for known bug patterns\n- First-pass static analysis\n\n## When NOT to Use\n\n- Binary analysis → Use binary analysis tools\n- Already have Semgrep CI configured → Use existing pipeline\n- Need cross-file analysis but no Pro license → Consider CodeQL as alternative\n- Creating custom Semgrep rules → Use `semgrep-rule-creator` skill\n- Porting existing rules to other languages → Use `semgrep-rule-variant-creator` skill\n\n## Output Directory\n\nAll scan results, SARIF files, and temporary data are stored in a single output directory.\n\n- **If the user specifies an output directory** in their prompt, use it as `OUTPUT_DIR`.\n- **If not specified**, default to `.\u002Fstatic_analysis_semgrep_1`. If that already exists, increment to `_2`, `_3`, etc.\n\nIn both cases, **always create the directory** with `mkdir -p` before writing any files.\n\n```bash\n# Resolve output directory\nif [ -n \"$USER_SPECIFIED_DIR\" ]; then\n  OUTPUT_DIR=\"$USER_SPECIFIED_DIR\"\nelse\n  BASE=\"static_analysis_semgrep\"\n  N=1\n  while [ -e \"${BASE}_${N}\" ]; do\n    N=$((N + 1))\n  done\n  OUTPUT_DIR=\"${BASE}_${N}\"\nfi\nmkdir -p \"$OUTPUT_DIR\u002Fraw\" \"$OUTPUT_DIR\u002Fresults\"\n```\n\nThe output directory is resolved **once** at the start of Step 1 and used throughout all subsequent steps.\n\n```\n$OUTPUT_DIR\u002F\n├── rulesets.txt                 # Approved rulesets (logged after Step 3)\n├── raw\u002F                         # Per-scan raw output (unfiltered)\n│   ├── python-python.json\n│   ├── python-python.sarif\n│   ├── python-django.json\n│   ├── python-django.sarif\n│   └── ...\n└── results\u002F                     # Final merged output\n    └── results.sarif\n```\n\n## Prerequisites\n\n**Required:** Semgrep CLI (`semgrep --version`). If not installed, see [Semgrep installation docs](https:\u002F\u002Fsemgrep.dev\u002Fdocs\u002Fgetting-started\u002F).\n\n**Optional:** Semgrep Pro — enables cross-file taint tracking, inter-procedural analysis, and additional languages (Apex, C#, Elixir). Check with:\n\n```bash\nsemgrep --pro --validate --config p\u002Fdefault 2>\u002Fdev\u002Fnull && echo \"Pro available\" || echo \"OSS only\"\n```\n\n**Limitations:** OSS mode cannot track data flow across files. Pro mode uses `-j 1` for cross-file analysis (slower per ruleset, but parallel rulesets compensate).\n\n## Scan Modes\n\nSelect mode in Step 2 of the workflow. Mode affects both scanner flags and post-processing.\n\n| Mode | Coverage | Findings Reported |\n|------|----------|-------------------|\n| **Run all** | All rulesets, all severity levels | Everything |\n| **Important only** | All rulesets, pre- and post-filtered | Security vulns only, medium-high confidence\u002Fimpact |\n\n**Important only** applies two filter layers:\n1. **Pre-filter**: `--severity MEDIUM --severity HIGH --severity CRITICAL` (CLI flag)\n2. **Post-filter**: JSON metadata — keeps only `category=security`, `confidence∈{MEDIUM,HIGH}`, `impact∈{MEDIUM,HIGH}`\n\nSee [scan-modes.md](references\u002Fscan-modes.md) for metadata criteria and jq filter commands.\n\n## Orchestration Architecture\n\n```\n┌──────────────────────────────────────────────────────────────────┐\n│ MAIN AGENT (this skill)                                          │\n│ Step 1: Detect languages + check Pro availability                │\n│ Step 2: Select scan mode + rulesets (ref: rulesets.md)           │\n│ Step 3: Present plan + rulesets, get approval [⛔ HARD GATE]     │\n│ Step 4: Spawn parallel scan Tasks (approved rulesets + mode)     │\n│ Step 5: Merge results and report                                 │\n└──────────────────────────────────────────────────────────────────┘\n         │ Step 4\n         ▼\n┌─────────────────┐\n│ Scan Tasks      │\n│ (parallel)      │\n├─────────────────┤\n│ Python scanner  │\n│ JS\u002FTS scanner   │\n│ Go scanner      │\n│ Docker scanner  │\n└─────────────────┘\n```\n\n## Workflow\n\n**Follow the detailed workflow in [scan-workflow.md](workflows\u002Fscan-workflow.md).** Summary:\n\n| Step | Action | Gate | Key Reference |\n|------|--------|------|---------------|\n| 1 | Resolve output dir, detect languages + Pro availability | — | Use Glob, not Bash |\n| 2 | Select scan mode + rulesets | — | [rulesets.md](references\u002Frulesets.md) |\n| 3 | Present plan, get explicit approval | ⛔ HARD | AskUserQuestion |\n| 4 | Spawn parallel scan Tasks | — | [scanner-task-prompt.md](references\u002Fscanner-task-prompt.md) |\n| 5 | Merge results and report | — | Merge script (below) |\n\n**Task enforcement:** On invocation, create 5 tasks with blockedBy dependencies (each step blocks the previous). Step 3 is a HARD GATE — mark complete ONLY after user explicitly approves.\n\n**Merge command (Step 5):**\n\n```bash\nuv run {baseDir}\u002Fscripts\u002Fmerge_sarif.py $OUTPUT_DIR\u002Fraw $OUTPUT_DIR\u002Fresults\u002Fresults.sarif\n```\n\n## Agents\n\n| Agent | Tools | Purpose |\n|-------|-------|---------|\n| `static-analysis:semgrep-scanner` | Bash | Executes parallel semgrep scans for a language category |\n\nUse `subagent_type: static-analysis:semgrep-scanner` in Step 4 when spawning Task subagents.\n\n## Rationalizations to Reject\n\n| Shortcut | Why It's Wrong |\n|----------|----------------|\n| \"User asked for scan, that's approval\" | Original request ≠ plan approval. Present plan, use AskUserQuestion, await explicit \"yes\" |\n| \"Step 3 task is blocking, just mark complete\" | Lying about task status defeats enforcement. Only mark complete after real approval |\n| \"I already know what they want\" | Assumptions cause scanning wrong directories\u002Frulesets. Present plan for verification |\n| \"Just use default rulesets\" | User must see and approve exact rulesets before scan |\n| \"Add extra rulesets without asking\" | Modifying approved list without consent breaks trust |\n| \"Third-party rulesets are optional\" | Trail of Bits, 0xdea, Decurity catch vulnerabilities not in official registry — REQUIRED |\n| \"Use --config auto\" | Sends metrics; less control over rulesets |\n| \"One Task at a time\" | Defeats parallelism; spawn all Tasks together |\n| \"Pro is too slow, skip --pro\" | Cross-file analysis catches 250% more true positives; worth the time |\n| \"Semgrep handles GitHub URLs natively\" | URL handling fails on repos with non-standard YAML; always clone first |\n| \"Cleanup is optional\" | Cloned repos pollute the user's workspace and accumulate across runs |\n| \"Use `.` or relative path as target\" | Subagents need absolute paths to avoid ambiguity |\n| \"Let the user pick an output dir later\" | Output directory must be resolved at Step 1, before any files are created |\n\n## Reference Index\n\n| File | Content |\n|------|---------|\n| [rulesets.md](references\u002Frulesets.md) | Complete ruleset catalog and selection algorithm |\n| [scan-modes.md](references\u002Fscan-modes.md) | Pre\u002Fpost-filter criteria and jq commands |\n| [scanner-task-prompt.md](references\u002Fscanner-task-prompt.md) | Template for spawning scanner subagents |\n\n| Workflow | Purpose |\n|----------|---------|\n| [scan-workflow.md](workflows\u002Fscan-workflow.md) | Complete 5-step scan execution process |\n\n## Success Criteria\n\n- [ ] Output directory resolved (user-specified or auto-incremented default)\n- [ ] All generated files stored inside `$OUTPUT_DIR`\n- [ ] Languages detected with file counts; Pro status checked\n- [ ] Scan mode selected by user (run all \u002F important only)\n- [ ] Rulesets include third-party rules for all detected languages\n- [ ] User explicitly approved the scan plan (Step 3 gate passed)\n- [ ] All scan Tasks spawned in a single message and completed\n- [ ] Every `semgrep` command used `--metrics=off`\n- [ ] Approved rulesets logged to `$OUTPUT_DIR\u002Frulesets.txt`\n- [ ] Raw per-scan outputs stored in `$OUTPUT_DIR\u002Fraw\u002F`\n- [ ] `results.sarif` exists in `$OUTPUT_DIR\u002Fresults\u002F` and is valid JSON\n- [ ] Important-only mode: post-filter applied before merge; unfiltered results preserved in `raw\u002F`\n- [ ] Results summary reported with severity and category breakdown\n- [ ] Cloned repos (if any) cleaned up from `$OUTPUT_DIR\u002Frepos\u002F`\n",{"data":38,"body":40},{"name":4,"description":6,"allowed-tools":39},"Bash Read Glob Task AskUserQuestion TaskCreate TaskList TaskUpdate",{"type":41,"children":42},"root",[43,52,58,65,150,156,180,186,229,235,240,295,315,672,684,694,700,728,738,828,846,852,857,932,941,992,1005,1011,1020,1026,1043,1195,1205,1213,1256,1262,1311,1324,1330,1528,1534,1601,1636,1642,1834],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"semgrep-security-scan",[49],{"type":50,"value":51},"text","Semgrep Security Scan",{"type":44,"tag":53,"props":54,"children":55},"p",{},[56],{"type":50,"value":57},"Run a Semgrep scan with automatic language detection, parallel execution via Task subagents, and merged SARIF output.",{"type":44,"tag":59,"props":60,"children":62},"h2",{"id":61},"essential-principles",[63],{"type":50,"value":64},"Essential Principles",{"type":44,"tag":66,"props":67,"children":68},"ol",{},[69,110,120,130,140],{"type":44,"tag":70,"props":71,"children":72},"li",{},[73,86,88,94,96,101,103,108],{"type":44,"tag":74,"props":75,"children":76},"strong",{},[77,79],{"type":50,"value":78},"Always use ",{"type":44,"tag":80,"props":81,"children":83},"code",{"className":82},[],[84],{"type":50,"value":85},"--metrics=off",{"type":50,"value":87}," — Semgrep sends telemetry by default; ",{"type":44,"tag":80,"props":89,"children":91},{"className":90},[],[92],{"type":50,"value":93},"--config auto",{"type":50,"value":95}," also phones home. Every ",{"type":44,"tag":80,"props":97,"children":99},{"className":98},[],[100],{"type":50,"value":4},{"type":50,"value":102}," command must include ",{"type":44,"tag":80,"props":104,"children":106},{"className":105},[],[107],{"type":50,"value":85},{"type":50,"value":109}," to prevent data leakage during security audits.",{"type":44,"tag":70,"props":111,"children":112},{},[113,118],{"type":44,"tag":74,"props":114,"children":115},{},[116],{"type":50,"value":117},"User must approve the scan plan (Step 3 is a hard gate)",{"type":50,"value":119}," — The original \"scan this codebase\" request is NOT approval. Present exact rulesets, target, engine, and mode; wait for explicit \"yes\"\u002F\"proceed\" before spawning scanners.",{"type":44,"tag":70,"props":121,"children":122},{},[123,128],{"type":44,"tag":74,"props":124,"children":125},{},[126],{"type":50,"value":127},"Third-party rulesets are required, not optional",{"type":50,"value":129}," — Trail of Bits, 0xdea, and Decurity rules catch vulnerabilities absent from the official registry. Include them whenever the detected language matches.",{"type":44,"tag":70,"props":131,"children":132},{},[133,138],{"type":44,"tag":74,"props":134,"children":135},{},[136],{"type":50,"value":137},"Spawn all scan Tasks in a single message",{"type":50,"value":139}," — Parallel execution is the core performance advantage. Never spawn Tasks sequentially; always emit all Task tool calls in one response.",{"type":44,"tag":70,"props":141,"children":142},{},[143,148],{"type":44,"tag":74,"props":144,"children":145},{},[146],{"type":50,"value":147},"Always check for Semgrep Pro before scanning",{"type":50,"value":149}," — Pro enables cross-file taint tracking and catches ~250% more true positives. Skipping the check means silently missing critical inter-file vulnerabilities.",{"type":44,"tag":59,"props":151,"children":153},{"id":152},"when-to-use",[154],{"type":50,"value":155},"When to Use",{"type":44,"tag":157,"props":158,"children":159},"ul",{},[160,165,170,175],{"type":44,"tag":70,"props":161,"children":162},{},[163],{"type":50,"value":164},"Security audit of a codebase",{"type":44,"tag":70,"props":166,"children":167},{},[168],{"type":50,"value":169},"Finding vulnerabilities before code review",{"type":44,"tag":70,"props":171,"children":172},{},[173],{"type":50,"value":174},"Scanning for known bug patterns",{"type":44,"tag":70,"props":176,"children":177},{},[178],{"type":50,"value":179},"First-pass static analysis",{"type":44,"tag":59,"props":181,"children":183},{"id":182},"when-not-to-use",[184],{"type":50,"value":185},"When NOT to Use",{"type":44,"tag":157,"props":187,"children":188},{},[189,194,199,204,217],{"type":44,"tag":70,"props":190,"children":191},{},[192],{"type":50,"value":193},"Binary analysis → Use binary analysis tools",{"type":44,"tag":70,"props":195,"children":196},{},[197],{"type":50,"value":198},"Already have Semgrep CI configured → Use existing pipeline",{"type":44,"tag":70,"props":200,"children":201},{},[202],{"type":50,"value":203},"Need cross-file analysis but no Pro license → Consider CodeQL as alternative",{"type":44,"tag":70,"props":205,"children":206},{},[207,209,215],{"type":50,"value":208},"Creating custom Semgrep rules → Use ",{"type":44,"tag":80,"props":210,"children":212},{"className":211},[],[213],{"type":50,"value":214},"semgrep-rule-creator",{"type":50,"value":216}," skill",{"type":44,"tag":70,"props":218,"children":219},{},[220,222,228],{"type":50,"value":221},"Porting existing rules to other languages → Use ",{"type":44,"tag":80,"props":223,"children":225},{"className":224},[],[226],{"type":50,"value":227},"semgrep-rule-variant-creator",{"type":50,"value":216},{"type":44,"tag":59,"props":230,"children":232},{"id":231},"output-directory",[233],{"type":50,"value":234},"Output Directory",{"type":44,"tag":53,"props":236,"children":237},{},[238],{"type":50,"value":239},"All scan results, SARIF files, and temporary data are stored in a single output directory.",{"type":44,"tag":157,"props":241,"children":242},{},[243,261],{"type":44,"tag":70,"props":244,"children":245},{},[246,251,253,259],{"type":44,"tag":74,"props":247,"children":248},{},[249],{"type":50,"value":250},"If the user specifies an output directory",{"type":50,"value":252}," in their prompt, use it as ",{"type":44,"tag":80,"props":254,"children":256},{"className":255},[],[257],{"type":50,"value":258},"OUTPUT_DIR",{"type":50,"value":260},".",{"type":44,"tag":70,"props":262,"children":263},{},[264,269,271,277,279,285,287,293],{"type":44,"tag":74,"props":265,"children":266},{},[267],{"type":50,"value":268},"If not specified",{"type":50,"value":270},", default to ",{"type":44,"tag":80,"props":272,"children":274},{"className":273},[],[275],{"type":50,"value":276},".\u002Fstatic_analysis_semgrep_1",{"type":50,"value":278},". If that already exists, increment to ",{"type":44,"tag":80,"props":280,"children":282},{"className":281},[],[283],{"type":50,"value":284},"_2",{"type":50,"value":286},", ",{"type":44,"tag":80,"props":288,"children":290},{"className":289},[],[291],{"type":50,"value":292},"_3",{"type":50,"value":294},", etc.",{"type":44,"tag":53,"props":296,"children":297},{},[298,300,305,307,313],{"type":50,"value":299},"In both cases, ",{"type":44,"tag":74,"props":301,"children":302},{},[303],{"type":50,"value":304},"always create the directory",{"type":50,"value":306}," with ",{"type":44,"tag":80,"props":308,"children":310},{"className":309},[],[311],{"type":50,"value":312},"mkdir -p",{"type":50,"value":314}," before writing any files.",{"type":44,"tag":316,"props":317,"children":322},"pre",{"className":318,"code":319,"language":320,"meta":321,"style":321},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Resolve output directory\nif [ -n \"$USER_SPECIFIED_DIR\" ]; then\n  OUTPUT_DIR=\"$USER_SPECIFIED_DIR\"\nelse\n  BASE=\"static_analysis_semgrep\"\n  N=1\n  while [ -e \"${BASE}_${N}\" ]; do\n    N=$((N + 1))\n  done\n  OUTPUT_DIR=\"${BASE}_${N}\"\nfi\nmkdir -p \"$OUTPUT_DIR\u002Fraw\" \"$OUTPUT_DIR\u002Fresults\"\n","bash","",[323],{"type":44,"tag":80,"props":324,"children":325},{"__ignoreMap":321},[326,338,385,412,421,448,466,528,563,572,614,623],{"type":44,"tag":327,"props":328,"children":331},"span",{"class":329,"line":330},"line",1,[332],{"type":44,"tag":327,"props":333,"children":335},{"style":334},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[336],{"type":50,"value":337},"# Resolve output directory\n",{"type":44,"tag":327,"props":339,"children":341},{"class":329,"line":340},2,[342,348,354,359,364,370,375,380],{"type":44,"tag":327,"props":343,"children":345},{"style":344},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[346],{"type":50,"value":347},"if",{"type":44,"tag":327,"props":349,"children":351},{"style":350},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[352],{"type":50,"value":353}," [",{"type":44,"tag":327,"props":355,"children":356},{"style":350},[357],{"type":50,"value":358}," -n",{"type":44,"tag":327,"props":360,"children":361},{"style":350},[362],{"type":50,"value":363}," \"",{"type":44,"tag":327,"props":365,"children":367},{"style":366},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[368],{"type":50,"value":369},"$USER_SPECIFIED_DIR",{"type":44,"tag":327,"props":371,"children":372},{"style":350},[373],{"type":50,"value":374},"\"",{"type":44,"tag":327,"props":376,"children":377},{"style":350},[378],{"type":50,"value":379}," ];",{"type":44,"tag":327,"props":381,"children":382},{"style":344},[383],{"type":50,"value":384}," then\n",{"type":44,"tag":327,"props":386,"children":388},{"class":329,"line":387},3,[389,394,399,403,407],{"type":44,"tag":327,"props":390,"children":391},{"style":366},[392],{"type":50,"value":393},"  OUTPUT_DIR",{"type":44,"tag":327,"props":395,"children":396},{"style":350},[397],{"type":50,"value":398},"=",{"type":44,"tag":327,"props":400,"children":401},{"style":350},[402],{"type":50,"value":374},{"type":44,"tag":327,"props":404,"children":405},{"style":366},[406],{"type":50,"value":369},{"type":44,"tag":327,"props":408,"children":409},{"style":350},[410],{"type":50,"value":411},"\"\n",{"type":44,"tag":327,"props":413,"children":415},{"class":329,"line":414},4,[416],{"type":44,"tag":327,"props":417,"children":418},{"style":344},[419],{"type":50,"value":420},"else\n",{"type":44,"tag":327,"props":422,"children":424},{"class":329,"line":423},5,[425,430,434,438,444],{"type":44,"tag":327,"props":426,"children":427},{"style":366},[428],{"type":50,"value":429},"  BASE",{"type":44,"tag":327,"props":431,"children":432},{"style":350},[433],{"type":50,"value":398},{"type":44,"tag":327,"props":435,"children":436},{"style":350},[437],{"type":50,"value":374},{"type":44,"tag":327,"props":439,"children":441},{"style":440},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[442],{"type":50,"value":443},"static_analysis_semgrep",{"type":44,"tag":327,"props":445,"children":446},{"style":350},[447],{"type":50,"value":411},{"type":44,"tag":327,"props":449,"children":451},{"class":329,"line":450},6,[452,457,461],{"type":44,"tag":327,"props":453,"children":454},{"style":366},[455],{"type":50,"value":456},"  N",{"type":44,"tag":327,"props":458,"children":459},{"style":350},[460],{"type":50,"value":398},{"type":44,"tag":327,"props":462,"children":463},{"style":440},[464],{"type":50,"value":465},"1\n",{"type":44,"tag":327,"props":467,"children":469},{"class":329,"line":468},7,[470,475,479,484,489,494,499,504,509,514,519,523],{"type":44,"tag":327,"props":471,"children":472},{"style":344},[473],{"type":50,"value":474},"  while",{"type":44,"tag":327,"props":476,"children":477},{"style":350},[478],{"type":50,"value":353},{"type":44,"tag":327,"props":480,"children":481},{"style":350},[482],{"type":50,"value":483}," -e",{"type":44,"tag":327,"props":485,"children":486},{"style":350},[487],{"type":50,"value":488}," \"${",{"type":44,"tag":327,"props":490,"children":491},{"style":366},[492],{"type":50,"value":493},"BASE",{"type":44,"tag":327,"props":495,"children":496},{"style":350},[497],{"type":50,"value":498},"}",{"type":44,"tag":327,"props":500,"children":501},{"style":440},[502],{"type":50,"value":503},"_",{"type":44,"tag":327,"props":505,"children":506},{"style":350},[507],{"type":50,"value":508},"${",{"type":44,"tag":327,"props":510,"children":511},{"style":366},[512],{"type":50,"value":513},"N",{"type":44,"tag":327,"props":515,"children":516},{"style":350},[517],{"type":50,"value":518},"}\"",{"type":44,"tag":327,"props":520,"children":521},{"style":350},[522],{"type":50,"value":379},{"type":44,"tag":327,"props":524,"children":525},{"style":344},[526],{"type":50,"value":527}," do\n",{"type":44,"tag":327,"props":529,"children":531},{"class":329,"line":530},8,[532,537,542,547,552,558],{"type":44,"tag":327,"props":533,"children":534},{"style":366},[535],{"type":50,"value":536},"    N",{"type":44,"tag":327,"props":538,"children":539},{"style":350},[540],{"type":50,"value":541},"=$((",{"type":44,"tag":327,"props":543,"children":545},{"style":544},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[546],{"type":50,"value":513},{"type":44,"tag":327,"props":548,"children":549},{"style":440},[550],{"type":50,"value":551}," +",{"type":44,"tag":327,"props":553,"children":555},{"style":554},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[556],{"type":50,"value":557}," 1",{"type":44,"tag":327,"props":559,"children":560},{"style":350},[561],{"type":50,"value":562},"))\n",{"type":44,"tag":327,"props":564,"children":566},{"class":329,"line":565},9,[567],{"type":44,"tag":327,"props":568,"children":569},{"style":344},[570],{"type":50,"value":571},"  done\n",{"type":44,"tag":327,"props":573,"children":575},{"class":329,"line":574},10,[576,580,584,589,593,597,601,605,609],{"type":44,"tag":327,"props":577,"children":578},{"style":366},[579],{"type":50,"value":393},{"type":44,"tag":327,"props":581,"children":582},{"style":350},[583],{"type":50,"value":398},{"type":44,"tag":327,"props":585,"children":586},{"style":350},[587],{"type":50,"value":588},"\"${",{"type":44,"tag":327,"props":590,"children":591},{"style":366},[592],{"type":50,"value":493},{"type":44,"tag":327,"props":594,"children":595},{"style":350},[596],{"type":50,"value":498},{"type":44,"tag":327,"props":598,"children":599},{"style":440},[600],{"type":50,"value":503},{"type":44,"tag":327,"props":602,"children":603},{"style":350},[604],{"type":50,"value":508},{"type":44,"tag":327,"props":606,"children":607},{"style":366},[608],{"type":50,"value":513},{"type":44,"tag":327,"props":610,"children":611},{"style":350},[612],{"type":50,"value":613},"}\"\n",{"type":44,"tag":327,"props":615,"children":617},{"class":329,"line":616},11,[618],{"type":44,"tag":327,"props":619,"children":620},{"style":344},[621],{"type":50,"value":622},"fi\n",{"type":44,"tag":327,"props":624,"children":626},{"class":329,"line":625},12,[627,632,637,641,646,651,655,659,663,668],{"type":44,"tag":327,"props":628,"children":629},{"style":544},[630],{"type":50,"value":631},"mkdir",{"type":44,"tag":327,"props":633,"children":634},{"style":440},[635],{"type":50,"value":636}," -p",{"type":44,"tag":327,"props":638,"children":639},{"style":350},[640],{"type":50,"value":363},{"type":44,"tag":327,"props":642,"children":643},{"style":366},[644],{"type":50,"value":645},"$OUTPUT_DIR",{"type":44,"tag":327,"props":647,"children":648},{"style":440},[649],{"type":50,"value":650},"\u002Fraw",{"type":44,"tag":327,"props":652,"children":653},{"style":350},[654],{"type":50,"value":374},{"type":44,"tag":327,"props":656,"children":657},{"style":350},[658],{"type":50,"value":363},{"type":44,"tag":327,"props":660,"children":661},{"style":366},[662],{"type":50,"value":645},{"type":44,"tag":327,"props":664,"children":665},{"style":440},[666],{"type":50,"value":667},"\u002Fresults",{"type":44,"tag":327,"props":669,"children":670},{"style":350},[671],{"type":50,"value":411},{"type":44,"tag":53,"props":673,"children":674},{},[675,677,682],{"type":50,"value":676},"The output directory is resolved ",{"type":44,"tag":74,"props":678,"children":679},{},[680],{"type":50,"value":681},"once",{"type":50,"value":683}," at the start of Step 1 and used throughout all subsequent steps.",{"type":44,"tag":316,"props":685,"children":689},{"className":686,"code":688,"language":50},[687],"language-text","$OUTPUT_DIR\u002F\n├── rulesets.txt                 # Approved rulesets (logged after Step 3)\n├── raw\u002F                         # Per-scan raw output (unfiltered)\n│   ├── python-python.json\n│   ├── python-python.sarif\n│   ├── python-django.json\n│   ├── python-django.sarif\n│   └── ...\n└── results\u002F                     # Final merged output\n    └── results.sarif\n",[690],{"type":44,"tag":80,"props":691,"children":692},{"__ignoreMap":321},[693],{"type":50,"value":688},{"type":44,"tag":59,"props":695,"children":697},{"id":696},"prerequisites",[698],{"type":50,"value":699},"Prerequisites",{"type":44,"tag":53,"props":701,"children":702},{},[703,708,710,716,718,727],{"type":44,"tag":74,"props":704,"children":705},{},[706],{"type":50,"value":707},"Required:",{"type":50,"value":709}," Semgrep CLI (",{"type":44,"tag":80,"props":711,"children":713},{"className":712},[],[714],{"type":50,"value":715},"semgrep --version",{"type":50,"value":717},"). If not installed, see ",{"type":44,"tag":719,"props":720,"children":724},"a",{"href":721,"rel":722},"https:\u002F\u002Fsemgrep.dev\u002Fdocs\u002Fgetting-started\u002F",[723],"nofollow",[725],{"type":50,"value":726},"Semgrep installation docs",{"type":50,"value":260},{"type":44,"tag":53,"props":729,"children":730},{},[731,736],{"type":44,"tag":74,"props":732,"children":733},{},[734],{"type":50,"value":735},"Optional:",{"type":50,"value":737}," Semgrep Pro — enables cross-file taint tracking, inter-procedural analysis, and additional languages (Apex, C#, Elixir). Check with:",{"type":44,"tag":316,"props":739,"children":741},{"className":318,"code":740,"language":320,"meta":321,"style":321},"semgrep --pro --validate --config p\u002Fdefault 2>\u002Fdev\u002Fnull && echo \"Pro available\" || echo \"OSS only\"\n",[742],{"type":44,"tag":80,"props":743,"children":744},{"__ignoreMap":321},[745],{"type":44,"tag":327,"props":746,"children":747},{"class":329,"line":330},[748,752,757,762,767,772,777,782,787,793,797,802,806,811,815,819,824],{"type":44,"tag":327,"props":749,"children":750},{"style":544},[751],{"type":50,"value":4},{"type":44,"tag":327,"props":753,"children":754},{"style":440},[755],{"type":50,"value":756}," --pro",{"type":44,"tag":327,"props":758,"children":759},{"style":440},[760],{"type":50,"value":761}," --validate",{"type":44,"tag":327,"props":763,"children":764},{"style":440},[765],{"type":50,"value":766}," --config",{"type":44,"tag":327,"props":768,"children":769},{"style":440},[770],{"type":50,"value":771}," p\u002Fdefault",{"type":44,"tag":327,"props":773,"children":774},{"style":350},[775],{"type":50,"value":776}," 2>",{"type":44,"tag":327,"props":778,"children":779},{"style":440},[780],{"type":50,"value":781},"\u002Fdev\u002Fnull",{"type":44,"tag":327,"props":783,"children":784},{"style":350},[785],{"type":50,"value":786}," &&",{"type":44,"tag":327,"props":788,"children":790},{"style":789},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[791],{"type":50,"value":792}," echo",{"type":44,"tag":327,"props":794,"children":795},{"style":350},[796],{"type":50,"value":363},{"type":44,"tag":327,"props":798,"children":799},{"style":440},[800],{"type":50,"value":801},"Pro available",{"type":44,"tag":327,"props":803,"children":804},{"style":350},[805],{"type":50,"value":374},{"type":44,"tag":327,"props":807,"children":808},{"style":350},[809],{"type":50,"value":810}," ||",{"type":44,"tag":327,"props":812,"children":813},{"style":789},[814],{"type":50,"value":792},{"type":44,"tag":327,"props":816,"children":817},{"style":350},[818],{"type":50,"value":363},{"type":44,"tag":327,"props":820,"children":821},{"style":440},[822],{"type":50,"value":823},"OSS only",{"type":44,"tag":327,"props":825,"children":826},{"style":350},[827],{"type":50,"value":411},{"type":44,"tag":53,"props":829,"children":830},{},[831,836,838,844],{"type":44,"tag":74,"props":832,"children":833},{},[834],{"type":50,"value":835},"Limitations:",{"type":50,"value":837}," OSS mode cannot track data flow across files. Pro mode uses ",{"type":44,"tag":80,"props":839,"children":841},{"className":840},[],[842],{"type":50,"value":843},"-j 1",{"type":50,"value":845}," for cross-file analysis (slower per ruleset, but parallel rulesets compensate).",{"type":44,"tag":59,"props":847,"children":849},{"id":848},"scan-modes",[850],{"type":50,"value":851},"Scan Modes",{"type":44,"tag":53,"props":853,"children":854},{},[855],{"type":50,"value":856},"Select mode in Step 2 of the workflow. Mode affects both scanner flags and post-processing.",{"type":44,"tag":858,"props":859,"children":860},"table",{},[861,885],{"type":44,"tag":862,"props":863,"children":864},"thead",{},[865],{"type":44,"tag":866,"props":867,"children":868},"tr",{},[869,875,880],{"type":44,"tag":870,"props":871,"children":872},"th",{},[873],{"type":50,"value":874},"Mode",{"type":44,"tag":870,"props":876,"children":877},{},[878],{"type":50,"value":879},"Coverage",{"type":44,"tag":870,"props":881,"children":882},{},[883],{"type":50,"value":884},"Findings Reported",{"type":44,"tag":886,"props":887,"children":888},"tbody",{},[889,911],{"type":44,"tag":866,"props":890,"children":891},{},[892,901,906],{"type":44,"tag":893,"props":894,"children":895},"td",{},[896],{"type":44,"tag":74,"props":897,"children":898},{},[899],{"type":50,"value":900},"Run all",{"type":44,"tag":893,"props":902,"children":903},{},[904],{"type":50,"value":905},"All rulesets, all severity levels",{"type":44,"tag":893,"props":907,"children":908},{},[909],{"type":50,"value":910},"Everything",{"type":44,"tag":866,"props":912,"children":913},{},[914,922,927],{"type":44,"tag":893,"props":915,"children":916},{},[917],{"type":44,"tag":74,"props":918,"children":919},{},[920],{"type":50,"value":921},"Important only",{"type":44,"tag":893,"props":923,"children":924},{},[925],{"type":50,"value":926},"All rulesets, pre- and post-filtered",{"type":44,"tag":893,"props":928,"children":929},{},[930],{"type":50,"value":931},"Security vulns only, medium-high confidence\u002Fimpact",{"type":44,"tag":53,"props":933,"children":934},{},[935,939],{"type":44,"tag":74,"props":936,"children":937},{},[938],{"type":50,"value":921},{"type":50,"value":940}," applies two filter layers:",{"type":44,"tag":66,"props":942,"children":943},{},[944,962],{"type":44,"tag":70,"props":945,"children":946},{},[947,952,954,960],{"type":44,"tag":74,"props":948,"children":949},{},[950],{"type":50,"value":951},"Pre-filter",{"type":50,"value":953},": ",{"type":44,"tag":80,"props":955,"children":957},{"className":956},[],[958],{"type":50,"value":959},"--severity MEDIUM --severity HIGH --severity CRITICAL",{"type":50,"value":961}," (CLI flag)",{"type":44,"tag":70,"props":963,"children":964},{},[965,970,972,978,979,985,986],{"type":44,"tag":74,"props":966,"children":967},{},[968],{"type":50,"value":969},"Post-filter",{"type":50,"value":971},": JSON metadata — keeps only ",{"type":44,"tag":80,"props":973,"children":975},{"className":974},[],[976],{"type":50,"value":977},"category=security",{"type":50,"value":286},{"type":44,"tag":80,"props":980,"children":982},{"className":981},[],[983],{"type":50,"value":984},"confidence∈{MEDIUM,HIGH}",{"type":50,"value":286},{"type":44,"tag":80,"props":987,"children":989},{"className":988},[],[990],{"type":50,"value":991},"impact∈{MEDIUM,HIGH}",{"type":44,"tag":53,"props":993,"children":994},{},[995,997,1003],{"type":50,"value":996},"See ",{"type":44,"tag":719,"props":998,"children":1000},{"href":999},"references\u002Fscan-modes.md",[1001],{"type":50,"value":1002},"scan-modes.md",{"type":50,"value":1004}," for metadata criteria and jq filter commands.",{"type":44,"tag":59,"props":1006,"children":1008},{"id":1007},"orchestration-architecture",[1009],{"type":50,"value":1010},"Orchestration Architecture",{"type":44,"tag":316,"props":1012,"children":1015},{"className":1013,"code":1014,"language":50},[687],"┌──────────────────────────────────────────────────────────────────┐\n│ MAIN AGENT (this skill)                                          │\n│ Step 1: Detect languages + check Pro availability                │\n│ Step 2: Select scan mode + rulesets (ref: rulesets.md)           │\n│ Step 3: Present plan + rulesets, get approval [⛔ HARD GATE]     │\n│ Step 4: Spawn parallel scan Tasks (approved rulesets + mode)     │\n│ Step 5: Merge results and report                                 │\n└──────────────────────────────────────────────────────────────────┘\n         │ Step 4\n         ▼\n┌─────────────────┐\n│ Scan Tasks      │\n│ (parallel)      │\n├─────────────────┤\n│ Python scanner  │\n│ JS\u002FTS scanner   │\n│ Go scanner      │\n│ Docker scanner  │\n└─────────────────┘\n",[1016],{"type":44,"tag":80,"props":1017,"children":1018},{"__ignoreMap":321},[1019],{"type":50,"value":1014},{"type":44,"tag":59,"props":1021,"children":1023},{"id":1022},"workflow",[1024],{"type":50,"value":1025},"Workflow",{"type":44,"tag":53,"props":1027,"children":1028},{},[1029,1041],{"type":44,"tag":74,"props":1030,"children":1031},{},[1032,1034,1040],{"type":50,"value":1033},"Follow the detailed workflow in ",{"type":44,"tag":719,"props":1035,"children":1037},{"href":1036},"workflows\u002Fscan-workflow.md",[1038],{"type":50,"value":1039},"scan-workflow.md",{"type":50,"value":260},{"type":50,"value":1042}," Summary:",{"type":44,"tag":858,"props":1044,"children":1045},{},[1046,1072],{"type":44,"tag":862,"props":1047,"children":1048},{},[1049],{"type":44,"tag":866,"props":1050,"children":1051},{},[1052,1057,1062,1067],{"type":44,"tag":870,"props":1053,"children":1054},{},[1055],{"type":50,"value":1056},"Step",{"type":44,"tag":870,"props":1058,"children":1059},{},[1060],{"type":50,"value":1061},"Action",{"type":44,"tag":870,"props":1063,"children":1064},{},[1065],{"type":50,"value":1066},"Gate",{"type":44,"tag":870,"props":1068,"children":1069},{},[1070],{"type":50,"value":1071},"Key Reference",{"type":44,"tag":886,"props":1073,"children":1074},{},[1075,1098,1124,1147,1173],{"type":44,"tag":866,"props":1076,"children":1077},{},[1078,1083,1088,1093],{"type":44,"tag":893,"props":1079,"children":1080},{},[1081],{"type":50,"value":1082},"1",{"type":44,"tag":893,"props":1084,"children":1085},{},[1086],{"type":50,"value":1087},"Resolve output dir, detect languages + Pro availability",{"type":44,"tag":893,"props":1089,"children":1090},{},[1091],{"type":50,"value":1092},"—",{"type":44,"tag":893,"props":1094,"children":1095},{},[1096],{"type":50,"value":1097},"Use Glob, not Bash",{"type":44,"tag":866,"props":1099,"children":1100},{},[1101,1106,1111,1115],{"type":44,"tag":893,"props":1102,"children":1103},{},[1104],{"type":50,"value":1105},"2",{"type":44,"tag":893,"props":1107,"children":1108},{},[1109],{"type":50,"value":1110},"Select scan mode + rulesets",{"type":44,"tag":893,"props":1112,"children":1113},{},[1114],{"type":50,"value":1092},{"type":44,"tag":893,"props":1116,"children":1117},{},[1118],{"type":44,"tag":719,"props":1119,"children":1121},{"href":1120},"references\u002Frulesets.md",[1122],{"type":50,"value":1123},"rulesets.md",{"type":44,"tag":866,"props":1125,"children":1126},{},[1127,1132,1137,1142],{"type":44,"tag":893,"props":1128,"children":1129},{},[1130],{"type":50,"value":1131},"3",{"type":44,"tag":893,"props":1133,"children":1134},{},[1135],{"type":50,"value":1136},"Present plan, get explicit approval",{"type":44,"tag":893,"props":1138,"children":1139},{},[1140],{"type":50,"value":1141},"⛔ HARD",{"type":44,"tag":893,"props":1143,"children":1144},{},[1145],{"type":50,"value":1146},"AskUserQuestion",{"type":44,"tag":866,"props":1148,"children":1149},{},[1150,1155,1160,1164],{"type":44,"tag":893,"props":1151,"children":1152},{},[1153],{"type":50,"value":1154},"4",{"type":44,"tag":893,"props":1156,"children":1157},{},[1158],{"type":50,"value":1159},"Spawn parallel scan Tasks",{"type":44,"tag":893,"props":1161,"children":1162},{},[1163],{"type":50,"value":1092},{"type":44,"tag":893,"props":1165,"children":1166},{},[1167],{"type":44,"tag":719,"props":1168,"children":1170},{"href":1169},"references\u002Fscanner-task-prompt.md",[1171],{"type":50,"value":1172},"scanner-task-prompt.md",{"type":44,"tag":866,"props":1174,"children":1175},{},[1176,1181,1186,1190],{"type":44,"tag":893,"props":1177,"children":1178},{},[1179],{"type":50,"value":1180},"5",{"type":44,"tag":893,"props":1182,"children":1183},{},[1184],{"type":50,"value":1185},"Merge results and report",{"type":44,"tag":893,"props":1187,"children":1188},{},[1189],{"type":50,"value":1092},{"type":44,"tag":893,"props":1191,"children":1192},{},[1193],{"type":50,"value":1194},"Merge script (below)",{"type":44,"tag":53,"props":1196,"children":1197},{},[1198,1203],{"type":44,"tag":74,"props":1199,"children":1200},{},[1201],{"type":50,"value":1202},"Task enforcement:",{"type":50,"value":1204}," On invocation, create 5 tasks with blockedBy dependencies (each step blocks the previous). Step 3 is a HARD GATE — mark complete ONLY after user explicitly approves.",{"type":44,"tag":53,"props":1206,"children":1207},{},[1208],{"type":44,"tag":74,"props":1209,"children":1210},{},[1211],{"type":50,"value":1212},"Merge command (Step 5):",{"type":44,"tag":316,"props":1214,"children":1216},{"className":318,"code":1215,"language":320,"meta":321,"style":321},"uv run {baseDir}\u002Fscripts\u002Fmerge_sarif.py $OUTPUT_DIR\u002Fraw $OUTPUT_DIR\u002Fresults\u002Fresults.sarif\n",[1217],{"type":44,"tag":80,"props":1218,"children":1219},{"__ignoreMap":321},[1220],{"type":44,"tag":327,"props":1221,"children":1222},{"class":329,"line":330},[1223,1228,1233,1238,1243,1247,1251],{"type":44,"tag":327,"props":1224,"children":1225},{"style":544},[1226],{"type":50,"value":1227},"uv",{"type":44,"tag":327,"props":1229,"children":1230},{"style":440},[1231],{"type":50,"value":1232}," run",{"type":44,"tag":327,"props":1234,"children":1235},{"style":440},[1236],{"type":50,"value":1237}," {baseDir}\u002Fscripts\u002Fmerge_sarif.py",{"type":44,"tag":327,"props":1239,"children":1240},{"style":366},[1241],{"type":50,"value":1242}," $OUTPUT_DIR",{"type":44,"tag":327,"props":1244,"children":1245},{"style":440},[1246],{"type":50,"value":650},{"type":44,"tag":327,"props":1248,"children":1249},{"style":366},[1250],{"type":50,"value":1242},{"type":44,"tag":327,"props":1252,"children":1253},{"style":440},[1254],{"type":50,"value":1255},"\u002Fresults\u002Fresults.sarif\n",{"type":44,"tag":59,"props":1257,"children":1259},{"id":1258},"agents",[1260],{"type":50,"value":1261},"Agents",{"type":44,"tag":858,"props":1263,"children":1264},{},[1265,1286],{"type":44,"tag":862,"props":1266,"children":1267},{},[1268],{"type":44,"tag":866,"props":1269,"children":1270},{},[1271,1276,1281],{"type":44,"tag":870,"props":1272,"children":1273},{},[1274],{"type":50,"value":1275},"Agent",{"type":44,"tag":870,"props":1277,"children":1278},{},[1279],{"type":50,"value":1280},"Tools",{"type":44,"tag":870,"props":1282,"children":1283},{},[1284],{"type":50,"value":1285},"Purpose",{"type":44,"tag":886,"props":1287,"children":1288},{},[1289],{"type":44,"tag":866,"props":1290,"children":1291},{},[1292,1301,1306],{"type":44,"tag":893,"props":1293,"children":1294},{},[1295],{"type":44,"tag":80,"props":1296,"children":1298},{"className":1297},[],[1299],{"type":50,"value":1300},"static-analysis:semgrep-scanner",{"type":44,"tag":893,"props":1302,"children":1303},{},[1304],{"type":50,"value":1305},"Bash",{"type":44,"tag":893,"props":1307,"children":1308},{},[1309],{"type":50,"value":1310},"Executes parallel semgrep scans for a language category",{"type":44,"tag":53,"props":1312,"children":1313},{},[1314,1316,1322],{"type":50,"value":1315},"Use ",{"type":44,"tag":80,"props":1317,"children":1319},{"className":1318},[],[1320],{"type":50,"value":1321},"subagent_type: static-analysis:semgrep-scanner",{"type":50,"value":1323}," in Step 4 when spawning Task subagents.",{"type":44,"tag":59,"props":1325,"children":1327},{"id":1326},"rationalizations-to-reject",[1328],{"type":50,"value":1329},"Rationalizations to Reject",{"type":44,"tag":858,"props":1331,"children":1332},{},[1333,1349],{"type":44,"tag":862,"props":1334,"children":1335},{},[1336],{"type":44,"tag":866,"props":1337,"children":1338},{},[1339,1344],{"type":44,"tag":870,"props":1340,"children":1341},{},[1342],{"type":50,"value":1343},"Shortcut",{"type":44,"tag":870,"props":1345,"children":1346},{},[1347],{"type":50,"value":1348},"Why It's Wrong",{"type":44,"tag":886,"props":1350,"children":1351},{},[1352,1365,1378,1391,1404,1417,1430,1443,1456,1469,1482,1495,1515],{"type":44,"tag":866,"props":1353,"children":1354},{},[1355,1360],{"type":44,"tag":893,"props":1356,"children":1357},{},[1358],{"type":50,"value":1359},"\"User asked for scan, that's approval\"",{"type":44,"tag":893,"props":1361,"children":1362},{},[1363],{"type":50,"value":1364},"Original request ≠ plan approval. Present plan, use AskUserQuestion, await explicit \"yes\"",{"type":44,"tag":866,"props":1366,"children":1367},{},[1368,1373],{"type":44,"tag":893,"props":1369,"children":1370},{},[1371],{"type":50,"value":1372},"\"Step 3 task is blocking, just mark complete\"",{"type":44,"tag":893,"props":1374,"children":1375},{},[1376],{"type":50,"value":1377},"Lying about task status defeats enforcement. Only mark complete after real approval",{"type":44,"tag":866,"props":1379,"children":1380},{},[1381,1386],{"type":44,"tag":893,"props":1382,"children":1383},{},[1384],{"type":50,"value":1385},"\"I already know what they want\"",{"type":44,"tag":893,"props":1387,"children":1388},{},[1389],{"type":50,"value":1390},"Assumptions cause scanning wrong directories\u002Frulesets. Present plan for verification",{"type":44,"tag":866,"props":1392,"children":1393},{},[1394,1399],{"type":44,"tag":893,"props":1395,"children":1396},{},[1397],{"type":50,"value":1398},"\"Just use default rulesets\"",{"type":44,"tag":893,"props":1400,"children":1401},{},[1402],{"type":50,"value":1403},"User must see and approve exact rulesets before scan",{"type":44,"tag":866,"props":1405,"children":1406},{},[1407,1412],{"type":44,"tag":893,"props":1408,"children":1409},{},[1410],{"type":50,"value":1411},"\"Add extra rulesets without asking\"",{"type":44,"tag":893,"props":1413,"children":1414},{},[1415],{"type":50,"value":1416},"Modifying approved list without consent breaks trust",{"type":44,"tag":866,"props":1418,"children":1419},{},[1420,1425],{"type":44,"tag":893,"props":1421,"children":1422},{},[1423],{"type":50,"value":1424},"\"Third-party rulesets are optional\"",{"type":44,"tag":893,"props":1426,"children":1427},{},[1428],{"type":50,"value":1429},"Trail of Bits, 0xdea, Decurity catch vulnerabilities not in official registry — REQUIRED",{"type":44,"tag":866,"props":1431,"children":1432},{},[1433,1438],{"type":44,"tag":893,"props":1434,"children":1435},{},[1436],{"type":50,"value":1437},"\"Use --config auto\"",{"type":44,"tag":893,"props":1439,"children":1440},{},[1441],{"type":50,"value":1442},"Sends metrics; less control over rulesets",{"type":44,"tag":866,"props":1444,"children":1445},{},[1446,1451],{"type":44,"tag":893,"props":1447,"children":1448},{},[1449],{"type":50,"value":1450},"\"One Task at a time\"",{"type":44,"tag":893,"props":1452,"children":1453},{},[1454],{"type":50,"value":1455},"Defeats parallelism; spawn all Tasks together",{"type":44,"tag":866,"props":1457,"children":1458},{},[1459,1464],{"type":44,"tag":893,"props":1460,"children":1461},{},[1462],{"type":50,"value":1463},"\"Pro is too slow, skip --pro\"",{"type":44,"tag":893,"props":1465,"children":1466},{},[1467],{"type":50,"value":1468},"Cross-file analysis catches 250% more true positives; worth the time",{"type":44,"tag":866,"props":1470,"children":1471},{},[1472,1477],{"type":44,"tag":893,"props":1473,"children":1474},{},[1475],{"type":50,"value":1476},"\"Semgrep handles GitHub URLs natively\"",{"type":44,"tag":893,"props":1478,"children":1479},{},[1480],{"type":50,"value":1481},"URL handling fails on repos with non-standard YAML; always clone first",{"type":44,"tag":866,"props":1483,"children":1484},{},[1485,1490],{"type":44,"tag":893,"props":1486,"children":1487},{},[1488],{"type":50,"value":1489},"\"Cleanup is optional\"",{"type":44,"tag":893,"props":1491,"children":1492},{},[1493],{"type":50,"value":1494},"Cloned repos pollute the user's workspace and accumulate across runs",{"type":44,"tag":866,"props":1496,"children":1497},{},[1498,1510],{"type":44,"tag":893,"props":1499,"children":1500},{},[1501,1503,1508],{"type":50,"value":1502},"\"Use ",{"type":44,"tag":80,"props":1504,"children":1506},{"className":1505},[],[1507],{"type":50,"value":260},{"type":50,"value":1509}," or relative path as target\"",{"type":44,"tag":893,"props":1511,"children":1512},{},[1513],{"type":50,"value":1514},"Subagents need absolute paths to avoid ambiguity",{"type":44,"tag":866,"props":1516,"children":1517},{},[1518,1523],{"type":44,"tag":893,"props":1519,"children":1520},{},[1521],{"type":50,"value":1522},"\"Let the user pick an output dir later\"",{"type":44,"tag":893,"props":1524,"children":1525},{},[1526],{"type":50,"value":1527},"Output directory must be resolved at Step 1, before any files are created",{"type":44,"tag":59,"props":1529,"children":1531},{"id":1530},"reference-index",[1532],{"type":50,"value":1533},"Reference Index",{"type":44,"tag":858,"props":1535,"children":1536},{},[1537,1553],{"type":44,"tag":862,"props":1538,"children":1539},{},[1540],{"type":44,"tag":866,"props":1541,"children":1542},{},[1543,1548],{"type":44,"tag":870,"props":1544,"children":1545},{},[1546],{"type":50,"value":1547},"File",{"type":44,"tag":870,"props":1549,"children":1550},{},[1551],{"type":50,"value":1552},"Content",{"type":44,"tag":886,"props":1554,"children":1555},{},[1556,1571,1586],{"type":44,"tag":866,"props":1557,"children":1558},{},[1559,1566],{"type":44,"tag":893,"props":1560,"children":1561},{},[1562],{"type":44,"tag":719,"props":1563,"children":1564},{"href":1120},[1565],{"type":50,"value":1123},{"type":44,"tag":893,"props":1567,"children":1568},{},[1569],{"type":50,"value":1570},"Complete ruleset catalog and selection algorithm",{"type":44,"tag":866,"props":1572,"children":1573},{},[1574,1581],{"type":44,"tag":893,"props":1575,"children":1576},{},[1577],{"type":44,"tag":719,"props":1578,"children":1579},{"href":999},[1580],{"type":50,"value":1002},{"type":44,"tag":893,"props":1582,"children":1583},{},[1584],{"type":50,"value":1585},"Pre\u002Fpost-filter criteria and jq commands",{"type":44,"tag":866,"props":1587,"children":1588},{},[1589,1596],{"type":44,"tag":893,"props":1590,"children":1591},{},[1592],{"type":44,"tag":719,"props":1593,"children":1594},{"href":1169},[1595],{"type":50,"value":1172},{"type":44,"tag":893,"props":1597,"children":1598},{},[1599],{"type":50,"value":1600},"Template for spawning scanner subagents",{"type":44,"tag":858,"props":1602,"children":1603},{},[1604,1618],{"type":44,"tag":862,"props":1605,"children":1606},{},[1607],{"type":44,"tag":866,"props":1608,"children":1609},{},[1610,1614],{"type":44,"tag":870,"props":1611,"children":1612},{},[1613],{"type":50,"value":1025},{"type":44,"tag":870,"props":1615,"children":1616},{},[1617],{"type":50,"value":1285},{"type":44,"tag":886,"props":1619,"children":1620},{},[1621],{"type":44,"tag":866,"props":1622,"children":1623},{},[1624,1631],{"type":44,"tag":893,"props":1625,"children":1626},{},[1627],{"type":44,"tag":719,"props":1628,"children":1629},{"href":1036},[1630],{"type":50,"value":1039},{"type":44,"tag":893,"props":1632,"children":1633},{},[1634],{"type":50,"value":1635},"Complete 5-step scan execution process",{"type":44,"tag":59,"props":1637,"children":1639},{"id":1638},"success-criteria",[1640],{"type":50,"value":1641},"Success Criteria",{"type":44,"tag":157,"props":1643,"children":1646},{"className":1644},[1645],"contains-task-list",[1647,1660,1674,1683,1692,1701,1710,1719,1740,1755,1770,1795,1810,1819],{"type":44,"tag":70,"props":1648,"children":1651},{"className":1649},[1650],"task-list-item",[1652,1658],{"type":44,"tag":1653,"props":1654,"children":1657},"input",{"disabled":1655,"type":1656},true,"checkbox",[],{"type":50,"value":1659}," Output directory resolved (user-specified or auto-incremented default)",{"type":44,"tag":70,"props":1661,"children":1663},{"className":1662},[1650],[1664,1667,1669],{"type":44,"tag":1653,"props":1665,"children":1666},{"disabled":1655,"type":1656},[],{"type":50,"value":1668}," All generated files stored inside ",{"type":44,"tag":80,"props":1670,"children":1672},{"className":1671},[],[1673],{"type":50,"value":645},{"type":44,"tag":70,"props":1675,"children":1677},{"className":1676},[1650],[1678,1681],{"type":44,"tag":1653,"props":1679,"children":1680},{"disabled":1655,"type":1656},[],{"type":50,"value":1682}," Languages detected with file counts; Pro status checked",{"type":44,"tag":70,"props":1684,"children":1686},{"className":1685},[1650],[1687,1690],{"type":44,"tag":1653,"props":1688,"children":1689},{"disabled":1655,"type":1656},[],{"type":50,"value":1691}," Scan mode selected by user (run all \u002F important only)",{"type":44,"tag":70,"props":1693,"children":1695},{"className":1694},[1650],[1696,1699],{"type":44,"tag":1653,"props":1697,"children":1698},{"disabled":1655,"type":1656},[],{"type":50,"value":1700}," Rulesets include third-party rules for all detected languages",{"type":44,"tag":70,"props":1702,"children":1704},{"className":1703},[1650],[1705,1708],{"type":44,"tag":1653,"props":1706,"children":1707},{"disabled":1655,"type":1656},[],{"type":50,"value":1709}," User explicitly approved the scan plan (Step 3 gate passed)",{"type":44,"tag":70,"props":1711,"children":1713},{"className":1712},[1650],[1714,1717],{"type":44,"tag":1653,"props":1715,"children":1716},{"disabled":1655,"type":1656},[],{"type":50,"value":1718}," All scan Tasks spawned in a single message and completed",{"type":44,"tag":70,"props":1720,"children":1722},{"className":1721},[1650],[1723,1726,1728,1733,1735],{"type":44,"tag":1653,"props":1724,"children":1725},{"disabled":1655,"type":1656},[],{"type":50,"value":1727}," Every ",{"type":44,"tag":80,"props":1729,"children":1731},{"className":1730},[],[1732],{"type":50,"value":4},{"type":50,"value":1734}," command used ",{"type":44,"tag":80,"props":1736,"children":1738},{"className":1737},[],[1739],{"type":50,"value":85},{"type":44,"tag":70,"props":1741,"children":1743},{"className":1742},[1650],[1744,1747,1749],{"type":44,"tag":1653,"props":1745,"children":1746},{"disabled":1655,"type":1656},[],{"type":50,"value":1748}," Approved rulesets logged to ",{"type":44,"tag":80,"props":1750,"children":1752},{"className":1751},[],[1753],{"type":50,"value":1754},"$OUTPUT_DIR\u002Frulesets.txt",{"type":44,"tag":70,"props":1756,"children":1758},{"className":1757},[1650],[1759,1762,1764],{"type":44,"tag":1653,"props":1760,"children":1761},{"disabled":1655,"type":1656},[],{"type":50,"value":1763}," Raw per-scan outputs stored in ",{"type":44,"tag":80,"props":1765,"children":1767},{"className":1766},[],[1768],{"type":50,"value":1769},"$OUTPUT_DIR\u002Fraw\u002F",{"type":44,"tag":70,"props":1771,"children":1773},{"className":1772},[1650],[1774,1777,1779,1785,1787,1793],{"type":44,"tag":1653,"props":1775,"children":1776},{"disabled":1655,"type":1656},[],{"type":50,"value":1778}," ",{"type":44,"tag":80,"props":1780,"children":1782},{"className":1781},[],[1783],{"type":50,"value":1784},"results.sarif",{"type":50,"value":1786}," exists in ",{"type":44,"tag":80,"props":1788,"children":1790},{"className":1789},[],[1791],{"type":50,"value":1792},"$OUTPUT_DIR\u002Fresults\u002F",{"type":50,"value":1794}," and is valid JSON",{"type":44,"tag":70,"props":1796,"children":1798},{"className":1797},[1650],[1799,1802,1804],{"type":44,"tag":1653,"props":1800,"children":1801},{"disabled":1655,"type":1656},[],{"type":50,"value":1803}," Important-only mode: post-filter applied before merge; unfiltered results preserved in ",{"type":44,"tag":80,"props":1805,"children":1807},{"className":1806},[],[1808],{"type":50,"value":1809},"raw\u002F",{"type":44,"tag":70,"props":1811,"children":1813},{"className":1812},[1650],[1814,1817],{"type":44,"tag":1653,"props":1815,"children":1816},{"disabled":1655,"type":1656},[],{"type":50,"value":1818}," Results summary reported with severity and category breakdown",{"type":44,"tag":70,"props":1820,"children":1822},{"className":1821},[1650],[1823,1826,1828],{"type":44,"tag":1653,"props":1824,"children":1825},{"disabled":1655,"type":1656},[],{"type":50,"value":1827}," Cloned repos (if any) cleaned up from ",{"type":44,"tag":80,"props":1829,"children":1831},{"className":1830},[],[1832],{"type":50,"value":1833},"$OUTPUT_DIR\u002Frepos\u002F",{"type":44,"tag":1835,"props":1836,"children":1837},"style",{},[1838],{"type":50,"value":1839},"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":1841,"total":1935},[1842,1859,1869,1885,1900,1913,1925],{"slug":1843,"name":1843,"fn":1844,"description":1845,"org":1846,"tags":1847,"stars":25,"repoUrl":26,"updatedAt":1858},"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},[1848,1851,1854,1855],{"name":1849,"slug":1850,"type":16},"C#","c",{"name":1852,"slug":1853,"type":16},"Debugging","debugging",{"name":14,"slug":15,"type":16},{"name":1856,"slug":1857,"type":16},"Testing","testing","2026-07-17T06:05:14.925095",{"slug":1860,"name":1860,"fn":1861,"description":1862,"org":1863,"tags":1864,"stars":25,"repoUrl":26,"updatedAt":1868},"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},[1865,1866,1867],{"name":1849,"slug":1850,"type":16},{"name":14,"slug":15,"type":16},{"name":1856,"slug":1857,"type":16},"2026-07-17T06:05:12.433192",{"slug":1870,"name":1870,"fn":1871,"description":1872,"org":1873,"tags":1874,"stars":25,"repoUrl":26,"updatedAt":1884},"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},[1875,1876,1879,1880,1883],{"name":1261,"slug":1258,"type":16},{"name":1877,"slug":1878,"type":16},"CI\u002FCD","ci-cd",{"name":23,"slug":24,"type":16},{"name":1881,"slug":1882,"type":16},"GitHub Actions","github-actions",{"name":14,"slug":15,"type":16},"2026-07-18T05:47:48.564744",{"slug":1886,"name":1886,"fn":1887,"description":1888,"org":1889,"tags":1890,"stars":25,"repoUrl":26,"updatedAt":1899},"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},[1891,1894,1895,1896],{"name":1892,"slug":1893,"type":16},"Audit","audit",{"name":23,"slug":24,"type":16},{"name":14,"slug":15,"type":16},{"name":1897,"slug":1898,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":1901,"name":1901,"fn":1902,"description":1903,"org":1904,"tags":1905,"stars":25,"repoUrl":26,"updatedAt":1912},"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},[1906,1909],{"name":1907,"slug":1908,"type":16},"Engineering","engineering",{"name":1910,"slug":1911,"type":16},"Productivity","productivity","2026-07-17T06:05:33.543262",{"slug":1914,"name":1914,"fn":1915,"description":1916,"org":1917,"tags":1918,"stars":25,"repoUrl":26,"updatedAt":1924},"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},[1919,1922,1923],{"name":1920,"slug":1921,"type":16},"Python","python",{"name":14,"slug":15,"type":16},{"name":1856,"slug":1857,"type":16},"2026-07-17T06:05:14.575191",{"slug":1926,"name":1926,"fn":1927,"description":1928,"org":1929,"tags":1930,"stars":25,"repoUrl":26,"updatedAt":1934},"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},[1931,1932,1933],{"name":1892,"slug":1893,"type":16},{"name":23,"slug":24,"type":16},{"name":14,"slug":15,"type":16},"2026-08-01T05:44:54.920542",77,{"items":1937,"total":2041},[1938,1945,1951,1959,1966,1971,1977,1983,1996,2007,2019,2030],{"slug":1843,"name":1843,"fn":1844,"description":1845,"org":1939,"tags":1940,"stars":25,"repoUrl":26,"updatedAt":1858},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1941,1942,1943,1944],{"name":1849,"slug":1850,"type":16},{"name":1852,"slug":1853,"type":16},{"name":14,"slug":15,"type":16},{"name":1856,"slug":1857,"type":16},{"slug":1860,"name":1860,"fn":1861,"description":1862,"org":1946,"tags":1947,"stars":25,"repoUrl":26,"updatedAt":1868},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1948,1949,1950],{"name":1849,"slug":1850,"type":16},{"name":14,"slug":15,"type":16},{"name":1856,"slug":1857,"type":16},{"slug":1870,"name":1870,"fn":1871,"description":1872,"org":1952,"tags":1953,"stars":25,"repoUrl":26,"updatedAt":1884},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1954,1955,1956,1957,1958],{"name":1261,"slug":1258,"type":16},{"name":1877,"slug":1878,"type":16},{"name":23,"slug":24,"type":16},{"name":1881,"slug":1882,"type":16},{"name":14,"slug":15,"type":16},{"slug":1886,"name":1886,"fn":1887,"description":1888,"org":1960,"tags":1961,"stars":25,"repoUrl":26,"updatedAt":1899},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1962,1963,1964,1965],{"name":1892,"slug":1893,"type":16},{"name":23,"slug":24,"type":16},{"name":14,"slug":15,"type":16},{"name":1897,"slug":1898,"type":16},{"slug":1901,"name":1901,"fn":1902,"description":1903,"org":1967,"tags":1968,"stars":25,"repoUrl":26,"updatedAt":1912},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1969,1970],{"name":1907,"slug":1908,"type":16},{"name":1910,"slug":1911,"type":16},{"slug":1914,"name":1914,"fn":1915,"description":1916,"org":1972,"tags":1973,"stars":25,"repoUrl":26,"updatedAt":1924},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1974,1975,1976],{"name":1920,"slug":1921,"type":16},{"name":14,"slug":15,"type":16},{"name":1856,"slug":1857,"type":16},{"slug":1926,"name":1926,"fn":1927,"description":1928,"org":1978,"tags":1979,"stars":25,"repoUrl":26,"updatedAt":1934},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1980,1981,1982],{"name":1892,"slug":1893,"type":16},{"name":23,"slug":24,"type":16},{"name":14,"slug":15,"type":16},{"slug":1984,"name":1984,"fn":1985,"description":1986,"org":1987,"tags":1988,"stars":25,"repoUrl":26,"updatedAt":1995},"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},[1989,1992,1993,1994],{"name":1990,"slug":1991,"type":16},"Architecture","architecture",{"name":1892,"slug":1893,"type":16},{"name":23,"slug":24,"type":16},{"name":1907,"slug":1908,"type":16},"2026-07-18T05:47:40.122449",{"slug":1997,"name":1997,"fn":1998,"description":1999,"org":2000,"tags":2001,"stars":25,"repoUrl":26,"updatedAt":2006},"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},[2002,2003,2004,2005],{"name":1892,"slug":1893,"type":16},{"name":23,"slug":24,"type":16},{"name":1907,"slug":1908,"type":16},{"name":14,"slug":15,"type":16},"2026-07-18T05:47:39.210985",{"slug":2008,"name":2008,"fn":2009,"description":2010,"org":2011,"tags":2012,"stars":25,"repoUrl":26,"updatedAt":2018},"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},[2013,2014,2017],{"name":1892,"slug":1893,"type":16},{"name":2015,"slug":2016,"type":16},"CLI","cli",{"name":14,"slug":15,"type":16},"2026-07-17T06:05:33.198077",{"slug":2020,"name":2020,"fn":2021,"description":2022,"org":2023,"tags":2024,"stars":25,"repoUrl":26,"updatedAt":2029},"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},[2025,2026,2027,2028],{"name":1892,"slug":1893,"type":16},{"name":1849,"slug":1850,"type":16},{"name":23,"slug":24,"type":16},{"name":14,"slug":15,"type":16},"2026-07-17T06:05:11.333374",{"slug":2031,"name":2031,"fn":2032,"description":2033,"org":2034,"tags":2035,"stars":25,"repoUrl":26,"updatedAt":2040},"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},[2036,2037,2038,2039],{"name":1892,"slug":1893,"type":16},{"name":23,"slug":24,"type":16},{"name":14,"slug":15,"type":16},{"name":1897,"slug":1898,"type":16},"2026-07-18T05:47:42.84568",111]