install
source · Clone the upstream repo
git clone https://github.com/Aboudjem/sniff
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Aboudjem/sniff "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/sniff-report" ~/.claude/skills/aboudjem-sniff-sniff-report && rm -rf "$T"
manifest:
skills/sniff-report/SKILL.mdsource content
/sniff-report - Show last scan results
Display findings from the most recent scan.
What to do
-
Use
MCP tool with:sniff_report
: the current project's absolute pathrootDir
: 'summary' for readable output, 'json' for raw dataformat
-
Present the summary to the user:
- Total findings by severity
- Top issues with file locations
- Any corroborated findings (confirmed in source + browser)
Example
User: /sniff-report You: Here are the results from your last scan: **Summary:** 12 findings (1 critical, 3 high, 6 medium, 2 low) **Top issues:** 1. `src/routes.ts:14` - CRITICAL: Hardcoded API key 2. `src/handler.ts:42` - HIGH: debugger statement 3. `README.md:28` - HIGH: Broken internal link Reports saved to: - sniff-reports/report.html - sniff-reports/report.json