[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-trailmark-summary":3,"mdc-9y905t-key":32,"related-repo-trail-of-bits-trailmark-summary":811,"related-org-trail-of-bits-trailmark-summary":911},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":27,"sourceUrl":30,"mdContent":31},"trailmark-summary","generate structural codebase summaries","Runs a Trailmark summary analysis on a codebase. Returns auto-detected languages, entry point count, and dependency list. Use when vivisect or galvanize needs a quick structural overview. Triggers: trailmark summary, code summary, structural overview.",{"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],{"name":14,"slug":15,"type":16},"Documentation","documentation","tag",{"name":18,"slug":19,"type":16},"Code Analysis","code-analysis",6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-08-01T05:44:49.91792",null,541,[26],"agent-skills",{"repoUrl":21,"stars":20,"forks":24,"topics":28,"description":29},[26],"Trail of Bits Claude Code skills for security research, vulnerability detection, and audit workflows","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Ftrailmark\u002Fskills\u002Ftrailmark-summary","---\nname: trailmark-summary\ndescription: \"Runs a Trailmark summary analysis on a codebase. Returns auto-detected languages, entry point count, and dependency list. Use when vivisect or galvanize needs a quick structural overview. Triggers: trailmark summary, code summary, structural overview.\"\nallowed-tools: Bash Read Grep Glob\n---\n\n# Trailmark Summary\n\nRuns `trailmark analyze --language auto --summary` on a target directory.\nThis is a v0.2-safe workflow; do not require Trailmark 0.4.0 just to produce a\nsummary.\n\n## When to Use\n\n- Vivisect Phase 0 needs a quick structural overview before decomposition\n- Galvanize Phase 1 needs detected languages and entry point count\n- Quick orientation on an unfamiliar codebase before deeper analysis\n\n## When NOT to Use\n\n- Full structural analysis with all passes needed (use `trailmark-structural`)\n- Detailed code graph queries (use the main `trailmark` skill directly)\n- You need hotspot scores or taint data (use `trailmark-structural`)\n\n## Rationalizations to Reject\n\n| Rationalization | Why It's Wrong | Required Action |\n|-----------------|----------------|-----------------|\n| \"I can read the code manually instead\" | Manual reading misses parser-based language detection, dependency data, and entry point enumeration | Install and run trailmark |\n| \"Language detection doesn't matter\" | Wrong language selection produces empty or partial analysis | Use Trailmark's parser-based detection or `--language auto` |\n| \"Partial output is good enough\" | Missing any of the three required outputs (detected languages, entry points, dependencies) means incomplete analysis | Verify all three are present |\n| \"Tool isn't installed, I'll skip it\" | This skill exists specifically to run trailmark | Report the installation gap instead of skipping |\n\n## Usage\n\nThe target directory is passed via the `args` parameter.\n\n## Execution\n\n**Step 1: Check that trailmark is available.**\n\n```bash\ntrailmark analyze --help 2>\u002Fdev\u002Fnull || \\\n  uv run trailmark analyze --help 2>\u002Fdev\u002Fnull\n```\n\nIf neither command works, report \"trailmark is not installed\"\nand return. Do NOT run `pip install`, `uv pip install`,\n`git clone`, or any install command. The user must install\ntrailmark themselves.\n\nOptionally record the version if the installed build supports it:\n\n```bash\ntrailmark --version 2>\u002Fdev\u002Fnull || uv run trailmark --version 2>\u002Fdev\u002Fnull || true\n```\n\nDo not fail if the version command is missing; older v0.2.x builds may still\nsupport the summary workflow.\n\n**Step 2: Detect languages with Trailmark's parse API.**\n\n```bash\npython3 - \"{args}\" \u003C\u003C'PY'\nimport json\nimport sys\n\ntry:\n    from trailmark.parse import detect_languages  # canonical location since 0.3.x\nexcept ModuleNotFoundError:\n    # v0.2.x predates trailmark.parse; the same function lives in query.api\n    from trailmark.query.api import detect_languages\n\nprint(json.dumps(detect_languages(sys.argv[1])))\nPY\n```\n\nIf the import fails, rerun the same snippet with `uv run python - \"{args}\"`.\nIf the result is `[]`, report \"Trailmark found no supported languages under\ntarget\" and return.\n\n**Step 3: Run the summary with auto-detection.**\n\n```bash\ntrailmark analyze --language auto --summary {args} 2>&1 || \\\n  uv run trailmark analyze --language auto --summary {args} 2>&1\n```\n\n**Step 4: Verify the output.**\n\nThe output must include ALL THREE of:\n1. Detected languages from Step 2\n2. `Entrypoints:` line from the summary output\n3. `Dependencies:` line from the summary output\n\nIf any are missing, report the gap. Do not fabricate output.\n\nReturn the detected language list plus the full Trailmark summary output.\nIf a version string was available, include it in the returned metadata.\n",{"data":33,"body":35},{"name":4,"description":6,"allowed-tools":34},"Bash Read Grep Glob",{"type":36,"children":37},"root",[38,46,61,68,88,94,134,140,251,257,270,276,285,376,405,410,476,481,489,632,653,661,752,760,765,795,800,805],{"type":39,"tag":40,"props":41,"children":42},"element","h1",{"id":4},[43],{"type":44,"value":45},"text","Trailmark Summary",{"type":39,"tag":47,"props":48,"children":49},"p",{},[50,52,59],{"type":44,"value":51},"Runs ",{"type":39,"tag":53,"props":54,"children":56},"code",{"className":55},[],[57],{"type":44,"value":58},"trailmark analyze --language auto --summary",{"type":44,"value":60}," on a target directory.\nThis is a v0.2-safe workflow; do not require Trailmark 0.4.0 just to produce a\nsummary.",{"type":39,"tag":62,"props":63,"children":65},"h2",{"id":64},"when-to-use",[66],{"type":44,"value":67},"When to Use",{"type":39,"tag":69,"props":70,"children":71},"ul",{},[72,78,83],{"type":39,"tag":73,"props":74,"children":75},"li",{},[76],{"type":44,"value":77},"Vivisect Phase 0 needs a quick structural overview before decomposition",{"type":39,"tag":73,"props":79,"children":80},{},[81],{"type":44,"value":82},"Galvanize Phase 1 needs detected languages and entry point count",{"type":39,"tag":73,"props":84,"children":85},{},[86],{"type":44,"value":87},"Quick orientation on an unfamiliar codebase before deeper analysis",{"type":39,"tag":62,"props":89,"children":91},{"id":90},"when-not-to-use",[92],{"type":44,"value":93},"When NOT to Use",{"type":39,"tag":69,"props":95,"children":96},{},[97,110,123],{"type":39,"tag":73,"props":98,"children":99},{},[100,102,108],{"type":44,"value":101},"Full structural analysis with all passes needed (use ",{"type":39,"tag":53,"props":103,"children":105},{"className":104},[],[106],{"type":44,"value":107},"trailmark-structural",{"type":44,"value":109},")",{"type":39,"tag":73,"props":111,"children":112},{},[113,115,121],{"type":44,"value":114},"Detailed code graph queries (use the main ",{"type":39,"tag":53,"props":116,"children":118},{"className":117},[],[119],{"type":44,"value":120},"trailmark",{"type":44,"value":122}," skill directly)",{"type":39,"tag":73,"props":124,"children":125},{},[126,128,133],{"type":44,"value":127},"You need hotspot scores or taint data (use ",{"type":39,"tag":53,"props":129,"children":131},{"className":130},[],[132],{"type":44,"value":107},{"type":44,"value":109},{"type":39,"tag":62,"props":135,"children":137},{"id":136},"rationalizations-to-reject",[138],{"type":44,"value":139},"Rationalizations to Reject",{"type":39,"tag":141,"props":142,"children":143},"table",{},[144,168],{"type":39,"tag":145,"props":146,"children":147},"thead",{},[148],{"type":39,"tag":149,"props":150,"children":151},"tr",{},[152,158,163],{"type":39,"tag":153,"props":154,"children":155},"th",{},[156],{"type":44,"value":157},"Rationalization",{"type":39,"tag":153,"props":159,"children":160},{},[161],{"type":44,"value":162},"Why It's Wrong",{"type":39,"tag":153,"props":164,"children":165},{},[166],{"type":44,"value":167},"Required Action",{"type":39,"tag":169,"props":170,"children":171},"tbody",{},[172,191,215,233],{"type":39,"tag":149,"props":173,"children":174},{},[175,181,186],{"type":39,"tag":176,"props":177,"children":178},"td",{},[179],{"type":44,"value":180},"\"I can read the code manually instead\"",{"type":39,"tag":176,"props":182,"children":183},{},[184],{"type":44,"value":185},"Manual reading misses parser-based language detection, dependency data, and entry point enumeration",{"type":39,"tag":176,"props":187,"children":188},{},[189],{"type":44,"value":190},"Install and run trailmark",{"type":39,"tag":149,"props":192,"children":193},{},[194,199,204],{"type":39,"tag":176,"props":195,"children":196},{},[197],{"type":44,"value":198},"\"Language detection doesn't matter\"",{"type":39,"tag":176,"props":200,"children":201},{},[202],{"type":44,"value":203},"Wrong language selection produces empty or partial analysis",{"type":39,"tag":176,"props":205,"children":206},{},[207,209],{"type":44,"value":208},"Use Trailmark's parser-based detection or ",{"type":39,"tag":53,"props":210,"children":212},{"className":211},[],[213],{"type":44,"value":214},"--language auto",{"type":39,"tag":149,"props":216,"children":217},{},[218,223,228],{"type":39,"tag":176,"props":219,"children":220},{},[221],{"type":44,"value":222},"\"Partial output is good enough\"",{"type":39,"tag":176,"props":224,"children":225},{},[226],{"type":44,"value":227},"Missing any of the three required outputs (detected languages, entry points, dependencies) means incomplete analysis",{"type":39,"tag":176,"props":229,"children":230},{},[231],{"type":44,"value":232},"Verify all three are present",{"type":39,"tag":149,"props":234,"children":235},{},[236,241,246],{"type":39,"tag":176,"props":237,"children":238},{},[239],{"type":44,"value":240},"\"Tool isn't installed, I'll skip it\"",{"type":39,"tag":176,"props":242,"children":243},{},[244],{"type":44,"value":245},"This skill exists specifically to run trailmark",{"type":39,"tag":176,"props":247,"children":248},{},[249],{"type":44,"value":250},"Report the installation gap instead of skipping",{"type":39,"tag":62,"props":252,"children":254},{"id":253},"usage",[255],{"type":44,"value":256},"Usage",{"type":39,"tag":47,"props":258,"children":259},{},[260,262,268],{"type":44,"value":261},"The target directory is passed via the ",{"type":39,"tag":53,"props":263,"children":265},{"className":264},[],[266],{"type":44,"value":267},"args",{"type":44,"value":269}," parameter.",{"type":39,"tag":62,"props":271,"children":273},{"id":272},"execution",[274],{"type":44,"value":275},"Execution",{"type":39,"tag":47,"props":277,"children":278},{},[279],{"type":39,"tag":280,"props":281,"children":282},"strong",{},[283],{"type":44,"value":284},"Step 1: Check that trailmark is available.",{"type":39,"tag":286,"props":287,"children":292},"pre",{"className":288,"code":289,"language":290,"meta":291,"style":291},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","trailmark analyze --help 2>\u002Fdev\u002Fnull || \\\n  uv run trailmark analyze --help 2>\u002Fdev\u002Fnull\n","bash","",[293],{"type":39,"tag":53,"props":294,"children":295},{"__ignoreMap":291},[296,340],{"type":39,"tag":297,"props":298,"children":301},"span",{"class":299,"line":300},"line",1,[302,307,313,318,324,329,334],{"type":39,"tag":297,"props":303,"children":305},{"style":304},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[306],{"type":44,"value":120},{"type":39,"tag":297,"props":308,"children":310},{"style":309},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[311],{"type":44,"value":312}," analyze",{"type":39,"tag":297,"props":314,"children":315},{"style":309},[316],{"type":44,"value":317}," --help",{"type":39,"tag":297,"props":319,"children":321},{"style":320},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[322],{"type":44,"value":323}," 2>",{"type":39,"tag":297,"props":325,"children":326},{"style":309},[327],{"type":44,"value":328},"\u002Fdev\u002Fnull",{"type":39,"tag":297,"props":330,"children":331},{"style":320},[332],{"type":44,"value":333}," ||",{"type":39,"tag":297,"props":335,"children":337},{"style":336},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[338],{"type":44,"value":339}," \\\n",{"type":39,"tag":297,"props":341,"children":343},{"class":299,"line":342},2,[344,349,354,359,363,367,371],{"type":39,"tag":297,"props":345,"children":346},{"style":304},[347],{"type":44,"value":348},"  uv",{"type":39,"tag":297,"props":350,"children":351},{"style":309},[352],{"type":44,"value":353}," run",{"type":39,"tag":297,"props":355,"children":356},{"style":309},[357],{"type":44,"value":358}," trailmark",{"type":39,"tag":297,"props":360,"children":361},{"style":309},[362],{"type":44,"value":312},{"type":39,"tag":297,"props":364,"children":365},{"style":309},[366],{"type":44,"value":317},{"type":39,"tag":297,"props":368,"children":369},{"style":320},[370],{"type":44,"value":323},{"type":39,"tag":297,"props":372,"children":373},{"style":309},[374],{"type":44,"value":375},"\u002Fdev\u002Fnull\n",{"type":39,"tag":47,"props":377,"children":378},{},[379,381,387,389,395,397,403],{"type":44,"value":380},"If neither command works, report \"trailmark is not installed\"\nand return. Do NOT run ",{"type":39,"tag":53,"props":382,"children":384},{"className":383},[],[385],{"type":44,"value":386},"pip install",{"type":44,"value":388},", ",{"type":39,"tag":53,"props":390,"children":392},{"className":391},[],[393],{"type":44,"value":394},"uv pip install",{"type":44,"value":396},",\n",{"type":39,"tag":53,"props":398,"children":400},{"className":399},[],[401],{"type":44,"value":402},"git clone",{"type":44,"value":404},", or any install command. The user must install\ntrailmark themselves.",{"type":39,"tag":47,"props":406,"children":407},{},[408],{"type":44,"value":409},"Optionally record the version if the installed build supports it:",{"type":39,"tag":286,"props":411,"children":413},{"className":288,"code":412,"language":290,"meta":291,"style":291},"trailmark --version 2>\u002Fdev\u002Fnull || uv run trailmark --version 2>\u002Fdev\u002Fnull || true\n",[414],{"type":39,"tag":53,"props":415,"children":416},{"__ignoreMap":291},[417],{"type":39,"tag":297,"props":418,"children":419},{"class":299,"line":300},[420,424,429,433,437,441,446,450,454,458,462,466,470],{"type":39,"tag":297,"props":421,"children":422},{"style":304},[423],{"type":44,"value":120},{"type":39,"tag":297,"props":425,"children":426},{"style":309},[427],{"type":44,"value":428}," --version",{"type":39,"tag":297,"props":430,"children":431},{"style":320},[432],{"type":44,"value":323},{"type":39,"tag":297,"props":434,"children":435},{"style":309},[436],{"type":44,"value":328},{"type":39,"tag":297,"props":438,"children":439},{"style":320},[440],{"type":44,"value":333},{"type":39,"tag":297,"props":442,"children":443},{"style":304},[444],{"type":44,"value":445}," uv",{"type":39,"tag":297,"props":447,"children":448},{"style":309},[449],{"type":44,"value":353},{"type":39,"tag":297,"props":451,"children":452},{"style":309},[453],{"type":44,"value":358},{"type":39,"tag":297,"props":455,"children":456},{"style":309},[457],{"type":44,"value":428},{"type":39,"tag":297,"props":459,"children":460},{"style":320},[461],{"type":44,"value":323},{"type":39,"tag":297,"props":463,"children":464},{"style":309},[465],{"type":44,"value":328},{"type":39,"tag":297,"props":467,"children":468},{"style":320},[469],{"type":44,"value":333},{"type":39,"tag":297,"props":471,"children":473},{"style":472},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[474],{"type":44,"value":475}," true\n",{"type":39,"tag":47,"props":477,"children":478},{},[479],{"type":44,"value":480},"Do not fail if the version command is missing; older v0.2.x builds may still\nsupport the summary workflow.",{"type":39,"tag":47,"props":482,"children":483},{},[484],{"type":39,"tag":280,"props":485,"children":486},{},[487],{"type":44,"value":488},"Step 2: Detect languages with Trailmark's parse API.",{"type":39,"tag":286,"props":490,"children":492},{"className":288,"code":491,"language":290,"meta":291,"style":291},"python3 - \"{args}\" \u003C\u003C'PY'\nimport json\nimport sys\n\ntry:\n    from trailmark.parse import detect_languages  # canonical location since 0.3.x\nexcept ModuleNotFoundError:\n    # v0.2.x predates trailmark.parse; the same function lives in query.api\n    from trailmark.query.api import detect_languages\n\nprint(json.dumps(detect_languages(sys.argv[1])))\nPY\n",[493],{"type":39,"tag":53,"props":494,"children":495},{"__ignoreMap":291},[496,534,542,551,561,570,579,588,597,606,614,623],{"type":39,"tag":297,"props":497,"children":498},{"class":299,"line":300},[499,504,509,514,519,524,529],{"type":39,"tag":297,"props":500,"children":501},{"style":304},[502],{"type":44,"value":503},"python3",{"type":39,"tag":297,"props":505,"children":506},{"style":309},[507],{"type":44,"value":508}," -",{"type":39,"tag":297,"props":510,"children":511},{"style":320},[512],{"type":44,"value":513}," \"",{"type":39,"tag":297,"props":515,"children":516},{"style":309},[517],{"type":44,"value":518},"{args}",{"type":39,"tag":297,"props":520,"children":521},{"style":320},[522],{"type":44,"value":523},"\"",{"type":39,"tag":297,"props":525,"children":526},{"style":320},[527],{"type":44,"value":528}," \u003C\u003C",{"type":39,"tag":297,"props":530,"children":531},{"style":320},[532],{"type":44,"value":533},"'PY'\n",{"type":39,"tag":297,"props":535,"children":536},{"class":299,"line":342},[537],{"type":39,"tag":297,"props":538,"children":539},{"style":309},[540],{"type":44,"value":541},"import json\n",{"type":39,"tag":297,"props":543,"children":545},{"class":299,"line":544},3,[546],{"type":39,"tag":297,"props":547,"children":548},{"style":309},[549],{"type":44,"value":550},"import sys\n",{"type":39,"tag":297,"props":552,"children":554},{"class":299,"line":553},4,[555],{"type":39,"tag":297,"props":556,"children":558},{"emptyLinePlaceholder":557},true,[559],{"type":44,"value":560},"\n",{"type":39,"tag":297,"props":562,"children":564},{"class":299,"line":563},5,[565],{"type":39,"tag":297,"props":566,"children":567},{"style":309},[568],{"type":44,"value":569},"try:\n",{"type":39,"tag":297,"props":571,"children":573},{"class":299,"line":572},6,[574],{"type":39,"tag":297,"props":575,"children":576},{"style":309},[577],{"type":44,"value":578},"    from trailmark.parse import detect_languages  # canonical location since 0.3.x\n",{"type":39,"tag":297,"props":580,"children":582},{"class":299,"line":581},7,[583],{"type":39,"tag":297,"props":584,"children":585},{"style":309},[586],{"type":44,"value":587},"except ModuleNotFoundError:\n",{"type":39,"tag":297,"props":589,"children":591},{"class":299,"line":590},8,[592],{"type":39,"tag":297,"props":593,"children":594},{"style":309},[595],{"type":44,"value":596},"    # v0.2.x predates trailmark.parse; the same function lives in query.api\n",{"type":39,"tag":297,"props":598,"children":600},{"class":299,"line":599},9,[601],{"type":39,"tag":297,"props":602,"children":603},{"style":309},[604],{"type":44,"value":605},"    from trailmark.query.api import detect_languages\n",{"type":39,"tag":297,"props":607,"children":609},{"class":299,"line":608},10,[610],{"type":39,"tag":297,"props":611,"children":612},{"emptyLinePlaceholder":557},[613],{"type":44,"value":560},{"type":39,"tag":297,"props":615,"children":617},{"class":299,"line":616},11,[618],{"type":39,"tag":297,"props":619,"children":620},{"style":309},[621],{"type":44,"value":622},"print(json.dumps(detect_languages(sys.argv[1])))\n",{"type":39,"tag":297,"props":624,"children":626},{"class":299,"line":625},12,[627],{"type":39,"tag":297,"props":628,"children":629},{"style":320},[630],{"type":44,"value":631},"PY\n",{"type":39,"tag":47,"props":633,"children":634},{},[635,637,643,645,651],{"type":44,"value":636},"If the import fails, rerun the same snippet with ",{"type":39,"tag":53,"props":638,"children":640},{"className":639},[],[641],{"type":44,"value":642},"uv run python - \"{args}\"",{"type":44,"value":644},".\nIf the result is ",{"type":39,"tag":53,"props":646,"children":648},{"className":647},[],[649],{"type":44,"value":650},"[]",{"type":44,"value":652},", report \"Trailmark found no supported languages under\ntarget\" and return.",{"type":39,"tag":47,"props":654,"children":655},{},[656],{"type":39,"tag":280,"props":657,"children":658},{},[659],{"type":44,"value":660},"Step 3: Run the summary with auto-detection.",{"type":39,"tag":286,"props":662,"children":664},{"className":288,"code":663,"language":290,"meta":291,"style":291},"trailmark analyze --language auto --summary {args} 2>&1 || \\\n  uv run trailmark analyze --language auto --summary {args} 2>&1\n",[665],{"type":39,"tag":53,"props":666,"children":667},{"__ignoreMap":291},[668,712],{"type":39,"tag":297,"props":669,"children":670},{"class":299,"line":300},[671,675,679,684,689,694,699,704,708],{"type":39,"tag":297,"props":672,"children":673},{"style":304},[674],{"type":44,"value":120},{"type":39,"tag":297,"props":676,"children":677},{"style":309},[678],{"type":44,"value":312},{"type":39,"tag":297,"props":680,"children":681},{"style":309},[682],{"type":44,"value":683}," --language",{"type":39,"tag":297,"props":685,"children":686},{"style":309},[687],{"type":44,"value":688}," auto",{"type":39,"tag":297,"props":690,"children":691},{"style":309},[692],{"type":44,"value":693}," --summary",{"type":39,"tag":297,"props":695,"children":696},{"style":309},[697],{"type":44,"value":698}," {args}",{"type":39,"tag":297,"props":700,"children":701},{"style":320},[702],{"type":44,"value":703}," 2>&1",{"type":39,"tag":297,"props":705,"children":706},{"style":320},[707],{"type":44,"value":333},{"type":39,"tag":297,"props":709,"children":710},{"style":336},[711],{"type":44,"value":339},{"type":39,"tag":297,"props":713,"children":714},{"class":299,"line":342},[715,719,723,727,731,735,739,743,747],{"type":39,"tag":297,"props":716,"children":717},{"style":304},[718],{"type":44,"value":348},{"type":39,"tag":297,"props":720,"children":721},{"style":309},[722],{"type":44,"value":353},{"type":39,"tag":297,"props":724,"children":725},{"style":309},[726],{"type":44,"value":358},{"type":39,"tag":297,"props":728,"children":729},{"style":309},[730],{"type":44,"value":312},{"type":39,"tag":297,"props":732,"children":733},{"style":309},[734],{"type":44,"value":683},{"type":39,"tag":297,"props":736,"children":737},{"style":309},[738],{"type":44,"value":688},{"type":39,"tag":297,"props":740,"children":741},{"style":309},[742],{"type":44,"value":693},{"type":39,"tag":297,"props":744,"children":745},{"style":309},[746],{"type":44,"value":698},{"type":39,"tag":297,"props":748,"children":749},{"style":320},[750],{"type":44,"value":751}," 2>&1\n",{"type":39,"tag":47,"props":753,"children":754},{},[755],{"type":39,"tag":280,"props":756,"children":757},{},[758],{"type":44,"value":759},"Step 4: Verify the output.",{"type":39,"tag":47,"props":761,"children":762},{},[763],{"type":44,"value":764},"The output must include ALL THREE of:",{"type":39,"tag":766,"props":767,"children":768},"ol",{},[769,774,785],{"type":39,"tag":73,"props":770,"children":771},{},[772],{"type":44,"value":773},"Detected languages from Step 2",{"type":39,"tag":73,"props":775,"children":776},{},[777,783],{"type":39,"tag":53,"props":778,"children":780},{"className":779},[],[781],{"type":44,"value":782},"Entrypoints:",{"type":44,"value":784}," line from the summary output",{"type":39,"tag":73,"props":786,"children":787},{},[788,794],{"type":39,"tag":53,"props":789,"children":791},{"className":790},[],[792],{"type":44,"value":793},"Dependencies:",{"type":44,"value":784},{"type":39,"tag":47,"props":796,"children":797},{},[798],{"type":44,"value":799},"If any are missing, report the gap. Do not fabricate output.",{"type":39,"tag":47,"props":801,"children":802},{},[803],{"type":44,"value":804},"Return the detected language list plus the full Trailmark summary output.\nIf a version string was available, include it in the returned metadata.",{"type":39,"tag":806,"props":807,"children":808},"style",{},[809],{"type":44,"value":810},"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":812,"total":910},[813,832,842,860,875,888,900],{"slug":814,"name":814,"fn":815,"description":816,"org":817,"tags":818,"stars":20,"repoUrl":21,"updatedAt":831},"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},[819,822,825,828],{"name":820,"slug":821,"type":16},"C#","c",{"name":823,"slug":824,"type":16},"Debugging","debugging",{"name":826,"slug":827,"type":16},"Security","security",{"name":829,"slug":830,"type":16},"Testing","testing","2026-07-17T06:05:14.925095",{"slug":833,"name":833,"fn":834,"description":835,"org":836,"tags":837,"stars":20,"repoUrl":21,"updatedAt":841},"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},[838,839,840],{"name":820,"slug":821,"type":16},{"name":826,"slug":827,"type":16},{"name":829,"slug":830,"type":16},"2026-07-17T06:05:12.433192",{"slug":843,"name":843,"fn":844,"description":845,"org":846,"tags":847,"stars":20,"repoUrl":21,"updatedAt":859},"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},[848,851,854,855,858],{"name":849,"slug":850,"type":16},"Agents","agents",{"name":852,"slug":853,"type":16},"CI\u002FCD","ci-cd",{"name":18,"slug":19,"type":16},{"name":856,"slug":857,"type":16},"GitHub Actions","github-actions",{"name":826,"slug":827,"type":16},"2026-07-18T05:47:48.564744",{"slug":861,"name":861,"fn":862,"description":863,"org":864,"tags":865,"stars":20,"repoUrl":21,"updatedAt":874},"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},[866,869,870,871],{"name":867,"slug":868,"type":16},"Audit","audit",{"name":18,"slug":19,"type":16},{"name":826,"slug":827,"type":16},{"name":872,"slug":873,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":876,"name":876,"fn":877,"description":878,"org":879,"tags":880,"stars":20,"repoUrl":21,"updatedAt":887},"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},[881,884],{"name":882,"slug":883,"type":16},"Engineering","engineering",{"name":885,"slug":886,"type":16},"Productivity","productivity","2026-07-17T06:05:33.543262",{"slug":889,"name":889,"fn":890,"description":891,"org":892,"tags":893,"stars":20,"repoUrl":21,"updatedAt":899},"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},[894,897,898],{"name":895,"slug":896,"type":16},"Python","python",{"name":826,"slug":827,"type":16},{"name":829,"slug":830,"type":16},"2026-07-17T06:05:14.575191",{"slug":901,"name":901,"fn":902,"description":903,"org":904,"tags":905,"stars":20,"repoUrl":21,"updatedAt":909},"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},[906,907,908],{"name":867,"slug":868,"type":16},{"name":18,"slug":19,"type":16},{"name":826,"slug":827,"type":16},"2026-08-01T05:44:54.920542",77,{"items":912,"total":1016},[913,920,926,934,941,946,952,958,971,982,994,1005],{"slug":814,"name":814,"fn":815,"description":816,"org":914,"tags":915,"stars":20,"repoUrl":21,"updatedAt":831},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[916,917,918,919],{"name":820,"slug":821,"type":16},{"name":823,"slug":824,"type":16},{"name":826,"slug":827,"type":16},{"name":829,"slug":830,"type":16},{"slug":833,"name":833,"fn":834,"description":835,"org":921,"tags":922,"stars":20,"repoUrl":21,"updatedAt":841},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[923,924,925],{"name":820,"slug":821,"type":16},{"name":826,"slug":827,"type":16},{"name":829,"slug":830,"type":16},{"slug":843,"name":843,"fn":844,"description":845,"org":927,"tags":928,"stars":20,"repoUrl":21,"updatedAt":859},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[929,930,931,932,933],{"name":849,"slug":850,"type":16},{"name":852,"slug":853,"type":16},{"name":18,"slug":19,"type":16},{"name":856,"slug":857,"type":16},{"name":826,"slug":827,"type":16},{"slug":861,"name":861,"fn":862,"description":863,"org":935,"tags":936,"stars":20,"repoUrl":21,"updatedAt":874},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[937,938,939,940],{"name":867,"slug":868,"type":16},{"name":18,"slug":19,"type":16},{"name":826,"slug":827,"type":16},{"name":872,"slug":873,"type":16},{"slug":876,"name":876,"fn":877,"description":878,"org":942,"tags":943,"stars":20,"repoUrl":21,"updatedAt":887},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[944,945],{"name":882,"slug":883,"type":16},{"name":885,"slug":886,"type":16},{"slug":889,"name":889,"fn":890,"description":891,"org":947,"tags":948,"stars":20,"repoUrl":21,"updatedAt":899},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[949,950,951],{"name":895,"slug":896,"type":16},{"name":826,"slug":827,"type":16},{"name":829,"slug":830,"type":16},{"slug":901,"name":901,"fn":902,"description":903,"org":953,"tags":954,"stars":20,"repoUrl":21,"updatedAt":909},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[955,956,957],{"name":867,"slug":868,"type":16},{"name":18,"slug":19,"type":16},{"name":826,"slug":827,"type":16},{"slug":959,"name":959,"fn":960,"description":961,"org":962,"tags":963,"stars":20,"repoUrl":21,"updatedAt":970},"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},[964,967,968,969],{"name":965,"slug":966,"type":16},"Architecture","architecture",{"name":867,"slug":868,"type":16},{"name":18,"slug":19,"type":16},{"name":882,"slug":883,"type":16},"2026-07-18T05:47:40.122449",{"slug":972,"name":972,"fn":973,"description":974,"org":975,"tags":976,"stars":20,"repoUrl":21,"updatedAt":981},"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},[977,978,979,980],{"name":867,"slug":868,"type":16},{"name":18,"slug":19,"type":16},{"name":882,"slug":883,"type":16},{"name":826,"slug":827,"type":16},"2026-07-18T05:47:39.210985",{"slug":983,"name":983,"fn":984,"description":985,"org":986,"tags":987,"stars":20,"repoUrl":21,"updatedAt":993},"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},[988,989,992],{"name":867,"slug":868,"type":16},{"name":990,"slug":991,"type":16},"CLI","cli",{"name":826,"slug":827,"type":16},"2026-07-17T06:05:33.198077",{"slug":995,"name":995,"fn":996,"description":997,"org":998,"tags":999,"stars":20,"repoUrl":21,"updatedAt":1004},"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},[1000,1001,1002,1003],{"name":867,"slug":868,"type":16},{"name":820,"slug":821,"type":16},{"name":18,"slug":19,"type":16},{"name":826,"slug":827,"type":16},"2026-07-17T06:05:11.333374",{"slug":1006,"name":1006,"fn":1007,"description":1008,"org":1009,"tags":1010,"stars":20,"repoUrl":21,"updatedAt":1015},"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},[1011,1012,1013,1014],{"name":867,"slug":868,"type":16},{"name":18,"slug":19,"type":16},{"name":826,"slug":827,"type":16},{"name":872,"slug":873,"type":16},"2026-07-18T05:47:42.84568",111]