securevibes-scanner
Run AI-powered application security scans on codebases. Use when asked to scan code for security vulnerabilities, generate threat models, review code for security issues, run incremental security scans, or set up continuous security monitoring via cron. Supports full scans (one-shot) and incremental scans (cron-driven, only new commits).
Best use case
securevibes-scanner is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Run AI-powered application security scans on codebases. Use when asked to scan code for security vulnerabilities, generate threat models, review code for security issues, run incremental security scans, or set up continuous security monitoring via cron. Supports full scans (one-shot) and incremental scans (cron-driven, only new commits).
Teams using securevibes-scanner should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/securevibes-scanner/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How securevibes-scanner Compares
| Feature / Agent | securevibes-scanner | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Run AI-powered application security scans on codebases. Use when asked to scan code for security vulnerabilities, generate threat models, review code for security issues, run incremental security scans, or set up continuous security monitoring via cron. Supports full scans (one-shot) and incremental scans (cron-driven, only new commits).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
SKILL.md Source
# SecureVibes Scanner AI-native security platform that detects vulnerabilities using Claude AI. Multi-subagent pipeline: assessment → threat modeling → code review → report generation → optional DAST. Supports incremental scanning for continuous monitoring. ## Prerequisites 1. Install the CLI: `pipx install securevibes` (preferred) or `uv tool install securevibes`. Avoid `pip install` — it can create stale shims if you have multiple Python environments. 2. Authenticate with Anthropic (one of): - **Max/Pro subscription (recommended):** If you're authenticated via Claude Code or Claude CLI OAuth, no API key is needed. The Claude Agent SDK picks up your OAuth session automatically. When running inside OpenClaw, leave `ANTHROPIC_API_KEY` unset or blank — the SDK handles auth. - **API key:** `export ANTHROPIC_API_KEY=your-key-here` (from console.anthropic.com) ## Security Notes - Always use the `scripts/scan.sh` wrapper for full scans — it validates paths and rejects shell metacharacters before invoking `securevibes`. - **Never interpolate unsanitized user input into shell commands.** - The wrapper uses `realpath` to resolve paths safely and rejects any path containing `;`, `|`, `&`, `$`, backticks, or other metacharacters. - **Scan targets must be local directories.** Clone remote repos to a known safe location first, then pass the resolved path to the wrapper. - **DAST scans make network requests** to the `--target-url` you provide. Only use against apps you own or have permission to test. ## Execution Model **Full scans take 10-30 minutes across 4 phases.** Run them as background jobs (cron or subagent), not inline. **Incremental scans take 2-10 minutes** — they only scan commits since the last run. ## Full Scan (One-Shot) ### Running a Scan 1. Clone the target repo to a local directory 2. Run the wrapper script: `bash scripts/scan.sh /path/to/repo --force --debug` 3. Results appear in `/path/to/repo/.securevibes/` ### Background Execution (Recommended) For OpenClaw users, schedule scans as cron jobs: - Use `sessionTarget: "isolated"` with `payload.kind: "agentTurn"` - Set `payload.timeoutSeconds: 2700` (45 minutes) to allow all phases to complete - Use `delivery.mode: "announce"` to get notified when done The agentTurn message should instruct the subagent to: 1. `cd` into the repo and `git pull` for latest code 2. Clean previous `.securevibes/` artifacts 3. Run `securevibes scan . --force` via the wrapper script 4. Read and summarize the results from `.securevibes/scan_report.md` ## Incremental Scan (Continuous Monitoring) The incremental scanner (`ops/incremental_scan.py`) tracks the last-scanned commit and only scans new commits. Designed for cron-driven continuous security monitoring. ### How It Works 1. Tracks an anchor commit in `.securevibes/incremental_state.json` 2. On each run: fetches remote, compares HEAD to anchor 3. If new commits exist: runs `securevibes pr-review` on the diff 4. Updates anchor to new HEAD after successful scan 5. If no new commits: exits cleanly (no scan, no cost) ### Setup #### Step 1: Run an initial full scan (if not already done) The incremental scanner requires `.securevibes/SECURITY.md` and `.securevibes/THREAT_MODEL.json` to exist. These come from an initial full scan: ```bash securevibes scan <repo-path> --model sonnet ``` Skip this step if the repo already has a `.securevibes/` directory with these files. #### Step 2: Bootstrap incremental state Run the wrapper once to seed the anchor commit (no scan runs, just records current HEAD): ```bash python3 ops/incremental_scan.py --repo <repo-path> --remote origin --branch main ``` This creates `.securevibes/incremental_state.json` with `status: "bootstrap"`. #### Step 3: Configure the cron For OpenClaw users, create a cron job: ```bash openclaw cron create \ --name "securevibes-incremental" \ --cron "*/30 * * * *" \ --tz "America/Los_Angeles" \ --agent main \ --session isolated \ --timeout-seconds 900 \ --announce \ --message "Run incremental security scan: python3 <skill-path>/ops/incremental_scan.py --repo <repo-path> --remote origin --branch main --model sonnet --severity medium --scan-timeout-seconds 600. Read .securevibes/incremental_scan.log for results. If new findings, summarize them." ``` Replace `<skill-path>` with the installed skill path and `<repo-path>` with the target repo. #### Step 4: Verify ```bash # Check state cat <repo-path>/.securevibes/incremental_state.json # After first scheduled run, check logs tail -10 <repo-path>/.securevibes/incremental_scan.log # Check findings cat <repo-path>/.securevibes/PR_VULNERABILITIES.json ``` ### Incremental Scanner Options ``` python3 ops/incremental_scan.py [options] ``` | Option | Description | |--------|-------------| | `--repo` | Repository path (default: `.`) | | `--branch` | Branch to track (default: `main`) | | `--remote` | Git remote (default: `origin`) | | `--model` | Claude model: `sonnet`, `haiku` (default: `sonnet`) | | `--severity` | Minimum severity: `critical`, `high`, `medium`, `low` | | `--scan-timeout-seconds` | Timeout per scan command (default: `900`) | | `--git-timeout-seconds` | Timeout for git operations (default: `60`) | | `--rewrite-policy` | History rewrite handling: `reset_warn`, `strict_fail`, `since_date` | | `--since` | Override: scan commits since this date (ISO or YYYY-MM-DD) | ### Operational Guarantees - **File lock** at `.securevibes/.incremental_scan.lock` prevents overlapping runs - **Atomic state writes** (`fsync` + `os.replace`) prevent corruption - **Structured logging** at `.securevibes/incremental_scan.log` - **Run records** saved to `.securevibes/incremental_runs/` (one JSON per run) ### Rewrite Policy When `last_seen_sha` is not an ancestor of the new remote HEAD (e.g., force push): | Policy | Behavior | |--------|----------| | `reset_warn` | Reset anchor to new HEAD, continue | | `strict_fail` | Fail and keep current anchor | | `since_date` | Run a `--since <today>` scan for visibility, keep previous anchor | ## Full Scan Commands Reference ### Scan `securevibes scan <path> [options]` | Option | Description | |--------|-------------| | `-f, --format` | `markdown` (default), `json`, `text`, `table` | | `-o, --output` | Custom output path | | `-s, --severity` | Filter: `critical`, `high`, `medium`, `low` | | `-m, --model` | Claude model (e.g., `sonnet`, `haiku`) | | `--subagent` | Run one phase: `assessment`, `threat-modeling`, `code-review`, `report-generator`, `dast` | | `--resume-from` | Resume from a specific phase onwards | | `--dast` | Enable dynamic testing (requires `--target-url`) | | `--target-url` | URL for DAST (e.g., `http://localhost:3000`) | | `--force` | Skip prompts, overwrite existing artifacts | | `--quiet` | Minimal output | | `--debug` | Verbose diagnostics | ### Report `securevibes report <path>` — Display a previously saved scan report. ## Mapping Requests to Actions | User Says | Action | |-----------|--------| | "Scan this for security issues" | Full scan: `bash scripts/scan.sh <path> --force` | | "Quick security check" | Full scan: `bash scripts/scan.sh <path> -m haiku --force` | | "Threat model this project" | `bash scripts/scan.sh <path> --subagent threat-modeling --force` | | "Just review the code" | `bash scripts/scan.sh <path> --subagent code-review --force` | | "Show only critical/high findings" | `bash scripts/scan.sh <path> -s high --force` | | "Full audit with DAST" | `bash scripts/scan.sh <path> --dast --target-url <url> --force` | | "Set up continuous scanning" | Incremental setup: Steps 1-4 above | | "Monitor this repo for security issues" | Incremental setup: Steps 1-4 above | | "Show last scan results" | `securevibes report <path>` | ## Subagent Pipeline Runs sequentially. Each phase builds on the previous: 1. **assessment** → Architecture & attack surface → `.securevibes/SECURITY.md` 2. **threat-modeling** → STRIDE-based analysis → `.securevibes/THREAT_MODEL.json` 3. **code-review** → Vulnerability detection → `.securevibes/VULNERABILITIES.json` 4. **report-generator** → Consolidated report → `.securevibes/scan_report.md` 5. **dast** (optional) → Dynamic validation against running app ## Presenting Results After a scan completes: 1. Read `.securevibes/scan_report.md` (or `.securevibes/scan_results.json` for structured data) 2. Summarize: total findings by severity (Critical > High > Medium > Low) 3. Highlight top 3 most critical with file locations and remediation 4. Offer next steps: run DAST, fix specific issues, re-scan after changes ## Links - **Website**: [https://securevibes.ai](https://securevibes.ai) - **PyPI**: [https://pypi.org/project/securevibes/](https://pypi.org/project/securevibes/) - **GitHub**: [https://github.com/anshumanbh/securevibes](https://github.com/anshumanbh/securevibes)
Related Skills
Contract Reviewer - AI Legal Document Risk Scanner
Upload any contract or legal document and get a structured risk analysis with flagged clauses, plain-language explanations, and negotiation suggestions.
AURA Security Scanner
Scan AI agent skills for malware, credential theft, prompt injection, and dangerous permissions before installing them
lora-cad-scanner
LoRa Channel Activity Detection (CAD) scanner for LilyGo T3 v1.6 (ESP32-PICO-D4 + SX1276) with HackRF One support. Scans a configurable frequency range using multiple BW/SF combinations, displays live progress on the SSD1306 OLED, stores detected channels in device RAM, emits structured 15-minute reports over Serial, and sends Telegram notifications for new detections via an OpenClaw cron pipeline. Use when scanning for LoRa devices in a frequency band, setting up a LilyGo T3 as a LoRa scanner/sniffer, building RF monitoring pipelines with Telegram alerting, or doing RF reconnaissance with HackRF + LilyGo together.
aws-secrets-scanner
Detect hardcoded secrets, exposed API keys, and credential misconfigurations in IaC and config files
security-scanner
Scans OpenClaw skills for security vulnerabilities and suspicious patterns before installation
olo-sec-scanner
SEC EDGAR filing analysis for M&A due diligence — extract financials, detect risks, and track corporate events from 10-K, 10-Q, and 8-K filings
permission-creep-scanner
Helps detect permission creep in AI agent skills — flags when a skill's actual code accesses resources far beyond what its declared purpose requires, like a "fix typo" skill reading your .env file.
clawhub-skill-scanner
Security gatekeeper for skill installations. MANDATORY before installing any skill from ClawHub, GitHub, or external sources. Performs deep code analysis to detect malicious patterns, credential access, data exfiltration, command injection, and other security risks. Triggers: "install skill", "clawhub install", "new skill", "add skill", "skill from". Always run this BEFORE installation.
ggshield-scanner
Detect 500+ types of hardcoded secrets (API keys, credentials, tokens) before they leak into git. Wraps GitGuardian's ggshield CLI.
contract-scanner
Scan smart contracts for security risks. Detect honeypots, high taxes, and malicious code. Protect yourself from scams!
edgeone skill scanner
Scan any agent skill for security risks before you install or use it. Powered by Tencent Zhuque Lab A.I.G (AI-Infra-Guard). 100% local static analysis — no file contents or credentials leave your device. Compatible with CodeBuddy, Cursor, Windsurf, Claude Code, OpenClaw and more. Triggers on: `这个 skill 安全吗`, `skill 安全扫描`, `检查 skill 安全`, `audit skill`, `scan skill`, `check skill safety`, `analyze skill`, `inspect skill`, `verify skill`, `skill security`, `skill supply chain`. Do NOT trigger for general agent usage, full system health checks, project debugging, or normal development.
skill-scanner
Scan any agent skill for security risks before you install or use it. Powered by Tencent Zhuque Lab A.I.G (AI-Infra-Guard). 100% local static analysis — no file contents or credentials leave your device. Compatible with CodeBuddy, Cursor, Windsurf, Claude Code, OpenClaw and more. Triggers on: `这个 skill 安全吗`, `skill 安全扫描`, `检查 skill 安全`, `audit skill`, `scan skill`, `check skill safety`, `analyze skill`, `inspect skill`, `verify skill`, `skill security`, `skill supply chain`. Do NOT trigger for general agent usage, full system health checks, project debugging, or normal development.