What problem does it solve? Smart contract developers need fast, automated vulnerability detection before audits and deployments, but raw Slither output is noisy, detector names change between versions, and misconfigured runs report findings in dependencies instead of your own code. ## Core Features & Use Cases - Static Analysis Workflow: Run 95+ built-in detectors against Foundry, Hardhat, or standalone Solidity files, with correct installation via slither-analyzer and solc-select version management. - Triage & Configuration: Filter dependency paths, exclude noise detectors, persist decisions in slither.db.json, and lock settings into .slither.conf.json for reproducible scans. - Custom Detectors & CI: Write Python-based custom detectors using the Slither API, and integrate scans into GitHub Actions with SARIF output for GitHub Code Scanning. - Use Case: Before a pre-audit, run Slither on a Foundry staking contract, filter out OpenZeppelin library noise, triage false positives like timestamp warnings on reward math, and export a JSON report listing only actionable findings. ## Quick Start Ask the agent to run a Slither security scan on your Foundry project, filter out dependency findings, and summarize the high and medium severity vulnerabilities with fixes.