SecureVibes Scanner
by @anshumanbh
Run AI-powered application security scans on codebases. Use when asked to scan code for security vulnerabilities, generate threat models, review code for sec...
clawhub install securevibes-scannerπ About This Skill
name: securevibes-scanner description: 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).
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
scripts/scan.sh wrapper for full scans β it validates paths and rejects shell metacharacters before invoking securevibes.realpath to resolve paths safely and rejects any path containing ;, |, &, $, backticks, or other metacharacters.--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:
sessionTarget: "isolated" with payload.kind: "agentTurn"payload.timeoutSeconds: 2700 (45 minutes) to allow all phases to completedelivery.mode: "announce" to get notified when doneThe 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:
securevibes scan --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):
python3 ops/incremental_scan.py --repo --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:
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 /ops/incremental_scan.py --repo --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 with the installed skill path and with the target repo.
#### Step 4: Verify
# Check state
cat /.securevibes/incremental_state.jsonAfter first scheduled run, check logs
tail -10 /.securevibes/incremental_scan.logCheck findings
cat /.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
.securevibes/.incremental_scan.lock prevents overlapping runsfsync + os.replace) prevent corruption.securevibes/incremental_scan.log.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 scan for visibility, keep previous anchor |
Full Scan Commands Reference
Scan
securevibes scan
| 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 β Display a previously saved scan report.
Mapping Requests to Actions
| User Says | Action |
|-----------|--------|
| "Scan this for security issues" | Full scan: bash scripts/scan.sh |
| "Quick security check" | Full scan: bash scripts/scan.sh |
| "Threat model this project" | bash scripts/scan.sh |
| "Just review the code" | bash scripts/scan.sh |
| "Show only critical/high findings" | bash scripts/scan.sh |
| "Full audit with DAST" | bash scripts/scan.sh |
| "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 |
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
βοΈ Configuration
#### 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:
securevibes scan --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):
python3 ops/incremental_scan.py --repo --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:
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 /ops/incremental_scan.py --repo --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 with the installed skill path and with the target repo.
#### Step 4: Verify
# Check state
cat /.securevibes/incremental_state.jsonAfter first scheduled run, check logs
tail -10 /.securevibes/incremental_scan.logCheck findings
cat /.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
.securevibes/.incremental_scan.lock prevents overlapping runsfsync + os.replace) prevent corruption.securevibes/incremental_scan.log.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 scan for visibility, keep previous anchor |