[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"extension-plugin-trailofbits-gh-cli-en":3,"guides-for-trailofbits-gh-cli":2005,"similar-k17a5b67fegq89wf90v6r11hcs86n04y-en":2006},{"_creationTime":4,"_id":5,"children":6,"community":7,"display":9,"evaluation":14,"identity":256,"isFallback":251,"parentExtension":261,"providers":293,"relations":297,"repo":298,"tags":2003,"workflow":2004},1778698175626.312,"k17a5b67fegq89wf90v6r11hcs86n04y",[],{"reviewCount":8},0,{"description":10,"installMethods":11,"name":12,"sourceUrl":13},"Intercepts GitHub URL fetches and curl/wget commands, redirecting to the authenticated gh CLI.",{"claudeCode":12},"gh-cli","https://github.com/trailofbits/skills",{"_creationTime":15,"_id":16,"extensionId":5,"locale":17,"result":18,"trustSignals":236,"workflow":254},1778698400404.7556,"kn7cedbs3dfq7ydr9e6y08gmr586msrh","en",{"checks":19,"evaluatedAt":205,"extensionSummary":206,"features":207,"nonGoals":213,"promptVersionExtension":217,"promptVersionScoring":218,"purpose":219,"rationale":220,"score":221,"summary":222,"tags":223,"targetMarket":229,"tier":230,"useCases":231},[20,25,28,31,35,38,42,46,49,52,56,60,64,68,71,74,77,80,83,86,90,94,99,103,107,110,113,116,120,123,126,129,132,135,138,142,146,150,153,157,160,163,166,169,172,175,178,181,184,187,191,194,197,201],{"category":21,"check":22,"severity":23,"summary":24},"Practical Utility","Problem relevance","pass","The description clearly articulates the problem of unauthenticated GitHub fetches failing due to rate limits and lack of access to private repos.",{"category":21,"check":26,"severity":23,"summary":27},"Unique selling proposition","The plugin offers a significant value by ensuring authenticated access to GitHub resources via the gh CLI, going beyond basic web fetching capabilities.",{"category":21,"check":29,"severity":23,"summary":30},"Production readiness","The plugin is production-ready, providing hooks for intercepting fetches, a shim for gh CLI anti-patterns, and automatic cleanup of cloned repos, covering the full lifecycle.",{"category":32,"check":33,"severity":23,"summary":34},"Scope","Single responsibility principle","The plugin focuses on a single domain: intercepting and managing GitHub interactions to leverage the authenticated gh CLI.",{"category":32,"check":36,"severity":23,"summary":37},"Description quality","The displayed description accurately and concisely reflects the plugin's functionality of intercepting GitHub URL fetches and redirecting them to the authenticated gh CLI.",{"category":39,"check":40,"severity":23,"summary":41},"Invocation","Scoped tools","The hooks are tightly scoped to specific tool names (WebFetch, Bash) and URL patterns, preventing arbitrary command execution.",{"category":43,"check":44,"severity":23,"summary":45},"Documentation","Configuration & parameter reference","The README details prerequisites, including the need for the gh CLI and authentication, and explains what gets intercepted and passes through.",{"category":32,"check":47,"severity":23,"summary":48},"Tool naming","The plugin's functionality is described through hooks and shims rather than exposed tools, with clear naming conventions in the scripts.",{"category":32,"check":50,"severity":23,"summary":51},"Minimal I/O surface","The hooks process specific URL patterns and commands, and the output is structured JSON for the agent.",{"category":53,"check":54,"severity":23,"summary":55},"License","License usability","The plugin is licensed under CC-BY-SA-4.0, a permissive open-source license, clearly indicated in the LICENSE file.",{"category":57,"check":58,"severity":23,"summary":59},"Maintenance","Commit recency","The last commit was on May 11, 2026, which is recent.",{"category":57,"check":61,"severity":62,"summary":63},"Dependency Management","not_applicable","The plugin does not appear to use third-party dependencies beyond the gh CLI itself, which is a prerequisite.",{"category":65,"check":66,"severity":23,"summary":67},"Security","Secret Management","The plugin relies on the authenticated gh CLI, which handles secrets securely via the OS keychain, and the plugin itself does not expose secrets.",{"category":65,"check":69,"severity":23,"summary":70},"Injection","The script filters URLs and commands based on strict patterns, preventing injection of arbitrary content into tool calls or prompts.",{"category":65,"check":72,"severity":23,"summary":73},"Transitive Supply-Chain Grenades","The plugin uses only bundled scripts and relies on the pre-installed gh CLI, avoiding runtime downloads or external script execution.",{"category":65,"check":75,"severity":23,"summary":76},"Sandbox Isolation","The plugin operates within the provided tool execution environment and manages temporary files within session-scoped directories, not affecting outside files.",{"category":65,"check":78,"severity":23,"summary":79},"Sandbox escape primitives","The bash scripts do not appear to contain detached process spawns or denial-retry loops.",{"category":65,"check":81,"severity":23,"summary":82},"Data Exfiltration","The plugin does not read or submit confidential data; it routes interactions through the gh CLI, which is assumed to handle credentials securely.",{"category":65,"check":84,"severity":23,"summary":85},"Hidden Text Tricks","The bundled script and README files do not contain hidden text tricks or suspicious Unicode characters.",{"category":87,"check":88,"severity":23,"summary":89},"Hooks","Opaque code execution","The hooks are implemented in plain, readable bash scripts and do not use obfuscation techniques like base64 or minified bundles.",{"category":91,"check":92,"severity":23,"summary":93},"Portability","Structural Assumption","The plugin assumes the presence of gh CLI and uses standard environment variables like TMPDIR and CLAUDE_SESSION_ID, which are generally available.",{"category":95,"check":96,"severity":97,"summary":98},"Trust","Issues Attention","warning","In the last 90 days, 13 issues were opened and 4 were closed, indicating a closure rate below 50% and potentially slow maintainer response.",{"category":100,"check":101,"severity":23,"summary":102},"Versioning","Release Management","A meaningful version (1.4.1) is declared in plugin.json and reflected in the trust signals.",{"category":104,"check":105,"severity":23,"summary":106},"Code Execution","Validation","The bash scripts validate session IDs and parse input using jq, ensuring basic structural integrity before proceeding.",{"category":65,"check":108,"severity":23,"summary":109},"Unguarded Destructive Operations","The `cleanup-clones.sh` script uses `rm -rf` but operates on session-specific temporary directories, and is part of a cleanup hook, not a user-invoked destructive command.",{"category":104,"check":111,"severity":23,"summary":112},"Error Handling","Bash scripts use `set -euo pipefail` and include explicit checks for command existence and valid input formats, exiting non-zero on errors.",{"category":104,"check":114,"severity":23,"summary":115},"Logging","The plugin logs relevant information to stderr for debugging and uses session-scoped temp directories for ephemeral data, avoiding a persistent audit log.",{"category":117,"check":118,"severity":23,"summary":119},"Compliance","GDPR","The plugin does not handle personal data directly; it routes requests through the gh CLI, which is assumed to manage authentication securely.",{"category":117,"check":121,"severity":23,"summary":122},"Target market","The plugin is globally applicable and does not exhibit any regional or jurisdictional logic.",{"category":91,"check":124,"severity":23,"summary":125},"Runtime stability","The plugin relies on standard bash and the presence of the gh CLI, which are generally available across POSIX-compliant systems.",{"category":43,"check":127,"severity":23,"summary":128},"README","The README is comprehensive, clearly stating the purpose, problem, solution, and prerequisites.",{"category":32,"check":130,"severity":62,"summary":131},"Tool surface size","This is a plugin that primarily uses hooks and shims, not exposed tools with a surface size to evaluate.",{"category":39,"check":133,"severity":23,"summary":134},"Overlapping near-synonym tools","The plugin intercepts specific commands and URL patterns, redirecting them to appropriate gh CLI commands without introducing redundant synonyms.",{"category":43,"check":136,"severity":23,"summary":137},"Phantom features","All features mentioned in the README, such as intercepting fetches and cleanup, are implemented via hooks and scripts.",{"category":139,"check":140,"severity":23,"summary":141},"Install","Installation instruction","Clear installation instructions and invocation examples are provided in the README.",{"category":143,"check":144,"severity":23,"summary":145},"Errors","Actionable error messages","Error messages in scripts provide context on what failed and why, suggesting alternative actions or documenting limitations.",{"category":147,"check":148,"severity":23,"summary":149},"Execution","Pinned dependencies","The plugin relies on the system-installed `gh` CLI and does not bundle external dependencies that require pinning.",{"category":32,"check":151,"severity":23,"summary":152},"Dry-run preview","The plugin intercepts and redirects operations, but the actual destructive/state-changing actions are performed by the `gh` CLI, which may have its own dry-run capabilities, and the plugin's actions are informational redirects.",{"category":154,"check":155,"severity":23,"summary":156},"Protocol","Idempotent retry & timeouts","The plugin itself doesn't perform state-changing operations or remote calls directly; it delegates to the `gh` CLI and manages temporary files. Bash scripts use `set -euo pipefail` for error handling.",{"category":117,"check":158,"severity":23,"summary":159},"Telemetry opt-in","The plugin does not emit telemetry; its logging is for debugging and operates locally.",{"category":39,"check":161,"severity":23,"summary":162},"Name collisions","The plugin is named 'gh-cli' and its functionality is distinct from Claude Code built-ins.",{"category":39,"check":164,"severity":62,"summary":165},"Hooks-off mechanism","There is no explicit hooks-off mechanism documented, but the plugin's hooks only activate when GitHub URLs are detected and the gh CLI is available.",{"category":39,"check":167,"severity":23,"summary":168},"Hook matcher tightness","Hooks are scoped to specific tool names (WebFetch, Bash) and URL patterns or hostnames, not broad wildcards.",{"category":65,"check":170,"severity":23,"summary":171},"Hook security","The hooks intercept and deny potentially unsafe operations, redirecting to secure `gh` CLI commands. There are no destructive or network-touching hooks enabled by default.",{"category":87,"check":173,"severity":23,"summary":174},"Silent prompt rewriting","The plugin denies requests and provides suggestions in structured output, it does not silently rewrite user prompts.",{"category":65,"check":176,"severity":62,"summary":177},"Permission Hook","The plugin does not implement a PermissionRequest hook.",{"category":117,"check":179,"severity":23,"summary":180},"Hook privacy","The plugin does not send any data to external services via hooks; logging is local and for debugging.",{"category":104,"check":182,"severity":23,"summary":183},"Hook dependency","The hooks are short, readable bash scripts within the repository.",{"category":43,"check":185,"severity":23,"summary":186},"Feature Transparency","The README clearly explains the functionality of the hooks, including interception and cleanup.",{"category":188,"check":189,"severity":23,"summary":190},"Convention","Layout convention adherence","The plugin follows standard Claude Code plugin conventions with hooks in the appropriate directories and `plugin.json` in `.claude-plugin`.",{"category":188,"check":192,"severity":23,"summary":193},"Plugin state","Temporary cloned repositories are stored in session-scoped directories within `$TMPDIR`, ensuring state is managed correctly and cleaned up.",{"category":65,"check":195,"severity":62,"summary":196},"Keychain-stored secrets","The plugin does not handle secrets directly; it relies on the gh CLI's authentication mechanism.",{"category":198,"check":199,"severity":23,"summary":200},"Dependencies","Tagged release sourcing","The plugin relies on the system-installed `gh` CLI and does not bundle external MCP servers.",{"category":202,"check":203,"severity":23,"summary":204},"Installation","Clean uninstall","The plugin only spawns session-scoped processes and cleans up temporary files, ensuring a clean uninstall.",1778698400187,"This plugin intercepts GitHub URL fetches and Bash curl/wget commands, redirecting them to use the authenticated GitHub CLI (`gh`). It ensures private repository access, better rate limits, and provides session-scoped cleanup for cloned repositories. It also includes a PATH shim to block gh CLI anti-patterns.",[208,209,210,211,212],"Intercepts GitHub URL fetches","Redirects curl/wget to gh CLI","Ensures authenticated GitHub access","Manages session-scoped temporary files","Blocks gh CLI anti-patterns",[214,215,216],"Replacing the gh CLI entirely","Handling non-GitHub URLs or non-authenticated git commands","Providing direct file access to cloned repositories without further agent interaction","3.0.0","4.4.0","Enhance Claude Code's ability to interact with GitHub by ensuring authenticated fetches and avoiding common pitfalls.","The plugin has a strong feature set and excellent implementation, with only a minor concern around issue responsiveness.",95,"Intercepts GitHub URL fetches and curl/wget commands to use the authenticated gh CLI.",[224,225,226,227,228],"github","cli","git","authentication","security","global","community",[232,233,234,235],"Accessing private GitHub repositories from Claude Code","Improving rate limits for GitHub API interactions","Ensuring all GitHub fetches use authenticated credentials","Automating cleanup of cloned GitHub repositories",{"codeQuality":237,"collectedAt":239,"documentation":240,"maintenance":243,"security":250,"testCoverage":253},{"hasLockfile":238},true,1778698383870,{"descriptionLength":241,"readmeSize":242},94,7901,{"closedIssues90d":244,"forks":245,"hasChangelog":238,"manifestVersion":246,"openIssues90d":247,"pushedAt":248,"stars":249},4,455,"1.4.1",13,1778517916000,5161,{"hasNpmPackage":251,"license":252,"smitheryVerified":251},false,"CC-BY-SA-4.0",{"hasCi":238,"hasTests":238},{"updatedAt":255},1778698400404,{"basePath":257,"githubOwner":258,"githubRepo":259,"locale":17,"slug":12,"type":260},"plugins/gh-cli","trailofbits","skills","plugin",{"_creationTime":262,"_id":263,"community":264,"display":265,"identity":269,"parentExtension":272,"providers":273,"relations":287,"tags":289,"workflow":290},1778698175626.309,"k17550d1ve8ghfmwc58xs69e3s86mn86",{"reviewCount":8},{"description":266,"installMethods":267,"name":258,"sourceUrl":13},"Claude Code plugins from Trail of Bits for enhanced AI-assisted security analysis and development",{"claudeCode":268},"trailofbits/skills",{"basePath":270,"githubOwner":258,"githubRepo":259,"locale":17,"slug":259,"type":271},"","marketplace",null,{"evaluate":274,"extract":281},{"promptVersionExtension":275,"promptVersionScoring":218,"score":276,"tags":277,"targetMarket":229,"tier":230},"3.1.0",75,[228,278,279,271,280],"development","analysis","plugins",{"commitSha":282,"marketplace":283,"plugin":285},"HEAD",{"name":258,"pluginCount":284},39,{"mcpCount":8,"provider":286,"skillCount":8},"classify",{"repoId":288},"kd7d5sbrd9m157hjv9c7v4wfyn86mk2f",[279,278,271,280,228],{"evaluatedAt":291,"extractAt":292,"updatedAt":291},1778698203402,1778698175626,{"evaluate":294,"extract":296},{"promptVersionExtension":217,"promptVersionScoring":218,"score":221,"tags":295,"targetMarket":229,"tier":230},[224,225,226,227,228],{"commitSha":282},{"parentExtensionId":263,"repoId":288},{"_creationTime":299,"_id":288,"identity":300,"providers":301,"workflow":1999},1778698169543.2075,{"githubOwner":258,"githubRepo":259,"sourceUrl":13},{"classify":302,"discover":1992,"github":1995},{"commitSha":282,"extensions":303},[304,317,330,345,376,389,400,413,424,435,446,461,474,506,517,530,541,552,565,576,589,606,621,660,689,702,719,749,760,773,784,795,808,819,830,863,876,887,905,923,944,953,984,991,998,1006,1014,1022,1030,1040,1048,1056,1064,1072,1080,1088,1098,1105,1112,1136,1222,1233,1244,1259,1274,1281,1302,1311,1330,1336,1345,1359,1388,1396,1418,1425,1438,1449,1461,1500,1507,1514,1546,1554,1570,1577,1585,1593,1601,1609,1617,1625,1633,1641,1649,1657,1665,1673,1681,1703,1711,1721,1745,1759,1773,1787,1805,1816,1824,1832,1849,1858,1873,1907,1982],{"basePath":270,"description":266,"displayName":258,"installMethods":305,"rationale":306,"selectedPaths":307,"source":316,"sourceLanguage":17,"type":271},{"claudeCode":268},"marketplace.json at .claude-plugin/marketplace.json",[308,311,313],{"path":309,"priority":310},".claude-plugin/marketplace.json","mandatory",{"path":312,"priority":310},"README.md",{"path":314,"priority":315},"LICENSE","high","rule",{"basePath":318,"description":319,"displayName":320,"installMethods":321,"rationale":322,"selectedPaths":323,"source":316,"sourceLanguage":17,"type":260},"plugins/ask-questions-if-underspecified","Clarify ambiguous requirements by asking questions before implementing. Only when invoked explicitly.","ask-questions-if-underspecified",{"claudeCode":320},"plugin manifest at plugins/ask-questions-if-underspecified/.claude-plugin/plugin.json",[324,326,327],{"path":325,"priority":310},".claude-plugin/plugin.json",{"path":312,"priority":310},{"path":328,"priority":329},"skills/ask-questions-if-underspecified/SKILL.md","medium",{"basePath":331,"description":332,"displayName":333,"installMethods":334,"rationale":335,"selectedPaths":336,"source":316,"sourceLanguage":17,"type":260},"plugins/audit-context-building","Build deep architectural context through ultra-granular code analysis before vulnerability hunting","audit-context-building",{"claudeCode":333},"plugin manifest at plugins/audit-context-building/.claude-plugin/plugin.json",[337,338,339,341,343],{"path":325,"priority":310},{"path":312,"priority":310},{"path":340,"priority":329},"skills/audit-context-building/SKILL.md",{"path":342,"priority":315},"agents/function-analyzer.md",{"path":344,"priority":315},"commands/audit-context.md",{"basePath":346,"description":347,"displayName":348,"installMethods":349,"rationale":350,"selectedPaths":351,"source":316,"sourceLanguage":17,"type":260},"plugins/building-secure-contracts","Comprehensive smart contract security toolkit based on Trail of Bits' Building Secure Contracts framework. Includes vulnerability scanners for 6 blockchains and 5 development guideline assistants.","building-secure-contracts",{"claudeCode":348},"plugin manifest at plugins/building-secure-contracts/.claude-plugin/plugin.json",[352,353,354,356,358,360,362,364,366,368,370,372,374],{"path":325,"priority":310},{"path":312,"priority":310},{"path":355,"priority":329},"skills/algorand-vulnerability-scanner/SKILL.md",{"path":357,"priority":329},"skills/audit-prep-assistant/SKILL.md",{"path":359,"priority":329},"skills/cairo-vulnerability-scanner/SKILL.md",{"path":361,"priority":329},"skills/code-maturity-assessor/SKILL.md",{"path":363,"priority":329},"skills/cosmos-vulnerability-scanner/SKILL.md",{"path":365,"priority":329},"skills/guidelines-advisor/SKILL.md",{"path":367,"priority":329},"skills/secure-workflow-guide/SKILL.md",{"path":369,"priority":329},"skills/solana-vulnerability-scanner/SKILL.md",{"path":371,"priority":329},"skills/substrate-vulnerability-scanner/SKILL.md",{"path":373,"priority":329},"skills/token-integration-analyzer/SKILL.md",{"path":375,"priority":329},"skills/ton-vulnerability-scanner/SKILL.md",{"basePath":377,"description":378,"displayName":379,"installMethods":380,"rationale":381,"selectedPaths":382,"source":316,"sourceLanguage":17,"type":260},"plugins/burpsuite-project-parser","Search and extract data from Burp Suite project files (.burp) for security analysis","burpsuite-project-parser",{"claudeCode":379},"plugin manifest at plugins/burpsuite-project-parser/.claude-plugin/plugin.json",[383,384,385,387],{"path":325,"priority":310},{"path":312,"priority":310},{"path":386,"priority":329},"skills/burpsuite-project-parser/SKILL.md",{"path":388,"priority":315},"commands/burp-search.md",{"basePath":390,"description":391,"displayName":392,"installMethods":393,"rationale":394,"selectedPaths":395,"source":316,"sourceLanguage":17,"type":260},"plugins/claude-in-chrome-troubleshooting","Diagnose and fix Claude in Chrome MCP extension connectivity issues","claude-in-chrome-troubleshooting",{"claudeCode":392},"plugin manifest at plugins/claude-in-chrome-troubleshooting/.claude-plugin/plugin.json",[396,397,398],{"path":325,"priority":310},{"path":312,"priority":310},{"path":399,"priority":329},"skills/claude-in-chrome-troubleshooting/SKILL.md",{"basePath":401,"description":402,"displayName":403,"installMethods":404,"rationale":405,"selectedPaths":406,"source":316,"sourceLanguage":17,"type":260},"plugins/constant-time-analysis","Detect compiler-induced timing side-channels in cryptographic code","constant-time-analysis",{"claudeCode":403},"plugin manifest at plugins/constant-time-analysis/.claude-plugin/plugin.json",[407,408,409,411],{"path":325,"priority":310},{"path":312,"priority":310},{"path":410,"priority":329},"skills/constant-time-analysis/SKILL.md",{"path":412,"priority":315},"commands/ct-check.md",{"basePath":414,"description":415,"displayName":416,"installMethods":417,"rationale":418,"selectedPaths":419,"source":316,"sourceLanguage":17,"type":260},"plugins/culture-index","Interprets Culture Index survey results for individuals and teams","culture-index",{"claudeCode":416},"plugin manifest at plugins/culture-index/.claude-plugin/plugin.json",[420,421,422],{"path":325,"priority":310},{"path":312,"priority":310},{"path":423,"priority":329},"skills/interpreting-culture-index/SKILL.md",{"basePath":425,"description":426,"displayName":427,"installMethods":428,"rationale":429,"selectedPaths":430,"source":316,"sourceLanguage":17,"type":260},"plugins/debug-buttercup","Debug Buttercup Kubernetes deployments","debug-buttercup",{"claudeCode":427},"plugin manifest at plugins/debug-buttercup/.claude-plugin/plugin.json",[431,432,433],{"path":325,"priority":310},{"path":312,"priority":310},{"path":434,"priority":329},"skills/debug-buttercup/SKILL.md",{"basePath":436,"description":437,"displayName":438,"installMethods":439,"rationale":440,"selectedPaths":441,"source":316,"sourceLanguage":17,"type":260},"plugins/devcontainer-setup","Create pre-configured devcontainers with Claude Code and language-specific tooling","devcontainer-setup",{"claudeCode":438},"plugin manifest at plugins/devcontainer-setup/.claude-plugin/plugin.json",[442,443,444],{"path":325,"priority":310},{"path":312,"priority":310},{"path":445,"priority":329},"skills/devcontainer-setup/SKILL.md",{"basePath":447,"description":448,"displayName":449,"installMethods":450,"rationale":451,"selectedPaths":452,"source":316,"sourceLanguage":17,"type":260},"plugins/differential-review","Security-focused differential review of code changes with git history analysis and blast radius estimation","differential-review",{"claudeCode":449},"plugin manifest at plugins/differential-review/.claude-plugin/plugin.json",[453,454,455,457,459],{"path":325,"priority":310},{"path":312,"priority":310},{"path":456,"priority":329},"skills/differential-review/SKILL.md",{"path":458,"priority":315},"agents/adversarial-modeler.md",{"path":460,"priority":315},"commands/diff-review.md",{"basePath":462,"description":463,"displayName":464,"installMethods":465,"rationale":466,"selectedPaths":467,"source":316,"sourceLanguage":17,"type":260},"plugins/firebase-apk-scanner","Scan Android APKs for Firebase security misconfigurations including open databases, storage buckets, authentication issues, and exposed cloud functions. For authorized security research only.","firebase-apk-scanner",{"claudeCode":464},"plugin manifest at plugins/firebase-apk-scanner/.claude-plugin/plugin.json",[468,469,470,472],{"path":325,"priority":310},{"path":312,"priority":310},{"path":471,"priority":329},"skills/firebase-apk-scanner/SKILL.md",{"path":473,"priority":315},"commands/scan-apk.md",{"basePath":257,"description":10,"displayName":12,"installMethods":475,"rationale":476,"selectedPaths":477,"source":316,"sourceLanguage":17,"type":260},{"claudeCode":12},"plugin manifest at plugins/gh-cli/.claude-plugin/plugin.json",[478,479,480,482,484,486,488,490,492,494,496,498,500,502,504],{"path":325,"priority":310},{"path":312,"priority":310},{"path":481,"priority":315},"hooks/cleanup-clones.sh",{"path":483,"priority":315},"hooks/hooks.json",{"path":485,"priority":315},"hooks/intercept-github-curl.bats",{"path":487,"priority":315},"hooks/intercept-github-curl.sh",{"path":489,"priority":315},"hooks/intercept-github-fetch.bats",{"path":491,"priority":315},"hooks/intercept-github-fetch.sh",{"path":493,"priority":315},"hooks/persist-session-id.sh",{"path":495,"priority":315},"hooks/session-hooks.bats",{"path":497,"priority":315},"hooks/setup-shims.bats",{"path":499,"priority":315},"hooks/setup-shims.sh",{"path":501,"priority":315},"hooks/shims/gh",{"path":503,"priority":315},"hooks/shims/gh-shim.bats",{"path":505,"priority":315},"hooks/test_helper.bash",{"basePath":507,"description":508,"displayName":509,"installMethods":510,"rationale":511,"selectedPaths":512,"source":316,"sourceLanguage":17,"type":260},"plugins/dwarf-expert","Interact with and understand the DWARF debugging format","dwarf-expert",{"claudeCode":509},"plugin manifest at plugins/dwarf-expert/.claude-plugin/plugin.json",[513,514,515],{"path":325,"priority":310},{"path":312,"priority":310},{"path":516,"priority":329},"skills/dwarf-expert/SKILL.md",{"basePath":518,"description":519,"displayName":520,"installMethods":521,"rationale":522,"selectedPaths":523,"source":316,"sourceLanguage":17,"type":260},"plugins/entry-point-analyzer","Analyzes smart contract codebases to identify state-changing entry points for security auditing. Detects externally callable functions that modify state, categorizes them by access level, and generates structured audit reports.","entry-point-analyzer",{"claudeCode":520},"plugin manifest at plugins/entry-point-analyzer/.claude-plugin/plugin.json",[524,525,526,528],{"path":325,"priority":310},{"path":312,"priority":310},{"path":527,"priority":329},"skills/entry-point-analyzer/SKILL.md",{"path":529,"priority":315},"commands/entry-points.md",{"basePath":531,"description":532,"displayName":533,"installMethods":534,"rationale":535,"selectedPaths":536,"source":316,"sourceLanguage":17,"type":260},"plugins/mutation-testing","Configures mewt or muton mutation testing campaigns — scopes targets, tunes timeouts, and optimizes long-running runs. Use when the user mentions mewt, muton, mutation testing, or wants to configure or optimize a mutation testing campaign.","mutation-testing",{"claudeCode":533},"plugin manifest at plugins/mutation-testing/.claude-plugin/plugin.json",[537,538,539],{"path":325,"priority":310},{"path":312,"priority":310},{"path":540,"priority":329},"skills/mutation-testing/SKILL.md",{"basePath":542,"description":543,"displayName":544,"installMethods":545,"rationale":546,"selectedPaths":547,"source":316,"sourceLanguage":17,"type":260},"plugins/property-based-testing","Property-based testing guidance for multiple languages and smart contracts","property-based-testing",{"claudeCode":544},"plugin manifest at plugins/property-based-testing/.claude-plugin/plugin.json",[548,549,550],{"path":325,"priority":310},{"path":312,"priority":310},{"path":551,"priority":329},"skills/property-based-testing/SKILL.md",{"basePath":553,"description":554,"displayName":555,"installMethods":556,"rationale":557,"selectedPaths":558,"source":316,"sourceLanguage":17,"type":260},"plugins/semgrep-rule-creator","Create custom Semgrep rules for detecting bug patterns and security vulnerabilities","semgrep-rule-creator",{"claudeCode":555},"plugin manifest at plugins/semgrep-rule-creator/.claude-plugin/plugin.json",[559,560,561,563],{"path":325,"priority":310},{"path":312,"priority":310},{"path":562,"priority":329},"skills/semgrep-rule-creator/SKILL.md",{"path":564,"priority":315},"commands/semgrep-rule.md",{"basePath":566,"description":567,"displayName":568,"installMethods":569,"rationale":570,"selectedPaths":571,"source":316,"sourceLanguage":17,"type":260},"plugins/semgrep-rule-variant-creator","Creates language variants of existing Semgrep rules with proper applicability analysis and test-driven validation","semgrep-rule-variant-creator",{"claudeCode":568},"plugin manifest at plugins/semgrep-rule-variant-creator/.claude-plugin/plugin.json",[572,573,574],{"path":325,"priority":310},{"path":312,"priority":310},{"path":575,"priority":329},"skills/semgrep-rule-variant-creator/SKILL.md",{"basePath":577,"description":578,"displayName":579,"installMethods":580,"rationale":581,"selectedPaths":582,"source":316,"sourceLanguage":17,"type":260},"plugins/sharp-edges","Identify error-prone APIs, dangerous configurations, and footgun designs that enable security mistakes","sharp-edges",{"claudeCode":579},"plugin manifest at plugins/sharp-edges/.claude-plugin/plugin.json",[583,584,585,587],{"path":325,"priority":310},{"path":312,"priority":310},{"path":586,"priority":329},"skills/sharp-edges/SKILL.md",{"path":588,"priority":315},"agents/sharp-edges-analyzer.md",{"basePath":590,"description":591,"displayName":592,"installMethods":593,"rationale":594,"selectedPaths":595,"source":316,"sourceLanguage":17,"type":260},"plugins/static-analysis","Static analysis toolkit with CodeQL, Semgrep, and SARIF parsing for security vulnerability detection","static-analysis",{"claudeCode":592},"plugin manifest at plugins/static-analysis/.claude-plugin/plugin.json",[596,597,598,600,602,604],{"path":325,"priority":310},{"path":312,"priority":310},{"path":599,"priority":329},"skills/codeql/SKILL.md",{"path":601,"priority":329},"skills/sarif-parsing/SKILL.md",{"path":603,"priority":329},"skills/semgrep/SKILL.md",{"path":605,"priority":315},"agents/semgrep-scanner.md",{"basePath":607,"description":608,"displayName":609,"installMethods":610,"rationale":611,"selectedPaths":612,"source":316,"sourceLanguage":17,"type":260},"plugins/spec-to-code-compliance","Specification-to-code compliance checker for blockchain audits with evidence-based alignment analysis","spec-to-code-compliance",{"claudeCode":609},"plugin manifest at plugins/spec-to-code-compliance/.claude-plugin/plugin.json",[613,614,615,617,619],{"path":325,"priority":310},{"path":312,"priority":310},{"path":616,"priority":329},"skills/spec-to-code-compliance/SKILL.md",{"path":618,"priority":315},"agents/spec-compliance-checker.md",{"path":620,"priority":315},"commands/spec-compliance.md",{"basePath":622,"description":623,"displayName":624,"installMethods":625,"rationale":626,"selectedPaths":627,"source":316,"sourceLanguage":17,"type":260},"plugins/testing-handbook-skills","Skills from the Trail of Bits Application Security Testing Handbook (appsec.guide)","testing-handbook-skills",{"claudeCode":624},"plugin manifest at plugins/testing-handbook-skills/.claude-plugin/plugin.json",[628,629,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658],{"path":325,"priority":310},{"path":312,"priority":310},{"path":631,"priority":329},"skills/address-sanitizer/SKILL.md",{"path":633,"priority":329},"skills/aflpp/SKILL.md",{"path":635,"priority":329},"skills/atheris/SKILL.md",{"path":637,"priority":329},"skills/cargo-fuzz/SKILL.md",{"path":639,"priority":329},"skills/constant-time-testing/SKILL.md",{"path":641,"priority":329},"skills/coverage-analysis/SKILL.md",{"path":643,"priority":329},"skills/fuzzing-dictionary/SKILL.md",{"path":645,"priority":329},"skills/fuzzing-obstacles/SKILL.md",{"path":647,"priority":329},"skills/harness-writing/SKILL.md",{"path":649,"priority":329},"skills/libafl/SKILL.md",{"path":651,"priority":329},"skills/libfuzzer/SKILL.md",{"path":653,"priority":329},"skills/ossfuzz/SKILL.md",{"path":655,"priority":329},"skills/ruzzy/SKILL.md",{"path":657,"priority":329},"skills/testing-handbook-generator/SKILL.md",{"path":659,"priority":329},"skills/wycheproof/SKILL.md",{"basePath":661,"description":662,"displayName":663,"installMethods":664,"rationale":665,"selectedPaths":666,"source":316,"sourceLanguage":17,"type":260},"plugins/trailmark","Builds multi-language source code graphs for security analysis: call graphs, attack surface mapping, blast radius, taint propagation, complexity hotspots, and entry point enumeration. Generates Mermaid diagrams (call graphs, class hierarchies, dependency maps, heatmaps). Compares code graph snapshots for structural diff and evolution analysis. Runs graph-informed mutation testing triage (genotoxic). Generates mutation-driven test vectors (vector-forge). Extracts crypto protocol message flows and converts Mermaid diagrams to ProVerif models. Projects SARIF and weAudit findings onto code graphs. Use when analyzing call paths, mapping attack surface, visualizing code architecture, triaging survived mutants, generating cryptographic test vectors, diagramming crypto protocols, formally verifying protocols, or augmenting audits with static analysis findings.","trailmark",{"claudeCode":663},"plugin manifest at plugins/trailmark/.claude-plugin/plugin.json",[667,668,669,671,673,675,677,679,681,683,685,687],{"path":325,"priority":310},{"path":312,"priority":310},{"path":670,"priority":329},"skills/audit-augmentation/SKILL.md",{"path":672,"priority":329},"skills/crypto-protocol-diagram/SKILL.md",{"path":674,"priority":329},"skills/diagramming-code/SKILL.md",{"path":676,"priority":329},"skills/genotoxic/SKILL.md",{"path":678,"priority":329},"skills/graph-evolution/SKILL.md",{"path":680,"priority":329},"skills/mermaid-to-proverif/SKILL.md",{"path":682,"priority":329},"skills/trailmark/SKILL.md",{"path":684,"priority":329},"skills/trailmark-structural/SKILL.md",{"path":686,"priority":329},"skills/trailmark-summary/SKILL.md",{"path":688,"priority":329},"skills/vector-forge/SKILL.md",{"basePath":690,"description":691,"displayName":692,"installMethods":693,"rationale":694,"selectedPaths":695,"source":316,"sourceLanguage":17,"type":260},"plugins/variant-analysis","Find similar vulnerabilities and bugs across codebases using pattern-based analysis","variant-analysis",{"claudeCode":692},"plugin manifest at plugins/variant-analysis/.claude-plugin/plugin.json",[696,697,698,700],{"path":325,"priority":310},{"path":312,"priority":310},{"path":699,"priority":329},"skills/variant-analysis/SKILL.md",{"path":701,"priority":315},"commands/variants.md",{"basePath":703,"description":704,"displayName":705,"installMethods":706,"rationale":707,"selectedPaths":708,"source":316,"sourceLanguage":17,"type":260},"plugins/c-review","Comprehensive C/C++ security code review with specialized bug-finding agents covering memory safety, type safety, concurrency, and Linux/Windows userspace-specific issues","c-review",{"claudeCode":705},"plugin manifest at plugins/c-review/.claude-plugin/plugin.json",[709,710,711,713,715,717],{"path":325,"priority":310},{"path":312,"priority":310},{"path":712,"priority":329},"skills/c-review/SKILL.md",{"path":714,"priority":315},"agents/c-review-dedup-judge.md",{"path":716,"priority":315},"agents/c-review-fp-judge.md",{"path":718,"priority":315},"agents/c-review-worker.md",{"basePath":720,"description":721,"displayName":722,"installMethods":723,"rationale":724,"selectedPaths":725,"source":316,"sourceLanguage":17,"type":260},"plugins/modern-python","Modern Python best practices. Use when creating new Python projects, and writing Python scripts, or migrating existing projects from legacy tools.","modern-python",{"claudeCode":722},"plugin manifest at plugins/modern-python/.claude-plugin/plugin.json",[726,727,728,730,731,732,733,735,737,739,741,743,745,747],{"path":325,"priority":310},{"path":312,"priority":310},{"path":729,"priority":329},"skills/modern-python/SKILL.md",{"path":483,"priority":315},{"path":497,"priority":315},{"path":499,"priority":315},{"path":734,"priority":315},"hooks/shims/pip",{"path":736,"priority":315},"hooks/shims/pip-shim.bats",{"path":738,"priority":315},"hooks/shims/pipx",{"path":740,"priority":315},"hooks/shims/pipx-shim.bats",{"path":742,"priority":315},"hooks/shims/python",{"path":744,"priority":315},"hooks/shims/python-shim.bats",{"path":746,"priority":315},"hooks/shims/uv",{"path":748,"priority":315},"hooks/shims/uv-shim.bats",{"basePath":750,"description":751,"displayName":752,"installMethods":753,"rationale":754,"selectedPaths":755,"source":316,"sourceLanguage":17,"type":260},"plugins/insecure-defaults","Detects insecure default configurations including hardcoded credentials, fallback secrets, weak authentication defaults, and dangerous values in production","insecure-defaults",{"claudeCode":752},"plugin manifest at plugins/insecure-defaults/.claude-plugin/plugin.json",[756,757,758],{"path":325,"priority":310},{"path":312,"priority":310},{"path":759,"priority":329},"skills/insecure-defaults/SKILL.md",{"basePath":761,"description":762,"displayName":763,"installMethods":764,"rationale":765,"selectedPaths":766,"source":316,"sourceLanguage":17,"type":260},"plugins/second-opinion","Runs code reviews using external LLM CLIs (OpenAI Codex, Google Gemini) on uncommitted changes, branch diffs, or specific commits. Bundles Codex's built-in MCP server for direct tool access.","second-opinion",{"claudeCode":763},"plugin manifest at plugins/second-opinion/.claude-plugin/plugin.json",[767,768,769,771],{"path":325,"priority":310},{"path":312,"priority":310},{"path":770,"priority":329},"skills/second-opinion/SKILL.md",{"path":772,"priority":310},".mcp.json",{"basePath":774,"description":775,"displayName":776,"installMethods":777,"rationale":778,"selectedPaths":779,"source":316,"sourceLanguage":17,"type":260},"plugins/yara-authoring","YARA-X detection rule authoring with linting and quality analysis","yara-authoring",{"claudeCode":776},"plugin manifest at plugins/yara-authoring/.claude-plugin/plugin.json",[780,781,782],{"path":325,"priority":310},{"path":312,"priority":310},{"path":783,"priority":329},"skills/yara-rule-authoring/SKILL.md",{"basePath":785,"description":786,"displayName":787,"installMethods":788,"rationale":789,"selectedPaths":790,"source":316,"sourceLanguage":17,"type":260},"plugins/git-cleanup","Safely analyzes and cleans up local git branches and worktrees by categorizing them as merged, squash-merged, superseded, or active work.","git-cleanup",{"claudeCode":787},"plugin manifest at plugins/git-cleanup/.claude-plugin/plugin.json",[791,792,793],{"path":325,"priority":310},{"path":312,"priority":310},{"path":794,"priority":329},"skills/git-cleanup/SKILL.md",{"basePath":796,"description":797,"displayName":798,"installMethods":799,"rationale":800,"selectedPaths":801,"source":316,"sourceLanguage":17,"type":260},"plugins/workflow-skill-design","Teaches design patterns for workflow-based Claude Code skills and provides a review agent for auditing existing skills","workflow-skill-design",{"claudeCode":798},"plugin manifest at plugins/workflow-skill-design/.claude-plugin/plugin.json",[802,803,804,806],{"path":325,"priority":310},{"path":312,"priority":310},{"path":805,"priority":329},"skills/designing-workflow-skills/SKILL.md",{"path":807,"priority":315},"agents/workflow-skill-reviewer.md",{"basePath":809,"description":810,"displayName":811,"installMethods":812,"rationale":813,"selectedPaths":814,"source":316,"sourceLanguage":17,"type":260},"plugins/seatbelt-sandboxer","Generate minimal macOS Seatbelt sandbox configurations for applications","seatbelt-sandboxer",{"claudeCode":811},"plugin manifest at plugins/seatbelt-sandboxer/.claude-plugin/plugin.json",[815,816,817],{"path":325,"priority":310},{"path":312,"priority":310},{"path":818,"priority":329},"skills/seatbelt-sandboxer/SKILL.md",{"basePath":820,"description":821,"displayName":822,"installMethods":823,"rationale":824,"selectedPaths":825,"source":316,"sourceLanguage":17,"type":260},"plugins/supply-chain-risk-auditor","Audit supply-chain threat landscape of project dependencies for exploitation or takeover risk","supply-chain-risk-auditor",{"claudeCode":822},"plugin manifest at plugins/supply-chain-risk-auditor/.claude-plugin/plugin.json",[826,827,828],{"path":325,"priority":310},{"path":312,"priority":310},{"path":829,"priority":329},"skills/supply-chain-risk-auditor/SKILL.md",{"basePath":831,"description":832,"displayName":833,"installMethods":834,"rationale":835,"selectedPaths":836,"source":316,"sourceLanguage":17,"type":260},"plugins/zeroize-audit","Detects missing or compiler-optimized zeroization of sensitive data with assembly and control-flow analysis","zeroize-audit",{"claudeCode":833},"plugin manifest at plugins/zeroize-audit/.claude-plugin/plugin.json",[837,838,839,841,843,845,847,849,851,853,855,857,859,861],{"path":325,"priority":310},{"path":312,"priority":310},{"path":840,"priority":329},"skills/zeroize-audit/SKILL.md",{"path":842,"priority":315},"agents/0-preflight.md",{"path":844,"priority":315},"agents/1-mcp-resolver.md",{"path":846,"priority":315},"agents/2-source-analyzer.md",{"path":848,"priority":315},"agents/2b-rust-source-analyzer.md",{"path":850,"priority":315},"agents/3-tu-compiler-analyzer.md",{"path":852,"priority":315},"agents/3b-rust-compiler-analyzer.md",{"path":854,"priority":315},"agents/4-report-assembler.md",{"path":856,"priority":315},"agents/5-poc-generator.md",{"path":858,"priority":315},"agents/5b-poc-validator.md",{"path":860,"priority":315},"agents/5c-poc-verifier.md",{"path":862,"priority":315},"agents/6-test-generator.md",{"basePath":864,"description":865,"displayName":866,"installMethods":867,"rationale":868,"selectedPaths":869,"source":316,"sourceLanguage":17,"type":260},"plugins/let-fate-decide","Draws Tarot cards using cryptographic randomness to add entropy to vague or underspecified planning. Interprets the spread to guide next steps. Use when feeling lucky, invoking heart-of-the-cards energy, or when prompts are ambiguous.","let-fate-decide",{"claudeCode":866},"plugin manifest at plugins/let-fate-decide/.claude-plugin/plugin.json",[870,871,872,874],{"path":325,"priority":310},{"path":312,"priority":310},{"path":873,"priority":329},"skills/let-fate-decide/SKILL.md",{"path":875,"priority":315},"agents/draw.md",{"basePath":877,"description":878,"displayName":879,"installMethods":880,"rationale":881,"selectedPaths":882,"source":316,"sourceLanguage":17,"type":260},"plugins/agentic-actions-auditor","Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations (Claude Code Action, Gemini CLI, OpenAI Codex, GitHub AI Inference)","agentic-actions-auditor",{"claudeCode":879},"plugin manifest at plugins/agentic-actions-auditor/.claude-plugin/plugin.json",[883,884,885],{"path":325,"priority":310},{"path":312,"priority":310},{"path":886,"priority":329},"skills/agentic-actions-auditor/SKILL.md",{"basePath":888,"description":889,"displayName":890,"installMethods":891,"rationale":892,"selectedPaths":893,"source":316,"sourceLanguage":17,"type":260},"plugins/skill-improver","Automatically reviews and fixes Claude Code skills through iterative refinement until they meet quality standards. Requires plugin-dev plugin.","skill-improver",{"claudeCode":890},"plugin manifest at plugins/skill-improver/.claude-plugin/plugin.json",[894,895,896,898,900,902,903],{"path":325,"priority":310},{"path":312,"priority":310},{"path":897,"priority":329},"skills/skill-improver/SKILL.md",{"path":899,"priority":315},"commands/cancel-skill-improver.md",{"path":901,"priority":315},"commands/skill-improver.md",{"path":483,"priority":315},{"path":904,"priority":315},"hooks/stop-hook.sh",{"basePath":906,"description":907,"displayName":908,"installMethods":909,"rationale":910,"selectedPaths":911,"source":316,"sourceLanguage":17,"type":260},"plugins/fp-check","Systematic false positive verification for security bug analysis with mandatory gate reviews","fp-check",{"claudeCode":908},"plugin manifest at plugins/fp-check/.claude-plugin/plugin.json",[912,913,914,916,918,920,922],{"path":325,"priority":310},{"path":312,"priority":310},{"path":915,"priority":329},"skills/fp-check/SKILL.md",{"path":917,"priority":315},"agents/data-flow-analyzer.md",{"path":919,"priority":315},"agents/exploitability-verifier.md",{"path":921,"priority":315},"agents/poc-builder.md",{"path":483,"priority":315},{"basePath":924,"description":925,"displayName":926,"installMethods":927,"rationale":928,"selectedPaths":929,"source":316,"sourceLanguage":17,"type":260},"plugins/dimensional-analysis","Annotates codebases with dimensional analysis comments documenting units, dimensions, and decimal scaling. Use when someone asks to annotate units in a codebase, perform a dimensional analysis, or find vulnerabilities in a DeFi protocol. Prevents dimensional mismatches and catches formula bugs early.","dimensional-analysis",{"claudeCode":926},"plugin manifest at plugins/dimensional-analysis/.claude-plugin/plugin.json",[930,931,932,934,936,938,940,942],{"path":325,"priority":310},{"path":312,"priority":310},{"path":933,"priority":329},"skills/dimensional-analysis/SKILL.md",{"path":935,"priority":315},"agents/arithmetic-scanner.md",{"path":937,"priority":315},"agents/dimension-annotator.md",{"path":939,"priority":315},"agents/dimension-discoverer.md",{"path":941,"priority":315},"agents/dimension-propagator.md",{"path":943,"priority":315},"agents/dimension-validator.md",{"basePath":945,"description":946,"displayName":12,"installMethods":947,"rationale":948,"selectedPaths":949,"source":316,"sourceLanguage":17,"type":952},".codex/skills/gh-cli","Enforces authenticated gh CLI workflows over unauthenticated curl/WebFetch patterns. Use when working with GitHub URLs, API access, pull requests, or issues.",{"claudeCode":268},"SKILL.md frontmatter at .codex/skills/gh-cli/SKILL.md",[950],{"path":951,"priority":310},"SKILL.md","skill",{"basePath":954,"description":955,"displayName":879,"installMethods":956,"rationale":957,"selectedPaths":958,"source":316,"sourceLanguage":17,"type":952},"plugins/agentic-actions-auditor/skills/agentic-actions-auditor","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/CD 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/CD pipeline security for prompt injection risks, or evaluating agentic action configurations.",{"claudeCode":268},"SKILL.md frontmatter at plugins/agentic-actions-auditor/skills/agentic-actions-auditor/SKILL.md",[959,960,962,964,966,968,970,972,974,976,978,980,982],{"path":951,"priority":310},{"path":961,"priority":329},"references/action-profiles.md",{"path":963,"priority":329},"references/cross-file-resolution.md",{"path":965,"priority":329},"references/foundations.md",{"path":967,"priority":329},"references/vector-a-env-var-intermediary.md",{"path":969,"priority":329},"references/vector-b-direct-expression-injection.md",{"path":971,"priority":329},"references/vector-c-cli-data-fetch.md",{"path":973,"priority":329},"references/vector-d-pr-target-checkout.md",{"path":975,"priority":329},"references/vector-e-error-log-injection.md",{"path":977,"priority":329},"references/vector-f-subshell-expansion.md",{"path":979,"priority":329},"references/vector-g-eval-of-ai-output.md",{"path":981,"priority":329},"references/vector-h-dangerous-sandbox-configs.md",{"path":983,"priority":329},"references/vector-i-wildcard-allowlists.md",{"basePath":985,"description":986,"displayName":320,"installMethods":987,"rationale":988,"selectedPaths":989,"source":316,"sourceLanguage":17,"type":952},"plugins/ask-questions-if-underspecified/skills/ask-questions-if-underspecified","Clarify requirements before implementing. Use when serious doubts arise.",{"claudeCode":268},"SKILL.md frontmatter at plugins/ask-questions-if-underspecified/skills/ask-questions-if-underspecified/SKILL.md",[990],{"path":951,"priority":310},{"basePath":992,"description":993,"displayName":333,"installMethods":994,"rationale":995,"selectedPaths":996,"source":316,"sourceLanguage":17,"type":952},"plugins/audit-context-building/skills/audit-context-building","Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.",{"claudeCode":268},"SKILL.md frontmatter at plugins/audit-context-building/skills/audit-context-building/SKILL.md",[997],{"path":951,"priority":310},{"basePath":999,"description":1000,"displayName":1001,"installMethods":1002,"rationale":1003,"selectedPaths":1004,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/algorand-vulnerability-scanner","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/PyTeal).","algorand-vulnerability-scanner",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/algorand-vulnerability-scanner/SKILL.md",[1005],{"path":951,"priority":310},{"basePath":1007,"description":1008,"displayName":1009,"installMethods":1010,"rationale":1011,"selectedPaths":1012,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/audit-prep-assistant","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).","audit-prep-assistant",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/audit-prep-assistant/SKILL.md",[1013],{"path":951,"priority":310},{"basePath":1015,"description":1016,"displayName":1017,"installMethods":1018,"rationale":1019,"selectedPaths":1020,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/cairo-vulnerability-scanner","Scans Cairo/StarkNet 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.","cairo-vulnerability-scanner",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/cairo-vulnerability-scanner/SKILL.md",[1021],{"path":951,"priority":310},{"basePath":1023,"description":1024,"displayName":1025,"installMethods":1026,"rationale":1027,"selectedPaths":1028,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/code-maturity-assessor","Systematic code maturity assessment using Trail of Bits' 9-category framework. Analyzes codebase for arithmetic safety, auditing practices, access controls, complexity, decentralization, documentation, MEV risks, low-level code, and testing. Produces professional scorecard with evidence-based ratings and actionable recommendations.","code-maturity-assessor",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/code-maturity-assessor/SKILL.md",[1029],{"path":951,"priority":310},{"basePath":1031,"description":1032,"displayName":1033,"installMethods":1034,"rationale":1035,"selectedPaths":1036,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/cosmos-vulnerability-scanner","Scans Cosmos SDK blockchain modules and CosmWasm contracts for consensus-critical vulnerabilities — chain halts, fund loss, state divergence. 25 core + 16 IBC + 10 EVM + 3 CosmWasm patterns. Use when auditing custom x/ modules, reviewing IBC integrations, or assessing pre-launch chain security. Updated for SDK v0.53.x.","cosmos-vulnerability-scanner",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/cosmos-vulnerability-scanner/SKILL.md",[1037,1038],{"path":951,"priority":310},{"path":1039,"priority":329},"CHANGELOG.md",{"basePath":1041,"description":1042,"displayName":1043,"installMethods":1044,"rationale":1045,"selectedPaths":1046,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/guidelines-advisor","Smart contract development advisor based on Trail of Bits' best practices. Analyzes codebase to generate documentation/specifications, review architecture, check upgradeability patterns, assess implementation quality, identify pitfalls, review dependencies, and evaluate testing. Provides actionable recommendations.","guidelines-advisor",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/guidelines-advisor/SKILL.md",[1047],{"path":951,"priority":310},{"basePath":1049,"description":1050,"displayName":1051,"installMethods":1052,"rationale":1053,"selectedPaths":1054,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/secure-workflow-guide","Guides through Trail of Bits' 5-step secure development workflow. Runs Slither scans, checks special features (upgradeability/ERC conformance/token integration), generates visual security diagrams, helps document security properties for fuzzing/verification, and reviews manual security areas.","secure-workflow-guide",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/secure-workflow-guide/SKILL.md",[1055],{"path":951,"priority":310},{"basePath":1057,"description":1058,"displayName":1059,"installMethods":1060,"rationale":1061,"selectedPaths":1062,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/solana-vulnerability-scanner","Scans Solana programs for 6 critical vulnerabilities including arbitrary CPI, improper PDA validation, missing signer/ownership checks, and sysvar spoofing. Use when auditing Solana/Anchor programs.","solana-vulnerability-scanner",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/solana-vulnerability-scanner/SKILL.md",[1063],{"path":951,"priority":310},{"basePath":1065,"description":1066,"displayName":1067,"installMethods":1068,"rationale":1069,"selectedPaths":1070,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/substrate-vulnerability-scanner","Scans Substrate/Polkadot pallets for 7 critical vulnerabilities including arithmetic overflow, panic DoS, incorrect weights, and bad origin checks. Use when auditing Substrate runtimes or FRAME pallets.","substrate-vulnerability-scanner",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/substrate-vulnerability-scanner/SKILL.md",[1071],{"path":951,"priority":310},{"basePath":1073,"description":1074,"displayName":1075,"installMethods":1076,"rationale":1077,"selectedPaths":1078,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/token-integration-analyzer","Token integration and implementation analyzer based on Trail of Bits' token integration checklist. Analyzes token implementations for ERC20/ERC721 conformity, checks for 20+ weird token patterns, assesses contract composition and owner privileges, performs on-chain scarcity analysis, and evaluates how protocols handle non-standard tokens. Context-aware for both token implementations and token integrations.","token-integration-analyzer",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/token-integration-analyzer/SKILL.md",[1079],{"path":951,"priority":310},{"basePath":1081,"description":1082,"displayName":1083,"installMethods":1084,"rationale":1085,"selectedPaths":1086,"source":316,"sourceLanguage":17,"type":952},"plugins/building-secure-contracts/skills/ton-vulnerability-scanner","Scans TON (The Open Network) smart contracts for 3 critical vulnerabilities including integer-as-boolean misuse, fake Jetton contracts, and forward TON without gas checks. Use when auditing FunC contracts.","ton-vulnerability-scanner",{"claudeCode":268},"SKILL.md frontmatter at plugins/building-secure-contracts/skills/ton-vulnerability-scanner/SKILL.md",[1087],{"path":951,"priority":310},{"basePath":1089,"description":1090,"displayName":379,"installMethods":1091,"rationale":1092,"selectedPaths":1093,"source":316,"sourceLanguage":17,"type":952},"plugins/burpsuite-project-parser/skills/burpsuite-project-parser","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.",{"claudeCode":268},"SKILL.md frontmatter at plugins/burpsuite-project-parser/skills/burpsuite-project-parser/SKILL.md",[1094,1095],{"path":951,"priority":310},{"path":1096,"priority":1097},"scripts/burp-search.sh","low",{"basePath":1099,"description":1100,"displayName":705,"installMethods":1101,"rationale":1102,"selectedPaths":1103,"source":316,"sourceLanguage":17,"type":952},"plugins/c-review/skills/c-review","Performs comprehensive C/C++ security review for memory corruption, integer overflows, race conditions, and platform-specific vulnerabilities. Use when auditing native C/C++ applications, reviewing daemons or services for memory safety, or hunting integer overflow / use-after-free / race conditions in userspace code.",{"claudeCode":268},"SKILL.md frontmatter at plugins/c-review/skills/c-review/SKILL.md",[1104],{"path":951,"priority":310},{"basePath":1106,"description":1107,"displayName":392,"installMethods":1108,"rationale":1109,"selectedPaths":1110,"source":316,"sourceLanguage":17,"type":952},"plugins/claude-in-chrome-troubleshooting/skills/claude-in-chrome-troubleshooting","Diagnose and fix Claude in Chrome MCP extension connectivity issues. Use when mcp__claude-in-chrome__* tools fail, return \"Browser extension is not connected\", or behave erratically.",{"claudeCode":268},"SKILL.md frontmatter at plugins/claude-in-chrome-troubleshooting/skills/claude-in-chrome-troubleshooting/SKILL.md",[1111],{"path":951,"priority":310},{"basePath":1113,"description":1114,"displayName":403,"installMethods":1115,"rationale":1116,"selectedPaths":1117,"source":316,"sourceLanguage":17,"type":952},"plugins/constant-time-analysis/skills/constant-time-analysis","Detects timing side-channel vulnerabilities in cryptographic code. Use when implementing or reviewing crypto code, encountering division on secrets, secret-dependent branches, or constant-time programming questions in C, C++, Go, Rust, Swift, Java, Kotlin, C#, PHP, JavaScript, TypeScript, Python, or Ruby.",{"claudeCode":268},"SKILL.md frontmatter at plugins/constant-time-analysis/skills/constant-time-analysis/SKILL.md",[1118,1119,1120,1122,1124,1126,1128,1130,1132,1134],{"path":951,"priority":310},{"path":312,"priority":315},{"path":1121,"priority":329},"references/compiled.md",{"path":1123,"priority":329},"references/javascript.md",{"path":1125,"priority":329},"references/kotlin.md",{"path":1127,"priority":329},"references/php.md",{"path":1129,"priority":329},"references/python.md",{"path":1131,"priority":329},"references/ruby.md",{"path":1133,"priority":329},"references/swift.md",{"path":1135,"priority":329},"references/vm-compiled.md",{"basePath":1137,"description":1138,"displayName":1139,"installMethods":1140,"rationale":1141,"selectedPaths":1142,"source":316,"sourceLanguage":17,"type":952},"plugins/culture-index/skills/interpreting-culture-index","Interprets Culture Index (CI) surveys, behavioral profiles, and personality assessment data. Supports individual profile interpretation, team composition analysis (gas/brake/glue), burnout detection, profile comparison, hiring profiles, manager coaching, interview transcript analysis for trait prediction, candidate debrief, onboarding planning, and conflict mediation. Accepts extracted JSON or PDF input via OpenCV extraction script.","interpreting-culture-index",{"claudeCode":268},"SKILL.md frontmatter at plugins/culture-index/skills/interpreting-culture-index/SKILL.md",[1143,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220],{"path":951,"priority":310},{"path":1145,"priority":329},"references/anti-patterns.md",{"path":1147,"priority":329},"references/archetype-administrator.md",{"path":1149,"priority":329},"references/archetype-coordinator.md",{"path":1151,"priority":329},"references/archetype-craftsman.md",{"path":1153,"priority":329},"references/archetype-daredevil.md",{"path":1155,"priority":329},"references/archetype-debater.md",{"path":1157,"priority":329},"references/archetype-facilitator.md",{"path":1159,"priority":329},"references/archetype-influencer.md",{"path":1161,"priority":329},"references/archetype-operator.md",{"path":1163,"priority":329},"references/archetype-persuader.md",{"path":1165,"priority":329},"references/archetype-philosopher.md",{"path":1167,"priority":329},"references/archetype-rainmaker.md",{"path":1169,"priority":329},"references/archetype-scholar.md",{"path":1171,"priority":329},"references/archetype-socializer.md",{"path":1173,"priority":329},"references/archetype-specialist.md",{"path":1175,"priority":329},"references/archetype-technical-expert.md",{"path":1177,"priority":329},"references/archetype-traditionalist.md",{"path":1179,"priority":329},"references/archetype-trailblazer.md",{"path":1181,"priority":329},"references/conversation-starters.md",{"path":1183,"priority":329},"references/interview-trait-signals.md",{"path":1185,"priority":329},"references/motivators.md",{"path":1187,"priority":329},"references/patterns-archetypes.md",{"path":1189,"priority":329},"references/primary-traits.md",{"path":1191,"priority":329},"references/secondary-traits.md",{"path":1193,"priority":329},"references/team-composition.md",{"path":1195,"priority":1097},"scripts/check_deps.py",{"path":1197,"priority":1097},"scripts/culture_index/__init__.py",{"path":1199,"priority":1097},"scripts/culture_index/constants.py",{"path":1201,"priority":1097},"scripts/culture_index/extract.py",{"path":1203,"priority":1097},"scripts/culture_index/models.py",{"path":1205,"priority":1097},"scripts/culture_index/opencv_extractor.py",{"path":1207,"priority":1097},"scripts/extract_pdf.py",{"path":1209,"priority":1097},"scripts/pyproject.toml",{"path":1211,"priority":1097},"templates/burnout-report.md",{"path":1213,"priority":1097},"templates/comparison-report.md",{"path":1215,"priority":1097},"templates/hiring-profile.md",{"path":1217,"priority":1097},"templates/individual-report.md",{"path":1219,"priority":1097},"templates/predicted-profile.md",{"path":1221,"priority":1097},"templates/team-report.md",{"basePath":1223,"description":1224,"displayName":427,"installMethods":1225,"rationale":1226,"selectedPaths":1227,"source":316,"sourceLanguage":17,"type":952},"plugins/debug-buttercup/skills/debug-buttercup","Debugs the Buttercup CRS (Cyber Reasoning System) running on Kubernetes. Use when diagnosing pod crashes, restart loops, Redis failures, resource pressure, disk saturation, DinD issues, or any service misbehavior in the crs namespace. Covers triage, log analysis, queue inspection, and common failure patterns for: redis, fuzzer-bot, coverage-bot, seed-gen, patcher, build-bot, scheduler, task-server, task-downloader, program-model, litellm, dind, tracer-bot, merger-bot, competition-api, pov-reproducer, scratch-cleaner, registry-cache, image-preloader, ui.\n",{"claudeCode":268},"SKILL.md frontmatter at plugins/debug-buttercup/skills/debug-buttercup/SKILL.md",[1228,1229,1231],{"path":951,"priority":310},{"path":1230,"priority":329},"references/failure-patterns.md",{"path":1232,"priority":1097},"scripts/diagnose.sh",{"basePath":1234,"description":1235,"displayName":438,"installMethods":1236,"rationale":1237,"selectedPaths":1238,"source":316,"sourceLanguage":17,"type":952},"plugins/devcontainer-setup/skills/devcontainer-setup","Creates devcontainers with Claude Code, language-specific tooling (Python/Node/Rust/Go), and persistent volumes. Use when adding devcontainer support to a project, setting up isolated development environments, or configuring sandboxed Claude Code workspaces.",{"claudeCode":268},"SKILL.md frontmatter at plugins/devcontainer-setup/skills/devcontainer-setup/SKILL.md",[1239,1240,1242],{"path":951,"priority":310},{"path":1241,"priority":329},"references/dockerfile-best-practices.md",{"path":1243,"priority":329},"references/features-vs-dockerfile.md",{"basePath":1245,"description":1246,"displayName":449,"installMethods":1247,"rationale":1248,"selectedPaths":1249,"source":316,"sourceLanguage":17,"type":952},"plugins/differential-review/skills/differential-review","Performs security-focused differential review of code changes (PRs, commits, diffs). Adapts analysis depth to codebase size, uses git history for context, calculates blast radius, checks test coverage, and generates comprehensive markdown reports. Automatically detects and prevents security regressions.\n",{"claudeCode":268},"SKILL.md frontmatter at plugins/differential-review/skills/differential-review/SKILL.md",[1250,1251,1253,1255,1257],{"path":951,"priority":310},{"path":1252,"priority":329},"adversarial.md",{"path":1254,"priority":329},"methodology.md",{"path":1256,"priority":329},"patterns.md",{"path":1258,"priority":329},"reporting.md",{"basePath":1260,"description":1261,"displayName":926,"installMethods":1262,"rationale":1263,"selectedPaths":1264,"source":316,"sourceLanguage":17,"type":952},"plugins/dimensional-analysis/skills/dimensional-analysis","Annotates codebases with dimensional analysis comments documenting units, dimensions, and decimal scaling. Use when someone asks to annotate units in a codebase, perform a dimensional analysis, or find vulnerabilities in a DeFi protocol, offchain code, or other blockchain-related codebase with arithmetic. Prevents dimensional mismatches and catches formula bugs early.",{"claudeCode":268},"SKILL.md frontmatter at plugins/dimensional-analysis/skills/dimensional-analysis/SKILL.md",[1265,1266,1268,1270,1272],{"path":951,"priority":310},{"path":1267,"priority":329},"references/annotate.md",{"path":1269,"priority":329},"references/bug-patterns.md",{"path":1271,"priority":329},"references/common-dimensions.md",{"path":1273,"priority":329},"references/dimension-algebra.md",{"basePath":1275,"description":1276,"displayName":509,"installMethods":1277,"rationale":1278,"selectedPaths":1279,"source":316,"sourceLanguage":17,"type":952},"plugins/dwarf-expert/skills/dwarf-expert","Provides expertise for analyzing DWARF debug files and understanding the DWARF debug format/standard (v3-v5). Triggers when understanding DWARF information, interacting with DWARF files, answering DWARF-related questions, or working with code that parses DWARF data.",{"claudeCode":268},"SKILL.md frontmatter at plugins/dwarf-expert/skills/dwarf-expert/SKILL.md",[1280],{"path":951,"priority":310},{"basePath":1282,"description":1283,"displayName":520,"installMethods":1284,"rationale":1285,"selectedPaths":1286,"source":316,"sourceLanguage":17,"type":952},"plugins/entry-point-analyzer/skills/entry-point-analyzer","Analyzes smart contract codebases to identify state-changing entry points for security auditing. Detects externally callable functions that modify state, categorizes them by access level (public, admin, role-restricted, contract-only), and generates structured audit reports. Excludes view/pure/read-only functions. Use when auditing smart contracts (Solidity, Vyper, Solana/Rust, Move, TON, CosmWasm) or when asked to find entry points, audit flows, external functions, access control patterns, or privileged operations.",{"claudeCode":268},"SKILL.md frontmatter at plugins/entry-point-analyzer/skills/entry-point-analyzer/SKILL.md",[1287,1288,1290,1292,1294,1296,1298,1300],{"path":951,"priority":310},{"path":1289,"priority":329},"references/cosmwasm.md",{"path":1291,"priority":329},"references/move-aptos.md",{"path":1293,"priority":329},"references/move-sui.md",{"path":1295,"priority":329},"references/solana.md",{"path":1297,"priority":329},"references/solidity.md",{"path":1299,"priority":329},"references/ton.md",{"path":1301,"priority":329},"references/vyper.md",{"basePath":1303,"description":1304,"displayName":464,"installMethods":1305,"rationale":1306,"selectedPaths":1307,"source":316,"sourceLanguage":17,"type":952},"plugins/firebase-apk-scanner/skills/firebase-apk-scanner","Scans Android APKs for Firebase security misconfigurations including open databases, storage buckets, authentication issues, and exposed cloud functions. Use when analyzing APK files for Firebase vulnerabilities, performing mobile app security audits, or testing Firebase endpoint security. For authorized security research only.",{"claudeCode":268},"SKILL.md frontmatter at plugins/firebase-apk-scanner/skills/firebase-apk-scanner/SKILL.md",[1308,1309],{"path":951,"priority":310},{"path":1310,"priority":329},"references/vulnerabilities.md",{"basePath":1312,"description":1313,"displayName":908,"installMethods":1314,"rationale":1315,"selectedPaths":1316,"source":316,"sourceLanguage":17,"type":952},"plugins/fp-check/skills/fp-check","Systematically verifies suspected security bugs to eliminate false positives. Produces TRUE POSITIVE or FALSE POSITIVE verdicts with documented evidence for each bug.",{"claudeCode":268},"SKILL.md frontmatter at plugins/fp-check/skills/fp-check/SKILL.md",[1317,1318,1320,1322,1324,1326,1328],{"path":951,"priority":310},{"path":1319,"priority":329},"references/bug-class-verification.md",{"path":1321,"priority":329},"references/deep-verification.md",{"path":1323,"priority":329},"references/evidence-templates.md",{"path":1325,"priority":329},"references/false-positive-patterns.md",{"path":1327,"priority":329},"references/gate-reviews.md",{"path":1329,"priority":329},"references/standard-verification.md",{"basePath":1331,"description":786,"displayName":787,"installMethods":1332,"rationale":1333,"selectedPaths":1334,"source":316,"sourceLanguage":17,"type":952},"plugins/git-cleanup/skills/git-cleanup",{"claudeCode":268},"SKILL.md frontmatter at plugins/git-cleanup/skills/git-cleanup/SKILL.md",[1335],{"path":951,"priority":310},{"basePath":1337,"description":1338,"displayName":752,"installMethods":1339,"rationale":1340,"selectedPaths":1341,"source":316,"sourceLanguage":17,"type":952},"plugins/insecure-defaults/skills/insecure-defaults","Detects fail-open insecure defaults (hardcoded secrets, weak auth, permissive security) that allow apps to run insecurely in production. Use when auditing security, reviewing config management, or analyzing environment variable handling.",{"claudeCode":268},"SKILL.md frontmatter at plugins/insecure-defaults/skills/insecure-defaults/SKILL.md",[1342,1343],{"path":951,"priority":310},{"path":1344,"priority":329},"references/examples.md",{"basePath":1346,"description":1347,"displayName":866,"installMethods":1348,"rationale":1349,"selectedPaths":1350,"source":316,"sourceLanguage":17,"type":952},"plugins/let-fate-decide/skills/let-fate-decide","Draws 4 Tarot cards to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.",{"claudeCode":268},"SKILL.md frontmatter at plugins/let-fate-decide/skills/let-fate-decide/SKILL.md",[1351,1352,1354,1356,1357],{"path":951,"priority":310},{"path":1353,"priority":329},"references/INTERPRETATION_GUIDE.md",{"path":1355,"priority":1097},"scripts/draw_cards.py",{"path":1209,"priority":1097},{"path":1358,"priority":1097},"scripts/test_draw_cards.py",{"basePath":1360,"description":1361,"displayName":722,"installMethods":1362,"rationale":1363,"selectedPaths":1364,"source":316,"sourceLanguage":17,"type":952},"plugins/modern-python/skills/modern-python","Configures Python projects with modern tooling (uv, ruff, ty). Use when creating projects, writing standalone scripts, or migrating from pip/Poetry/mypy/black.",{"claudeCode":268},"SKILL.md frontmatter at plugins/modern-python/skills/modern-python/SKILL.md",[1365,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386],{"path":951,"priority":310},{"path":1367,"priority":329},"references/dependabot.md",{"path":1369,"priority":329},"references/migration-checklist.md",{"path":1371,"priority":329},"references/pep723-scripts.md",{"path":1373,"priority":329},"references/prek.md",{"path":1375,"priority":329},"references/pyproject.md",{"path":1377,"priority":329},"references/ruff-config.md",{"path":1379,"priority":329},"references/security-setup.md",{"path":1381,"priority":329},"references/testing.md",{"path":1383,"priority":329},"references/uv-commands.md",{"path":1385,"priority":1097},"templates/dependabot.yml",{"path":1387,"priority":1097},"templates/pre-commit-config.yaml",{"basePath":1389,"description":532,"displayName":533,"installMethods":1390,"rationale":1391,"selectedPaths":1392,"source":316,"sourceLanguage":17,"type":952},"plugins/mutation-testing/skills/mutation-testing",{"claudeCode":268},"SKILL.md frontmatter at plugins/mutation-testing/skills/mutation-testing/SKILL.md",[1393,1394],{"path":951,"priority":310},{"path":1395,"priority":329},"references/optimization-strategies.md",{"basePath":1397,"description":1398,"displayName":544,"installMethods":1399,"rationale":1400,"selectedPaths":1401,"source":316,"sourceLanguage":17,"type":952},"plugins/property-based-testing/skills/property-based-testing","Provides guidance for property-based testing across multiple languages and smart contracts. Use when writing tests, reviewing code with serialization/validation/parsing patterns, designing features, or when property-based testing would provide stronger coverage than example-based tests.",{"claudeCode":268},"SKILL.md frontmatter at plugins/property-based-testing/skills/property-based-testing/SKILL.md",[1402,1403,1404,1406,1408,1410,1412,1414,1416],{"path":951,"priority":310},{"path":312,"priority":315},{"path":1405,"priority":329},"references/design.md",{"path":1407,"priority":329},"references/generating.md",{"path":1409,"priority":329},"references/interpreting-failures.md",{"path":1411,"priority":329},"references/libraries.md",{"path":1413,"priority":329},"references/refactoring.md",{"path":1415,"priority":329},"references/reviewing.md",{"path":1417,"priority":329},"references/strategies.md",{"basePath":1419,"description":1420,"displayName":811,"installMethods":1421,"rationale":1422,"selectedPaths":1423,"source":316,"sourceLanguage":17,"type":952},"plugins/seatbelt-sandboxer/skills/seatbelt-sandboxer","Generates minimal macOS Seatbelt sandbox configurations. Use when sandboxing, isolating, or restricting macOS applications with allowlist-based profiles.",{"claudeCode":268},"SKILL.md frontmatter at plugins/seatbelt-sandboxer/skills/seatbelt-sandboxer/SKILL.md",[1424],{"path":951,"priority":310},{"basePath":1426,"description":1427,"displayName":763,"installMethods":1428,"rationale":1429,"selectedPaths":1430,"source":316,"sourceLanguage":17,"type":952},"plugins/second-opinion/skills/second-opinion","Runs external LLM code reviews (OpenAI Codex or Google Gemini CLI) on uncommitted changes, branch diffs, or specific commits. Use when the user asks for a second opinion, external review, codex review, gemini review, or mentions /second-opinion.",{"claudeCode":268},"SKILL.md frontmatter at plugins/second-opinion/skills/second-opinion/SKILL.md",[1431,1432,1434,1436],{"path":951,"priority":310},{"path":1433,"priority":329},"references/codex-invocation.md",{"path":1435,"priority":329},"references/codex-review-schema.json",{"path":1437,"priority":329},"references/gemini-invocation.md",{"basePath":1439,"description":1440,"displayName":555,"installMethods":1441,"rationale":1442,"selectedPaths":1443,"source":316,"sourceLanguage":17,"type":952},"plugins/semgrep-rule-creator/skills/semgrep-rule-creator","Creates custom Semgrep rules for detecting security vulnerabilities, bug patterns, and code patterns. Use when writing Semgrep rules or building custom static analysis detections.",{"claudeCode":268},"SKILL.md frontmatter at plugins/semgrep-rule-creator/skills/semgrep-rule-creator/SKILL.md",[1444,1445,1447],{"path":951,"priority":310},{"path":1446,"priority":329},"references/quick-reference.md",{"path":1448,"priority":329},"references/workflow.md",{"basePath":1450,"description":1451,"displayName":568,"installMethods":1452,"rationale":1453,"selectedPaths":1454,"source":316,"sourceLanguage":17,"type":952},"plugins/semgrep-rule-variant-creator/skills/semgrep-rule-variant-creator","Creates language variants of existing Semgrep rules. Use when porting a Semgrep rule to specified target languages. Takes an existing rule and target languages as input, produces independent rule+test directories for each language.",{"claudeCode":268},"SKILL.md frontmatter at plugins/semgrep-rule-variant-creator/skills/semgrep-rule-variant-creator/SKILL.md",[1455,1456,1458,1460],{"path":951,"priority":310},{"path":1457,"priority":329},"references/applicability-analysis.md",{"path":1459,"priority":329},"references/language-syntax-guide.md",{"path":1448,"priority":329},{"basePath":1462,"description":1463,"displayName":579,"installMethods":1464,"rationale":1465,"selectedPaths":1466,"source":316,"sourceLanguage":17,"type":952},"plugins/sharp-edges/skills/sharp-edges","Identifies error-prone APIs, dangerous configurations, and footgun designs that enable security mistakes. Use when reviewing API designs, configuration schemas, cryptographic library ergonomics, or evaluating whether code follows 'secure by default' and 'pit of success' principles. Triggers: footgun, misuse-resistant, secure defaults, API usability, dangerous configuration.",{"claudeCode":268},"SKILL.md frontmatter at plugins/sharp-edges/skills/sharp-edges/SKILL.md",[1467,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498],{"path":951,"priority":310},{"path":1469,"priority":329},"references/auth-patterns.md",{"path":1471,"priority":329},"references/case-studies.md",{"path":1473,"priority":329},"references/config-patterns.md",{"path":1475,"priority":329},"references/crypto-apis.md",{"path":1477,"priority":329},"references/lang-c.md",{"path":1479,"priority":329},"references/lang-csharp.md",{"path":1481,"priority":329},"references/lang-go.md",{"path":1483,"priority":329},"references/lang-java.md",{"path":1485,"priority":329},"references/lang-javascript.md",{"path":1487,"priority":329},"references/lang-kotlin.md",{"path":1489,"priority":329},"references/lang-php.md",{"path":1491,"priority":329},"references/lang-python.md",{"path":1493,"priority":329},"references/lang-ruby.md",{"path":1495,"priority":329},"references/lang-rust.md",{"path":1497,"priority":329},"references/lang-swift.md",{"path":1499,"priority":329},"references/language-specific.md",{"basePath":1501,"description":1502,"displayName":890,"installMethods":1503,"rationale":1504,"selectedPaths":1505,"source":316,"sourceLanguage":17,"type":952},"plugins/skill-improver/skills/skill-improver","Iteratively reviews and fixes Claude Code skill quality issues until they meet standards. Runs automated fix-review cycles using the skill-reviewer agent. Use to fix skill quality issues, improve skill descriptions, run automated skill review loops, or iteratively refine a skill. Triggers on 'fix my skill', 'improve skill quality', 'skill improvement loop'. NOT for one-time reviews—use /skill-reviewer directly.",{"claudeCode":268},"SKILL.md frontmatter at plugins/skill-improver/skills/skill-improver/SKILL.md",[1506],{"path":951,"priority":310},{"basePath":1508,"description":1509,"displayName":609,"installMethods":1510,"rationale":1511,"selectedPaths":1512,"source":316,"sourceLanguage":17,"type":952},"plugins/spec-to-code-compliance/skills/spec-to-code-compliance","Verifies code implements exactly what documentation specifies for blockchain audits. Use when comparing code against whitepapers, finding gaps between specs and implementation, or performing compliance checks for protocol implementations.",{"claudeCode":268},"SKILL.md frontmatter at plugins/spec-to-code-compliance/skills/spec-to-code-compliance/SKILL.md",[1513],{"path":951,"priority":310},{"basePath":1515,"description":1516,"displayName":1517,"installMethods":1518,"rationale":1519,"selectedPaths":1520,"source":316,"sourceLanguage":17,"type":952},"plugins/static-analysis/skills/codeql","Scans a codebase for security vulnerabilities using CodeQL's interprocedural data flow and taint tracking analysis. Triggers on \"run codeql\", \"codeql scan\", \"codeql analysis\", \"build codeql database\", or \"find vulnerabilities with codeql\". Supports \"run all\" (security-and-quality + security-experimental suites) and \"important only\" (high-precision security findings) scan modes. Also handles creating data extension models and processing CodeQL SARIF output.","codeql",{"claudeCode":268},"SKILL.md frontmatter at plugins/static-analysis/skills/codeql/SKILL.md",[1521,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544],{"path":951,"priority":310},{"path":1523,"priority":329},"references/build-fixes.md",{"path":1525,"priority":329},"references/diagnostic-query-templates.md",{"path":1527,"priority":329},"references/extension-yaml-format.md",{"path":1529,"priority":329},"references/important-only-suite.md",{"path":1531,"priority":329},"references/language-details.md",{"path":1533,"priority":329},"references/macos-arm64e-workaround.md",{"path":1535,"priority":329},"references/performance-tuning.md",{"path":1537,"priority":329},"references/quality-assessment.md",{"path":1539,"priority":329},"references/ruleset-catalog.md",{"path":1541,"priority":329},"references/run-all-suite.md",{"path":1543,"priority":329},"references/sarif-processing.md",{"path":1545,"priority":329},"references/threat-models.md",{"basePath":1547,"description":1548,"displayName":1549,"installMethods":1550,"rationale":1551,"selectedPaths":1552,"source":316,"sourceLanguage":17,"type":952},"plugins/static-analysis/skills/sarif-parsing","Parses and processes SARIF files from static analysis tools like CodeQL, Semgrep, or other scanners. Triggers on \"parse sarif\", \"read scan results\", \"aggregate findings\", \"deduplicate alerts\", or \"process sarif output\". Handles filtering, deduplication, format conversion, and CI/CD integration of SARIF data. Does NOT run scans — use the Semgrep or CodeQL skills for that.","sarif-parsing",{"claudeCode":268},"SKILL.md frontmatter at plugins/static-analysis/skills/sarif-parsing/SKILL.md",[1553],{"path":951,"priority":310},{"basePath":1555,"description":1556,"displayName":1557,"installMethods":1558,"rationale":1559,"selectedPaths":1560,"source":316,"sourceLanguage":17,"type":952},"plugins/static-analysis/skills/semgrep","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.","semgrep",{"claudeCode":268},"SKILL.md frontmatter at plugins/static-analysis/skills/semgrep/SKILL.md",[1561,1562,1564,1566,1568],{"path":951,"priority":310},{"path":1563,"priority":329},"references/rulesets.md",{"path":1565,"priority":329},"references/scan-modes.md",{"path":1567,"priority":329},"references/scanner-task-prompt.md",{"path":1569,"priority":1097},"scripts/merge_sarif.py",{"basePath":1571,"description":1572,"displayName":822,"installMethods":1573,"rationale":1574,"selectedPaths":1575,"source":316,"sourceLanguage":17,"type":952},"plugins/supply-chain-risk-auditor/skills/supply-chain-risk-auditor","Identifies dependencies at heightened risk of exploitation or takeover. Use when assessing supply chain attack surface, evaluating dependency health, or scoping security engagements.",{"claudeCode":268},"SKILL.md frontmatter at plugins/supply-chain-risk-auditor/skills/supply-chain-risk-auditor/SKILL.md",[1576],{"path":951,"priority":310},{"basePath":1578,"description":1579,"displayName":1580,"installMethods":1581,"rationale":1582,"selectedPaths":1583,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/address-sanitizer","AddressSanitizer detects memory errors during fuzzing. Use when fuzzing C/C++ code to find buffer overflows and use-after-free bugs.\n","address-sanitizer",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/address-sanitizer/SKILL.md",[1584],{"path":951,"priority":310},{"basePath":1586,"description":1587,"displayName":1588,"installMethods":1589,"rationale":1590,"selectedPaths":1591,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/aflpp","AFL++ is a fork of AFL with better fuzzing performance and advanced features. Use for multi-core fuzzing of C/C++ projects.\n","aflpp",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/aflpp/SKILL.md",[1592],{"path":951,"priority":310},{"basePath":1594,"description":1595,"displayName":1596,"installMethods":1597,"rationale":1598,"selectedPaths":1599,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/atheris","Atheris is a coverage-guided Python fuzzer based on libFuzzer. Use for fuzzing pure Python code and Python C extensions.\n","atheris",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/atheris/SKILL.md",[1600],{"path":951,"priority":310},{"basePath":1602,"description":1603,"displayName":1604,"installMethods":1605,"rationale":1606,"selectedPaths":1607,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/cargo-fuzz","cargo-fuzz is the de facto fuzzing tool for Rust projects using Cargo. Use for fuzzing Rust code with libFuzzer backend.\n","cargo-fuzz",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/cargo-fuzz/SKILL.md",[1608],{"path":951,"priority":310},{"basePath":1610,"description":1611,"displayName":1612,"installMethods":1613,"rationale":1614,"selectedPaths":1615,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/constant-time-testing","Constant-time testing detects timing side channels in cryptographic code. Use when auditing crypto implementations for timing vulnerabilities.\n","constant-time-testing",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/constant-time-testing/SKILL.md",[1616],{"path":951,"priority":310},{"basePath":1618,"description":1619,"displayName":1620,"installMethods":1621,"rationale":1622,"selectedPaths":1623,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/coverage-analysis","Coverage analysis measures code exercised during fuzzing. Use when assessing harness effectiveness or identifying fuzzing blockers.\n","coverage-analysis",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/coverage-analysis/SKILL.md",[1624],{"path":951,"priority":310},{"basePath":1626,"description":1627,"displayName":1628,"installMethods":1629,"rationale":1630,"selectedPaths":1631,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/fuzzing-dictionary","Fuzzing dictionaries guide fuzzers with domain-specific tokens. Use when fuzzing parsers, protocols, or format-specific code.\n","fuzzing-dictionary",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/fuzzing-dictionary/SKILL.md",[1632],{"path":951,"priority":310},{"basePath":1634,"description":1635,"displayName":1636,"installMethods":1637,"rationale":1638,"selectedPaths":1639,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/fuzzing-obstacles","Techniques for patching code to overcome fuzzing obstacles. Use when checksums, global state, or other barriers block fuzzer progress.\n","fuzzing-obstacles",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/fuzzing-obstacles/SKILL.md",[1640],{"path":951,"priority":310},{"basePath":1642,"description":1643,"displayName":1644,"installMethods":1645,"rationale":1646,"selectedPaths":1647,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/harness-writing","Techniques for writing effective fuzzing harnesses across languages. Use when creating new fuzz targets or improving existing harness code.\n","harness-writing",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/harness-writing/SKILL.md",[1648],{"path":951,"priority":310},{"basePath":1650,"description":1651,"displayName":1652,"installMethods":1653,"rationale":1654,"selectedPaths":1655,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/libafl","LibAFL is a modular fuzzing library for building custom fuzzers. Use for advanced fuzzing needs, custom mutators, or non-standard fuzzing targets.\n","libafl",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/libafl/SKILL.md",[1656],{"path":951,"priority":310},{"basePath":1658,"description":1659,"displayName":1660,"installMethods":1661,"rationale":1662,"selectedPaths":1663,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/libfuzzer","Coverage-guided fuzzer built into LLVM for C/C++ projects. Use for fuzzing C/C++ code that can be compiled with Clang.\n","libfuzzer",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/libfuzzer/SKILL.md",[1664],{"path":951,"priority":310},{"basePath":1666,"description":1667,"displayName":1668,"installMethods":1669,"rationale":1670,"selectedPaths":1671,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/ossfuzz","OSS-Fuzz provides free continuous fuzzing for open source projects. Use when setting up continuous fuzzing infrastructure or enrolling projects.\n","ossfuzz",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/ossfuzz/SKILL.md",[1672],{"path":951,"priority":310},{"basePath":1674,"description":1675,"displayName":1676,"installMethods":1677,"rationale":1678,"selectedPaths":1679,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/ruzzy","Ruzzy is a coverage-guided Ruby fuzzer by Trail of Bits. Use for fuzzing pure Ruby code and Ruby C extensions.\n","ruzzy",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/ruzzy/SKILL.md",[1680],{"path":951,"priority":310},{"basePath":1682,"description":1683,"displayName":1684,"installMethods":1685,"rationale":1686,"selectedPaths":1687,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/testing-handbook-generator","Meta-skill that analyzes the Trail of Bits Testing Handbook (appsec.guide) and generates Claude Code skills for security testing tools and techniques. Use when creating new skills based on handbook content.\n","testing-handbook-generator",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/testing-handbook-generator/SKILL.md",[1688,1689,1691,1693,1695,1697,1699,1701],{"path":951,"priority":310},{"path":1690,"priority":329},"agent-prompt.md",{"path":1692,"priority":329},"discovery.md",{"path":1694,"priority":1097},"templates/domain-skill.md",{"path":1696,"priority":1097},"templates/fuzzer-skill.md",{"path":1698,"priority":1097},"templates/technique-skill.md",{"path":1700,"priority":1097},"templates/tool-skill.md",{"path":1702,"priority":329},"testing.md",{"basePath":1704,"description":1705,"displayName":1706,"installMethods":1707,"rationale":1708,"selectedPaths":1709,"source":316,"sourceLanguage":17,"type":952},"plugins/testing-handbook-skills/skills/wycheproof","Wycheproof provides test vectors for validating cryptographic implementations. Use when testing crypto code for known attacks and edge cases.\n","wycheproof",{"claudeCode":268},"SKILL.md frontmatter at plugins/testing-handbook-skills/skills/wycheproof/SKILL.md",[1710],{"path":951,"priority":310},{"basePath":1712,"description":1713,"displayName":1714,"installMethods":1715,"rationale":1716,"selectedPaths":1717,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/audit-augmentation","Augments Trailmark code graphs with external audit findings from SARIF static analysis results and weAudit annotation files. 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, cross-referencing Semgrep or CodeQL findings with call graph data, or visualizing audit findings in the context of code structure.\n","audit-augmentation",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/audit-augmentation/SKILL.md",[1718,1719],{"path":951,"priority":310},{"path":1720,"priority":329},"references/formats.md",{"basePath":1722,"description":1723,"displayName":1724,"installMethods":1725,"rationale":1726,"selectedPaths":1727,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/crypto-protocol-diagram","Extracts protocol message flow from source code, RFCs, academic papers, pseudocode, informal prose, ProVerif (.pv), or Tamarin (.spthy) models and generates Mermaid sequenceDiagrams with cryptographic annotations. Use when diagramming a crypto protocol, visualizing a handshake or key exchange flow, extracting message flow from a spec or RFC, diagramming a ProVerif or Tamarin model, or drawing sequence diagrams for TLS, Noise, Signal, X3DH, Double Ratchet, FROST, DH, or ECDH protocols.","crypto-protocol-diagram",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/crypto-protocol-diagram/SKILL.md",[1728,1729,1731,1733,1735,1737,1739,1741,1743],{"path":951,"priority":310},{"path":1730,"priority":1097},"examples/simple-handshake/expected-output.md",{"path":1732,"priority":1097},"examples/simple-handshake/protocol.py",{"path":1734,"priority":1097},"examples/simple-proverif/expected-output.md",{"path":1736,"priority":1097},"examples/simple-proverif/model.pv",{"path":1738,"priority":329},"references/ascii-sequence-diagram.md",{"path":1740,"priority":329},"references/mermaid-sequence-syntax.md",{"path":1742,"priority":329},"references/protocol-patterns.md",{"path":1744,"priority":329},"references/spec-parsing-patterns.md",{"basePath":1746,"description":1747,"displayName":1748,"installMethods":1749,"rationale":1750,"selectedPaths":1751,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/diagramming-code","Generates Mermaid diagrams from Trailmark code graphs. Produces call graphs, class hierarchies, module dependency maps, containment diagrams, complexity heatmaps, and attack surface data flow visualizations. Use when visualizing code architecture, drawing call graphs, generating class diagrams, creating dependency maps, producing complexity heatmaps, or visualizing data flow and attack surface paths as Mermaid diagrams.\n","diagramming-code",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/diagramming-code/SKILL.md",[1752,1753,1755,1757],{"path":951,"priority":310},{"path":1754,"priority":329},"references/diagram-types.md",{"path":1756,"priority":329},"references/mermaid-syntax.md",{"path":1758,"priority":1097},"scripts/diagram.py",{"basePath":1760,"description":1761,"displayName":1762,"installMethods":1763,"rationale":1764,"selectedPaths":1765,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/genotoxic","Graph-informed mutation testing triage. Parses codebases with Trailmark, runs mutation testing and necessist, then uses survived mutants, unnecessary test statements, and call graph data to identify false positives, missing test coverage, and fuzzing targets. Use when triaging survived mutants, analyzing mutation testing results, identifying test gaps, finding fuzzing targets from weak tests, running mutation frameworks (including circomvent and cairo-mutants), or using necessist.","genotoxic",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/genotoxic/SKILL.md",[1766,1767,1769,1771],{"path":951,"priority":310},{"path":1768,"priority":329},"references/graph-analysis.md",{"path":1770,"priority":329},"references/mutation-frameworks.md",{"path":1772,"priority":329},"references/triage-methodology.md",{"basePath":1774,"description":1775,"displayName":1776,"installMethods":1777,"rationale":1778,"selectedPaths":1779,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/graph-evolution","Compares Trailmark code graphs at two source code snapshots (git commits, tags, or directories) to surface security-relevant structural changes. Detects new attack paths, complexity shifts, blast radius growth, taint propagation changes, and privilege boundary modifications that text diffs miss. Use when comparing code between commits or tags, analyzing structural evolution, detecting attack surface growth, reviewing what changed between audit snapshots, or finding security-relevant changes that text diffs miss.\n","graph-evolution",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/graph-evolution/SKILL.md",[1780,1781,1783,1785],{"path":951,"priority":310},{"path":1782,"priority":329},"references/evolution-metrics.md",{"path":1784,"priority":329},"references/report-format.md",{"path":1786,"priority":1097},"scripts/graph_diff.py",{"basePath":1788,"description":1789,"displayName":1790,"installMethods":1791,"rationale":1792,"selectedPaths":1793,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/mermaid-to-proverif","Translates Mermaid sequenceDiagrams describing cryptographic protocols into ProVerif formal verification models (.pv files). Use when generating a ProVerif model, formally verifying a protocol, converting a Mermaid diagram to ProVerif, verifying protocol security properties (secrecy, authentication, forward secrecy), checking for replay attacks, or producing a .pv file from a sequence diagram.","mermaid-to-proverif",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/mermaid-to-proverif/SKILL.md",[1794,1795,1797,1799,1801,1803],{"path":951,"priority":310},{"path":1796,"priority":1097},"examples/simple-handshake/diagram.md",{"path":1798,"priority":1097},"examples/simple-handshake/sample-output.pv",{"path":1800,"priority":329},"references/crypto-to-proverif-mapping.md",{"path":1802,"priority":329},"references/proverif-syntax.md",{"path":1804,"priority":329},"references/security-properties.md",{"basePath":1806,"description":1807,"displayName":663,"installMethods":1808,"rationale":1809,"selectedPaths":1810,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/trailmark","Builds and queries multi-language source code graphs for security analysis. Includes pre-analysis passes for blast radius, taint propagation, privilege boundaries, and entry point enumeration. Use when analyzing call paths, mapping attack surface, finding complexity hotspots, enumerating entry points, tracing taint propagation, measuring blast radius, or building a code graph for audit prioritization. Prefer `trailmark.parse.detect_languages()` or `--language auto` when the target language is unknown or polyglot.",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/trailmark/SKILL.md",[1811,1812,1814],{"path":951,"priority":310},{"path":1813,"priority":329},"references/preanalysis-passes.md",{"path":1815,"priority":329},"references/query-patterns.md",{"basePath":1817,"description":1818,"displayName":1819,"installMethods":1820,"rationale":1821,"selectedPaths":1822,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/trailmark-structural","Runs full Trailmark structural analysis on Trailmark 0.2.x by building a graph, running `preanalysis()`, and reporting hotspots, taint, blast radius, privilege boundaries, and attack surface. Use when vivisect needs detailed structural data for a target. Triggers: structural analysis, blast radius, taint analysis, complexity hotspots.","trailmark-structural",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/trailmark-structural/SKILL.md",[1823],{"path":951,"priority":310},{"basePath":1825,"description":1826,"displayName":1827,"installMethods":1828,"rationale":1829,"selectedPaths":1830,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/trailmark-summary","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.","trailmark-summary",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/trailmark-summary/SKILL.md",[1831],{"path":951,"priority":310},{"basePath":1833,"description":1834,"displayName":1835,"installMethods":1836,"rationale":1837,"selectedPaths":1838,"source":316,"sourceLanguage":17,"type":952},"plugins/trailmark/skills/vector-forge","Mutation-driven test vector generation. Finds implementations of a cryptographic algorithm or protocol, runs mutation testing to identify escaped mutants, then generates new test vectors that deliberately exercise the uncovered code paths. Compares before/after mutation kill rates to prove vector effectiveness. Use when generating cryptographic test vectors, measuring Wycheproof coverage gaps, finding escaped mutants via mutation testing, creating cross-implementation test suites, or improving test vector coverage for crypto primitives.","vector-forge",{"claudeCode":268},"SKILL.md frontmatter at plugins/trailmark/skills/vector-forge/SKILL.md",[1839,1840,1842,1844,1845,1847],{"path":951,"priority":310},{"path":1841,"priority":329},"references/fault-simulation.md",{"path":1843,"priority":329},"references/lessons-learned.md",{"path":1770,"priority":329},{"path":1846,"priority":329},"references/report-template.md",{"path":1848,"priority":329},"references/vector-patterns.md",{"basePath":1850,"description":1851,"displayName":692,"installMethods":1852,"rationale":1853,"selectedPaths":1854,"source":316,"sourceLanguage":17,"type":952},"plugins/variant-analysis/skills/variant-analysis","Find similar vulnerabilities and bugs across codebases using pattern-based analysis. Use when hunting bug variants, building CodeQL/Semgrep queries, analyzing security vulnerabilities, or performing systematic code audits after finding an initial issue.",{"claudeCode":268},"SKILL.md frontmatter at plugins/variant-analysis/skills/variant-analysis/SKILL.md",[1855,1856],{"path":951,"priority":310},{"path":1857,"priority":329},"METHODOLOGY.md",{"basePath":1859,"description":1860,"displayName":1861,"installMethods":1862,"rationale":1863,"selectedPaths":1864,"source":316,"sourceLanguage":17,"type":952},"plugins/workflow-skill-design/skills/designing-workflow-skills","Guides the design and structuring of workflow-based Claude Code skills with multi-step phases, decision trees, subagent delegation, and progressive disclosure. Use when creating skills that involve sequential pipelines, routing patterns, safety gates, task tracking, phased execution, or any multi-step workflow. Also applies when reviewing or refactoring existing workflow skills for quality.","designing-workflow-skills",{"claudeCode":268},"SKILL.md frontmatter at plugins/workflow-skill-design/skills/designing-workflow-skills/SKILL.md",[1865,1866,1867,1869,1871],{"path":951,"priority":310},{"path":1145,"priority":329},{"path":1868,"priority":329},"references/progressive-disclosure-guide.md",{"path":1870,"priority":329},"references/tool-assignment-guide.md",{"path":1872,"priority":329},"references/workflow-patterns.md",{"basePath":1874,"description":1875,"displayName":1876,"installMethods":1877,"rationale":1878,"selectedPaths":1879,"source":316,"sourceLanguage":17,"type":952},"plugins/yara-authoring/skills/yara-rule-authoring","Guides authoring of high-quality YARA-X detection rules for malware identification. Use when writing, reviewing, or optimizing YARA rules. Covers naming conventions, string selection, performance optimization, migration from legacy YARA, and false positive reduction. Triggers on: YARA, YARA-X, malware detection, threat hunting, IOC, signature, crx module, dex module.\n","yara-rule-authoring",{"claudeCode":268},"SKILL.md frontmatter at plugins/yara-authoring/skills/yara-rule-authoring/SKILL.md",[1880,1881,1883,1885,1887,1889,1891,1893,1895,1897,1899,1901,1902,1904,1905],{"path":951,"priority":310},{"path":1882,"priority":1097},"examples/MAL_Mac_ProtonRAT_Jan25.yar",{"path":1884,"priority":1097},"examples/MAL_NPM_SupplyChain_Jan25.yar",{"path":1886,"priority":1097},"examples/MAL_Win_Remcos_Jan25.yar",{"path":1888,"priority":1097},"examples/SUSP_CRX_SuspiciousPermissions.yar",{"path":1890,"priority":1097},"examples/SUSP_JS_Obfuscation_Jan25.yar",{"path":1892,"priority":329},"references/crx-module.md",{"path":1894,"priority":329},"references/dex-module.md",{"path":1896,"priority":329},"references/performance.md",{"path":1898,"priority":329},"references/strings.md",{"path":1900,"priority":329},"references/style-guide.md",{"path":1381,"priority":329},{"path":1903,"priority":1097},"scripts/atom_analyzer.py",{"path":1209,"priority":1097},{"path":1906,"priority":1097},"scripts/yara_lint.py",{"basePath":1908,"description":1909,"displayName":833,"installMethods":1910,"rationale":1911,"selectedPaths":1912,"source":316,"sourceLanguage":17,"type":952},"plugins/zeroize-audit/skills/zeroize-audit","Detects missing zeroization of sensitive data in source code and identifies zeroization removed by compiler optimizations, with assembly-level analysis, and control-flow verification. Use for auditing C/C++/Rust code handling secrets, keys, passwords, or other sensitive data.",{"claudeCode":268},"SKILL.md frontmatter at plugins/zeroize-audit/skills/zeroize-audit/SKILL.md",[1913,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980],{"path":951,"priority":310},{"path":1915,"priority":1097},"prompts/report_template.md",{"path":1917,"priority":1097},"prompts/system.md",{"path":1919,"priority":1097},"prompts/task.md",{"path":1921,"priority":329},"references/compile-commands.md",{"path":1923,"priority":329},"references/detection-strategy.md",{"path":1925,"priority":329},"references/ir-analysis.md",{"path":1927,"priority":329},"references/mcp-analysis.md",{"path":1929,"priority":329},"references/poc-generation.md",{"path":1931,"priority":329},"references/rust-zeroization-patterns.md",{"path":1933,"priority":1097},"tools/analyze_asm.sh",{"path":1935,"priority":1097},"tools/analyze_cfg.py",{"path":1937,"priority":1097},"tools/analyze_heap.sh",{"path":1939,"priority":1097},"tools/analyze_ir_semantic.py",{"path":1941,"priority":1097},"tools/diff_ir.sh",{"path":1943,"priority":1097},"tools/diff_rust_mir.sh",{"path":1945,"priority":1097},"tools/emit_asm.sh",{"path":1947,"priority":1097},"tools/emit_ir.sh",{"path":1949,"priority":1097},"tools/emit_rust_asm.sh",{"path":1951,"priority":1097},"tools/emit_rust_ir.sh",{"path":1953,"priority":1097},"tools/emit_rust_mir.sh",{"path":1955,"priority":1097},"tools/extract_compile_flags.py",{"path":1957,"priority":1097},"tools/generate_poc.py",{"path":1959,"priority":1097},"tools/mcp/apply_confidence_gates.py",{"path":1961,"priority":1097},"tools/mcp/check_mcp.sh",{"path":1963,"priority":1097},"tools/mcp/normalize_mcp_evidence.py",{"path":1965,"priority":1097},"tools/scripts/check_llvm_patterns.py",{"path":1967,"priority":1097},"tools/scripts/check_mir_patterns.py",{"path":1969,"priority":1097},"tools/scripts/check_rust_asm.py",{"path":1971,"priority":1097},"tools/scripts/check_rust_asm_aarch64.py",{"path":1973,"priority":1097},"tools/scripts/check_rust_asm_x86.py",{"path":1975,"priority":1097},"tools/scripts/find_dangerous_apis.py",{"path":1977,"priority":1097},"tools/scripts/semantic_audit.py",{"path":1979,"priority":1097},"tools/track_dataflow.sh",{"path":1981,"priority":1097},"tools/validate_rust_toolchain.sh",{"basePath":401,"installMethods":1983,"rationale":1985,"selectedPaths":1986,"source":316,"sourceLanguage":17,"type":225},{"pypi":1984},"ct-analyzer","cli ecosystem detected at plugins/constant-time-analysis",[1987,1989,1990],{"path":1988,"priority":310},"pyproject.toml",{"path":312,"priority":310},{"path":1991,"priority":329},"ct_analyzer/analyzer.py",{"sources":1993},[1994],"manual",{"closedIssues90d":244,"description":1996,"forks":245,"license":252,"openIssues90d":247,"pushedAt":248,"readmeSize":242,"stars":249,"topics":1997},"Trail of Bits Claude Code skills for security research, vulnerability detection, and audit workflows",[1998],"agent-skills",{"classifiedAt":2000,"discoverAt":2001,"extractAt":2002,"githubAt":2002,"updatedAt":2000},1778698175241,1778698169543,1778698173272,[227,225,226,224,228],{"evaluatedAt":255,"extractAt":292,"updatedAt":255},[],[2007,2035],{"_creationTime":2008,"_id":2009,"community":2010,"display":2011,"identity":2016,"providers":2020,"relations":2029,"tags":2031,"workflow":2032},1778685949178.794,"k1763cek7dmg49qvkz6a3ndjbs86mfce",{"reviewCount":8},{"description":2012,"installMethods":2013,"name":2014,"sourceUrl":2015},"GitHub CLI health check — verify gh authentication, list repos, check API rate limits, and test connectivity",{"claudeCode":2014},"msapps-github-health-check","https://github.com/davepoon/buildwithclaude",{"basePath":2017,"githubOwner":2018,"githubRepo":2019,"locale":17,"slug":2014,"type":260},"plugins/msapps-github-health-check","davepoon","buildwithclaude",{"evaluate":2021,"extract":2027},{"promptVersionExtension":217,"promptVersionScoring":218,"score":2022,"tags":2023,"targetMarket":229,"tier":2026},99,[224,225,2024,2025,227],"health-check","monitoring","verified",{"commitSha":282,"license":2028},"MIT",{"repoId":2030},"kd719kw54vhmcscq7ckdp59fg586mnt6",[227,225,224,2024,2025],{"evaluatedAt":2033,"extractAt":2034,"updatedAt":2033},1778687915650,1778685949178,{"_creationTime":2036,"_id":2037,"community":2038,"display":2039,"identity":2045,"providers":2047,"relations":2058,"tags":2061,"workflow":2062},1778692878074.8347,"k178v80t9azwkv73nsx1a4r35n86m226",{"reviewCount":8},{"description":2040,"installMethods":2041,"name":2043,"sourceUrl":2044},"Worktrunk is a CLI for Git worktree management, designed for parallel AI agent workflows. This plugin provides configuration guidance (LLM commit messages, project hooks, worktree paths) and automatic activity tracking (🤖/💬 indicators in `wt list` showing active Claude sessions).",{"claudeCode":2042},"worktrunk","Worktrunk","https://github.com/max-sixty/worktrunk",{"basePath":270,"githubOwner":2046,"githubRepo":2042,"locale":17,"slug":2042,"type":260},"max-sixty",{"evaluate":2048,"extract":2054},{"promptVersionExtension":217,"promptVersionScoring":218,"score":2022,"tags":2049,"targetMarket":229,"tier":2026},[226,2050,225,2051,2052,2053],"worktree","ai-agent","automation","developer-tool",{"commitSha":282,"license":2055,"plugin":2056},"MIT OR Apache-2.0",{"mcpCount":8,"provider":286,"skillCount":2057},2,{"parentExtensionId":2059,"repoId":2060},"k17933gw8zcjnsjg1xt0r1t2a586n11x","kd735mff6mvfxbagjk8sv9pg9s86ngdh",[2051,2052,225,2053,226,2050],{"evaluatedAt":2063,"extractAt":2064,"updatedAt":2065},1778692927488,1778692878074,1778693214478]