Shieldbot: Open-Source Security Scanner Plugin for Claude Code

What Shieldbot Does
Shieldbot is an open-source security scanner that runs directly inside Claude Code as a plugin. It eliminates the need to switch between your editor and separate security tools by integrating scanning functionality into the development environment.
Installation and Usage
Install with these commands:
/plugin marketplace add BalaSriharsha/shieldbot
/plugin install shieldbot
/shieldbot .You can also interact with it naturally using commands like "scan this repo for security issues" or "check my dependencies for CVEs" and the agent will handle the request.
Scanner Integration
The tool runs six scanners in parallel:
- Semgrep (5,000+ community rules covering OWASP Top 10, CWE Top 25, injection, XSS, SSRF)
- Bandit (Python security)
- Ruff (Python quality/security)
- detect-secrets (finds API keys, tokens, passwords in source code)
- pip-audit (Python dependency CVEs)
- npm audit (Node.js CVEs)
Results Processing
Findings get deduplicated across scanners, so the same bug reported by multiple tools (like Semgrep and Bandit) appears only once. Claude then synthesizes everything into a prioritized report that includes:
- Risk score
- Executive summary
- Specific code fixes
- Identification of likely false positives
Real-World Testing
The developer first ran Shieldbot on itself, where it caught a Jinja2 XSS vulnerability in the HTML reporter that had been missed. The scan resulted in one real finding and zero false positives on secrets detection.
CI/CD Integration
Shieldbot also works as a GitHub Action for CI pipelines:
- uses: BalaSriharsha/shieldbot@mainFindings appear in GitHub's Security tab via SARIF output.
Privacy and Architecture
Everything runs locally with no code leaving your machine. The MCP server pipes scanner results to Claude Code over stdio.
Project Details
The project is MIT licensed and available on GitHub at https://github.com/BalaSriharsha/shieldbot. The developer is seeking feedback, particularly on what additional scanners or report features users would want added.
📖 Read the full source: r/ClaudeAI
👀 See Also

Efficient Workflow Using Claude Code: Planning Before Execution
Boris Tane leverages Claude Code with a structured planning-first approach, focusing on detailed research and planning to maintain control over architecture decisions.

SWE-CI: New Benchmark Tests AI Agents on Long-Term Code Maintenance via CI
SWE-CI is a repository-level benchmark that evaluates LLM-powered agents on maintaining codebases through continuous integration cycles, shifting focus from static bug fixing to long-term maintainability across 100 real-world tasks.

Building an Autonomous Research Agent with C# and Local LLMs
A C# research agent automates URL processing with local LLMs using Ollama and llama3.1:8b, generating structured markdown reports from web searches.

OpenClaw Multi-Agent Book Writing Skill Released
A multi-agent book writing system built on OpenClaw has been released as a skill, featuring DeepWiki MCP connection, GLM image generation for illustrations, budget estimation, and chapter-level revision. Two chapters of the OpenClaw Paradigm Book have been updated using this tool.